1 | type Jira = { |
2 | username: string; |
3 | password: string; |
4 | domain: string; |
5 | }; |
6 | |
7 | * Get issue |
8 | * Returns the details for an issue. |
9 | */ |
10 | export async function main( |
11 | auth: Jira, |
12 | issueIdOrKey: string, |
13 | fields: string | undefined, |
14 | fieldsByKeys: string | undefined, |
15 | expand: string | undefined, |
16 | properties: string | undefined, |
17 | updateHistory: string | undefined |
18 | ) { |
19 | const url = new URL( |
20 | `https://${auth.domain}.atlassian.net/rest/api/2/issue/${issueIdOrKey}` |
21 | ); |
22 | for (const [k, v] of [ |
23 | ["fields", fields], |
24 | ["fieldsByKeys", fieldsByKeys], |
25 | ["expand", expand], |
26 | ["properties", properties], |
27 | ["updateHistory", updateHistory], |
28 | ]) { |
29 | if (v !== undefined && v !== "") { |
30 | url.searchParams.append(k, v); |
31 | } |
32 | } |
33 | const response = await fetch(url, { |
34 | method: "GET", |
35 | headers: { |
36 | Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`), |
37 | }, |
38 | body: undefined, |
39 | }); |
40 | if (!response.ok) { |
41 | const text = await response.text(); |
42 | throw new Error(`${response.status} ${text}`); |
43 | } |
44 | return await response.json(); |
45 | } |
46 |
|