-
Notifications
You must be signed in to change notification settings - Fork 15
/
server.js
474 lines (409 loc) · 12.6 KB
/
server.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
const express = require('express');
const bodyParser = require('body-parser');
const {
buildUnreleasedCommitsMessage,
fetchUnreleasedCommits,
} = require('./utils/unreleased-commits');
const {
buildUnmergedPRsMessage,
fetchUnmergedPRs,
} = require('./utils/unmerged-prs');
const {
buildNeedsManualPRsMessage,
fetchNeedsManualPRs,
} = require('./utils/needs-manual-prs');
const {
fetchInitiator,
getSemverForCommitRange,
getSupportedBranches,
isInvalidBranch,
postToSlack,
SEMVER_TYPE,
timingSafeEqual,
} = require('./utils/helpers');
const { getOctokit } = require('./utils/octokit');
const app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(express.static('public'));
app.get('/verify-semver', async (req, res) => {
if (
!timingSafeEqual(
req.headers.authorization,
process.env.VERIFY_SEMVER_AUTH_HEADER,
)
) {
return res.status(401).end();
}
const { branch } = req.query;
const branches = await getSupportedBranches();
if (isInvalidBranch(branches, branch)) {
res.status(400).json({ error: `${branch} is not a valid branch` });
return;
}
try {
const { commits, lastTag } = await fetchUnreleasedCommits(branch);
console.info(`Found ${commits.length} commits unreleased on ${branch}`);
const semverType = lastTag?.prerelease
? SEMVER_TYPE.PATCH
: await getSemverForCommitRange(commits, branch);
console.info(`Determined that next release on ${branch} is ${semverType}`);
return res.json({ semverType });
} catch (err) {
console.error(err);
res.status(500).json({
error: true,
});
}
});
app.post('/verify-semver', async (req, res) => {
res.status(200).end();
const branches = await getSupportedBranches();
const branch = req.body.text;
const initiator = await fetchInitiator(req);
console.log(
`${initiator.name} initiated release semver verification for branch: ${branch}`,
);
if (isInvalidBranch(branches, branch)) {
console.error(`${branch} is not a valid branch`);
await postToSlack(
{
response_type: 'ephemeral',
text: `Invalid branch *${branch}*. Try again?`,
},
req.body.response_url,
);
return;
}
try {
const { commits, lastTag } = await fetchUnreleasedCommits(branch);
console.info(`Found ${commits.length} commits unreleased on ${branch}`);
const semverType = lastTag?.prerelease
? SEMVER_TYPE.PATCH
: await getSemverForCommitRange(commits, branch);
console.info(`Determined that next release on ${branch} is ${semverType}`);
await postToSlack(
{
response_type: 'in_channel',
text: `Next release type for \`${branch}\` is: *${semverType}*`,
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
});
// Check for pull requests targeting a specified release branch
// that have not yet been merged.
app.post('/unmerged', async (req, res) => {
const branches = await getSupportedBranches();
const branch = req.body.text;
const initiator = await fetchInitiator(req);
console.log(
`${initiator.name} initiated unmerged audit for branch: ${branch}`,
);
if (branch !== 'all' && isInvalidBranch(branches, branch)) {
console.error(`${branch} is not a valid branch`);
await postToSlack(
{
response_type: 'ephemeral',
text: `Invalid branch *${branch}*. Try again?`,
},
req.body.response_url,
);
return res.status(200).end();
}
console.log(`Auditing unmerged PRs on branch: ${branch}`);
try {
const branchesToCheck = branch === 'all' ? branches : [branch];
let messages = [];
for (const branch of branchesToCheck) {
const prs = await fetchUnmergedPRs(branch);
console.log(`Found ${prs.length} unmerged PR(s) targeting ${branch}`);
let message;
if (!prs || prs.length === 0) {
message = `*No PR(s) pending merge to ${branch}*`;
} else {
message = `Unmerged pull requests targeting *${branch}* (from <@${initiator.id}>):\n`;
message += buildUnmergedPRsMessage(branch, prs);
}
messages.push(message);
}
await postToSlack(
{
response_type: 'in_channel',
text: messages.join('\n'),
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
return res.status(200).end();
});
// Check for pull requests which have been merged to main and labeled
// with target/BRANCH_NAME that trop failed for and which still need manual backports.
app.post('/needs-manual', async (req, res) => {
const branches = await getSupportedBranches();
const REMIND = 'remind';
let [branch, author, remind] = req.body.text.split(' ');
let shouldRemind = false;
if (author === REMIND && remind === undefined) {
shouldRemind = true;
author = null;
} else if (remind === REMIND) {
shouldRemind = true;
}
const initiator = await fetchInitiator(req);
console.log(
`${initiator.name} initiated needs-manual audit for branch: ${branch}`,
);
if (branch !== 'all' && isInvalidBranch(branches, branch)) {
console.error(`${branch} is not a valid branch`);
await postToSlack(
{
response_type: 'ephemeral',
text: `Invalid branch *${branch}*. Try again?`,
},
req.body.response_url,
);
return res.status(200).end();
}
if (author) {
try {
const octokit = await getOctokit();
await octokit.users.getByUsername({ username: author });
} catch {
console.error(`${author} is not a valid GitHub user`);
await postToSlack(
{
response_type: 'ephemeral',
text: `GitHub user *${author}* does not exist. Try again?`,
},
req.body.response_url,
);
return res.status(200).end();
}
console.log(`Scoping needs-manual PRs to those opened by ${author}`);
}
try {
const branchesToCheck = branch === 'all' ? branches : [branch];
let messages = [];
for (const branch of branchesToCheck) {
const prs = await fetchNeedsManualPRs(branch, author);
console.log(`Found ${prs.length} prs on ${branch}`);
let message;
if (!prs || prs.length === 0) {
message = `*No PR(s) needing manual backport to ${branch}*`;
} else {
message = `PR(s) needing manual backport to *${branch}* (from <@${initiator.id}>):\n`;
message += buildNeedsManualPRsMessage(branch, prs, shouldRemind);
}
messages.push(message);
}
// If someone is running an audit on the needs-manual PRs that only
// they are responsible for, make the response ephemeral.
const responseType = initiator.name === author ? 'ephemeral' : 'in_channel';
await postToSlack(
{
response_type: responseType,
text: messages.join('\n'),
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
return res.status(200).end();
});
app.get('/unreleased', async (req, res) => {
if (
!timingSafeEqual(
req.headers.authorization,
process.env.VERIFY_SEMVER_AUTH_HEADER,
)
) {
return res.status(401).end('Unauthorized');
}
const { branch } = req.query;
try {
const branches = await getSupportedBranches();
const result = {};
if (branch === 'all') {
for (const b of branches) {
const { commits } = await fetchUnreleasedCommits(b);
result[b] = commits;
}
} else {
if (isInvalidBranch(branches, branch)) {
return res
.status(400)
.json({ error: `${branch} is not a valid branch` });
}
const { commits } = await fetchUnreleasedCommits(branch);
result[branch] = commits;
}
return res.json(result);
} catch {
return res
.status(500)
.json({ error: `Failed to fetch unreleased for ${branch}` });
}
});
// Check for commits which have been merged to a release branch but
// not been released in a beta or stable.
app.post('/unreleased', async (req, res) => {
const branches = await getSupportedBranches();
const branch = req.body.text;
const initiator = await fetchInitiator(req);
// Allow for manual batch audit of all supported release branches.
if (branch === 'all') {
console.log(
`${initiator.name} triggered audit for all supported release branches`,
);
for (const b of branches) {
console.log(`Auditing branch ${b}`);
try {
const { commits } = await fetchUnreleasedCommits(b);
console.log(`Found ${commits.length} commits on ${b}`);
await postToSlack(
{
response_type: 'in_channel',
text: buildUnreleasedCommitsMessage(b, commits, initiator.id),
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
}
return res.status(200).end();
}
console.log(
`${initiator.name} initiated unreleased commit audit for branch: ${branch}`,
);
if (isInvalidBranch(branches, branch)) {
console.error(`${branch} is not a valid branch`);
await postToSlack(
{
response_type: 'ephemeral',
text: `Invalid branch *${branch}*. Try again?`,
},
req.body.response_url,
);
return res.status(200).end();
}
try {
const { commits } = await fetchUnreleasedCommits(branch);
console.log(`Found ${commits.length} commits on ${branch}`);
await postToSlack(
{
response_type: 'in_channel',
text: buildUnreleasedCommitsMessage(branch, commits, initiator.id),
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
return res.status(200).end();
});
// Combines checks for all PRs that either need manual backport to a given
// release line or which are targeting said line and haven't been merged.
app.post('/audit-pre-release', async (req, res) => {
const branches = await getSupportedBranches();
const branch = req.body.text;
const initiator = await fetchInitiator(req);
console.log(
`${initiator.name} initiated pre-release audit for branch: ${branch}`,
);
if (isInvalidBranch(branches, branch)) {
console.error(`${branch} is not a valid branch`);
await postToSlack(
{
response_type: 'ephemeral',
text: `Invalid branch *${branch}*. Try again?`,
},
req.body.response_url,
);
return res.status(200).end();
}
try {
// In a prerelease audit, we don't want to scope by author so we pass null intentionally.
const needsManualPRs = await fetchNeedsManualPRs(branch, null);
console.log(
`Found ${needsManualPRs.length} PR(s) needing manual backport on ${branch}`,
);
const unmergedPRs = await fetchUnmergedPRs(branch);
console.log(`Found ${unmergedPRs.length} unmerged PRs targeting ${branch}`);
let message;
if (needsManualPRs.length + unmergedPRs.length === 0) {
message = `*No PR(s) unmerged or needing manual backport for ${branch}*`;
} else {
message = `Pre-release audit for *${branch}* (from <@${initiator.id}>)\n`;
if (needsManualPRs.length !== 0) {
message += `PR(s) needing manual backport to *${branch}*:\n`;
message += `${buildNeedsManualPRsMessage(branch, needsManualPRs)}\n`;
}
if (unmergedPRs.length !== 0) {
message += `Unmerged pull requests targeting *${branch}*:\n`;
message += `${buildUnmergedPRsMessage(branch, unmergedPRs)}\n`;
}
}
await postToSlack(
{
response_type: 'in_channel',
text: message,
},
req.body.response_url,
);
} catch (err) {
console.error(err);
await postToSlack(
{
response_type: 'ephemeral',
text: `Error: ${err.message}`,
},
req.body.response_url,
);
}
return res.status(200).end();
});
const listener = app.listen(process.env.PORT, () => {
console.log(`release-branch-auditor listening on ${listener.address().port}`);
});