1 | type Jira = { |
2 | username: string; |
3 | password: string; |
4 | domain: string; |
5 | }; |
6 | |
7 | * Get custom field contexts |
8 | * Returns a [paginated](#pagination) list of [ contexts](https://confluence. |
9 | */ |
10 | export async function main( |
11 | auth: Jira, |
12 | fieldId: string, |
13 | isAnyIssueType: string | undefined, |
14 | isGlobalContext: string | undefined, |
15 | contextId: string | undefined, |
16 | startAt: string | undefined, |
17 | maxResults: string | undefined |
18 | ) { |
19 | const url = new URL( |
20 | `https://${auth.domain}.atlassian.net/rest/api/2/field/${fieldId}/context` |
21 | ); |
22 | for (const [k, v] of [ |
23 | ["isAnyIssueType", isAnyIssueType], |
24 | ["isGlobalContext", isGlobalContext], |
25 | ["contextId", contextId], |
26 | ["startAt", startAt], |
27 | ["maxResults", maxResults], |
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 |
|