-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathproject-api.js
328 lines (320 loc) · 9.09 KB
/
project-api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/**
* Updates a field value for an item in a GitHub Project.
* @param {Object} params - The parameters for updating the project field
* @param {Object} params.github - The GitHub API client
* @param {string} params.projectId - The ID of the project
* @param {string} params.itemId - The ID of the item to update
* @param {string} params.fieldId - The ID of the field to update
* @param {string} params.value - The new value for the field
* @returns {Promise<Object>} The GraphQL mutation response
*/
const updateProjectField = async ({
github,
projectId,
itemId,
fieldId,
value,
}) => {
return github.graphql(
`
mutation($input: UpdateProjectV2ItemFieldValueInput!) {
updateProjectV2ItemFieldValue(input: $input) {
projectV2Item {
id
}
}
}
`,
{
input: {
projectId,
itemId,
fieldId,
value: value ? { singleSelectOptionId: value } : null,
},
}
);
};
/**
* Updates a date field value for an item in a GitHub Project.
* @param {Object} params - The parameters for updating the project field
* @param {Object} params.github - The GitHub API client
* @param {string} params.projectId - The ID of the project
* @param {string} params.itemId - The ID of the item to update
* @param {string} params.fieldId - The ID of the field to update
* @param {string} params.date - The date string in ISO format
* @returns {Promise<Object>} The GraphQL mutation response
*/
const updateProjectDateField = async ({
github,
projectId,
itemId,
fieldId,
date,
}) => {
return github.graphql(
`
mutation($input: UpdateProjectV2ItemFieldValueInput!) {
updateProjectV2ItemFieldValue(input: $input) {
projectV2Item {
id
}
}
}
`,
{
input: {
projectId,
itemId,
fieldId,
value: { date },
},
}
);
};
/**
* Adds an item (PR) to a GitHub Project.
* @param {Object} params - The parameters for adding an item to the project
* @param {Object} params.github - The GitHub API client
* @param {string} params.projectId - The ID of the project
* @param {string} params.contentId - The node ID of the PR to add
* @returns {Promise<Object>} The GraphQL mutation response with the new item's ID
*/
const addItemToProject = async ({ github, projectId, contentId }) => {
return github.graphql(
`
mutation($input: AddProjectV2ItemByIdInput!) {
addProjectV2ItemById(input: $input) {
item {
id
}
}
}
`,
{
input: {
projectId,
contentId,
},
}
);
};
/**
* Fetches fields configuration for a GitHub Project.
* @param {Object} params - The parameters for fetching project fields
* @param {Object} params.github - The GitHub API client
* @param {string} params.org - The organization name
* @param {number} params.number - The project number
* @returns {Promise<Object>} The project fields data including field IDs and options
*/
const fetchProjectFields = async ({ github, org, number }) => {
return github.graphql(
`
query($org: String!, $number: Int!) {
organization(login: $org) {
projectV2(number: $number) {
fields(first: 20) {
nodes {
... on ProjectV2SingleSelectField {
id
name
options {
id
name
}
}
}
}
}
}
}
`,
{ org, number }
);
};
/**
* Fetches open pull requests from a repository with pagination support.
* Includes data needed for both R2 and R5 priority processing.
* @param {Object} params - The parameters for fetching pull requests
* @param {Object} params.github - The GitHub API client
* @param {string} params.org - The organization name
* @param {string} params.repo - The repository name
* @param {string} [params.cursor] - The pagination cursor
* @returns {Promise<Object>} The GraphQL mutation response
*/
const fetchOpenPullRequests = async ({ github, org, repo, cursor }) => {
return github.graphql(
`
query($org: String!, $repo: String!, $cursor: String) {
organization(login: $org) {
repository(name: $repo) {
pullRequests(first: 100, after: $cursor, states: OPEN) {
nodes {
id
number
updatedAt
reviews(last: 100) {
nodes {
state
}
}
commits(last: 1) {
nodes {
commit {
statusCheckRollup {
state
}
}
}
}
labels(first: 10) {
nodes {
name
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}`,
{ org, repo, cursor }
);
};
/**
* Fetches project item details for a specific PR or Issue
* @param {Object} params - The parameters for fetching project item
* @param {Object} params.github - The GitHub API client
* @param {string} params.contentId - PR/Issue node ID
* @returns {Promise<Object>} Project item details if PR is in project
*/
const fetchProjectItem = async ({ github, contentId }) => {
return github.graphql(
`
query($contentId: ID!) {
node(id: $contentId) {
... on PullRequest {
projectItems(first: 100) {
nodes {
id
project {
id
}
fieldValues(first: 8) {
nodes {
... on ProjectV2ItemFieldSingleSelectValue {
name
field {
... on ProjectV2SingleSelectField {
name
}
}
}
}
}
}
}
}
... on Issue {
projectItems(first: 100) {
nodes {
id
project {
id
}
fieldValues(first: 8) {
nodes {
... on ProjectV2ItemFieldSingleSelectValue {
name
field {
... on ProjectV2SingleSelectField {
name
}
}
}
}
}
}
}
}
}
}
`,
{ contentId }
);
};
/**
* Fetches all items from a GitHub Project with their status and update times
* @param {Object} params - The parameters for fetching project items
* @param {Object} params.github - The GitHub API client
* @param {string} params.org - The organization name
* @param {number} params.number - The project number
* @param {string} [params.cursor] - The pagination cursor
* @returns {Promise<Object>} Project items with their field values
*/
const fetchProjectItems = async ({ github, org, number, cursor }) => {
return github.graphql(
`
query($org: String!, $number: Int!, $cursor: String) {
organization(login: $org) {
projectV2(number: $number) {
items(first: 100, after: $cursor) {
nodes {
id
createdAt
type
content {
... on Issue {
id
number
}
... on PullRequest {
id
number
}
}
fieldValues(first: 20) {
nodes {
... on ProjectV2ItemFieldSingleSelectValue {
name
field {
... on ProjectV2SingleSelectField {
name
}
}
updatedAt
}
... on ProjectV2ItemFieldDateValue {
date
field {
... on ProjectV2Field {
name
}
}
}
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}`,
{ org, number, cursor }
);
};
module.exports = {
updateProjectField,
updateProjectDateField,
addItemToProject,
fetchProjectFields,
fetchOpenPullRequests,
fetchProjectItem,
fetchProjectItems
};