Files
simstudioai--sim/apps/sim/tools/jira/create_issue_link.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

176 lines
5.7 KiB
TypeScript

import type { JiraCreateIssueLinkParams, JiraCreateIssueLinkResponse } from '@/tools/jira/types'
import { SUCCESS_OUTPUT, TIMESTAMP_OUTPUT } from '@/tools/jira/types'
import { getJiraCloudId, toAdf } from '@/tools/jira/utils'
import type { ToolConfig } from '@/tools/types'
export const jiraCreateIssueLinkTool: ToolConfig<
JiraCreateIssueLinkParams,
JiraCreateIssueLinkResponse
> = {
id: 'jira_create_issue_link',
name: 'Jira Create Issue Link',
description: 'Create a link relationship between two Jira issues',
version: '1.0.0',
oauth: {
required: true,
provider: 'jira',
},
params: {
accessToken: {
type: 'string',
required: true,
visibility: 'hidden',
description: 'OAuth access token for Jira',
},
domain: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Your Jira domain (e.g., yourcompany.atlassian.net)',
},
inwardIssueKey: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Jira issue key for the inward issue (e.g., PROJ-123)',
},
outwardIssueKey: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Jira issue key for the outward issue (e.g., PROJ-456)',
},
linkType: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The type of link relationship (e.g., "Blocks", "Relates to", "Duplicates")',
},
comment: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Optional comment to add to the issue link',
},
cloudId: {
type: 'string',
required: false,
visibility: 'hidden',
description:
'Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.',
},
},
request: {
url: (_params: JiraCreateIssueLinkParams) => {
return 'https://api.atlassian.com/oauth/token/accessible-resources'
},
method: () => 'GET',
headers: (params: JiraCreateIssueLinkParams) => {
return {
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: `Bearer ${params.accessToken}`,
}
},
body: () => undefined as any,
},
transformResponse: async (response: Response, params?: JiraCreateIssueLinkParams) => {
const cloudId = params?.cloudId || (await getJiraCloudId(params!.domain, params!.accessToken))
const typesResp = await fetch(
`https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/issueLinkType`,
{
method: 'GET',
headers: { Accept: 'application/json', Authorization: `Bearer ${params!.accessToken}` },
}
)
if (!typesResp.ok) {
throw new Error(`Failed to fetch issue link types (${typesResp.status})`)
}
const typesData = await typesResp.json()
const provided = (params!.linkType || '').trim().toLowerCase()
let resolvedType: { id?: string; name?: string } | undefined
const allTypes = Array.isArray(typesData?.issueLinkTypes) ? typesData.issueLinkTypes : []
for (const t of allTypes) {
const name = String(t?.name || '').toLowerCase()
const inward = String(t?.inward || '').toLowerCase()
const outward = String(t?.outward || '').toLowerCase()
if (provided && (provided === name || provided === inward || provided === outward)) {
resolvedType = t?.id ? { id: String(t.id) } : { name: t?.name }
break
}
}
if (!resolvedType && /^\d+$/.test(provided)) {
resolvedType = { id: provided }
}
if (!resolvedType) {
const available = allTypes
.map((t: any) => `${t?.name} (inward: ${t?.inward}, outward: ${t?.outward})`)
.join('; ')
throw new Error(`Unknown issue link type "${params!.linkType}". Available: ${available}`)
}
const linkUrl = `https://api.atlassian.com/ex/jira/${cloudId}/rest/api/3/issueLink`
const linkResponse = await fetch(linkUrl, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: `Bearer ${params!.accessToken}`,
},
body: JSON.stringify({
type: resolvedType,
inwardIssue: { key: params!.inwardIssueKey?.trim() ?? '' },
outwardIssue: { key: params!.outwardIssueKey?.trim() ?? '' },
comment: params?.comment ? { body: toAdf(params.comment) } : undefined,
}),
})
if (!linkResponse.ok) {
let message = `Failed to create issue link (${linkResponse.status})`
try {
const err = await linkResponse.json()
message = err?.errorMessages?.join(', ') || err?.message || message
} catch (_e) {}
throw new Error(message)
}
let linkId: string | null = null
try {
const linkData = await linkResponse.json()
if (linkData?.id) linkId = String(linkData.id)
} catch {
const location = linkResponse.headers.get('location') || linkResponse.headers.get('Location')
if (location) {
const match = location.match(/\/issueLink\/(\d+)/)
if (match) linkId = match[1]
}
}
return {
success: true,
output: {
ts: new Date().toISOString(),
inwardIssue: params!.inwardIssueKey || 'unknown',
outwardIssue: params!.outwardIssueKey || 'unknown',
linkType: params!.linkType || 'unknown',
linkId,
success: true,
},
}
},
outputs: {
ts: TIMESTAMP_OUTPUT,
success: SUCCESS_OUTPUT,
inwardIssue: { type: 'string', description: 'Inward issue key' },
outwardIssue: { type: 'string', description: 'Outward issue key' },
linkType: { type: 'string', description: 'Type of issue link' },
linkId: { type: 'string', description: 'Created link ID', optional: true },
},
}