-
Notifications
You must be signed in to change notification settings - Fork 1
/
pull-request-handler.ts
412 lines (374 loc) · 11.9 KB
/
pull-request-handler.ts
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
import Raven from 'raven'
import { conditions } from './conditions/index'
import { HandlerContext, PullRequestReference, PullRequestInfo } from './models'
import { result } from './utils'
import { getPullRequestStatus, PullRequestStatus } from './pull-request-status'
import { queryPullRequest } from './pull-request-query'
import { updateStatusReportCheck } from './status-report'
import { MergeStateStatus } from './query.graphql'
import { Config } from './config'
import { getCommitMessage, splitCommitMessage } from './commit-message'
import { cascadingBranchMerge } from './cascading-branch-merge'
export interface PullRequestContext extends HandlerContext {
reschedulePullRequest: () => void,
startedAt: Date
}
export async function handlePullRequest(
context: PullRequestContext,
pullRequestReference: PullRequestReference
) {
const { log } = context
context.log.debug('Querying', pullRequestReference)
const pullRequestInfo = await queryPullRequest(
context.github,
pullRequestReference
)
Raven.mergeContext({
extra: {
pullRequestInfo
}
})
const pullRequestStatus = getPullRequestStatus(
context,
conditions,
pullRequestInfo
)
context.log.debug('pullRequestStatus:', pullRequestStatus)
Raven.mergeContext({
extra: {
pullRequestStatus
}
})
log(`result:\n${JSON.stringify(pullRequestStatus, null, 2)}`)
await handlePullRequestStatus(
context,
pullRequestInfo,
pullRequestStatus
)
}
export type PullRequestAction = 'reschedule' | 'update_branch' | 'merge' | 'delete_branch'
export type PullRequestActions
= (
[]
| ['reschedule']
| ['update_branch', 'reschedule']
| ['merge']
| ['merge', 'delete_branch']
) & Array<PullRequestAction>
export type PullRequestPlanCode
= 'closed'
| 'mergeable_unknown'
| 'mergeable_not_supplied'
| 'pending_condition'
| 'failing_condition'
| 'blocked'
| 'dirty'
| 'out_of_date'
| 'out_of_date_on_fork'
| 'update_branch'
| 'merge_and_delete'
| 'merge'
export type PullRequestPlan = {
code: PullRequestPlanCode,
message: string,
actions: PullRequestActions
}
type ExtraMergeParams = {
// eslint-disable-next-line camelcase
commit_title?: string
// eslint-disable-next-line camelcase
commit_message?: string
}
function getChecksMarkdown(pullRequestStatus: PullRequestStatus) {
return Object.entries(pullRequestStatus)
.map(([name, result]) => {
switch (result.status) {
case 'success':
return `* ✓ \`${name}\``
case 'pending':
return `* ○ \`${name}\`${result.message && `: ${result.message}`}`
case 'fail':
return `* ✘ \`${name}\`: ${result.message}`
default:
throw new Error(`Unknown status in result: ${JSON.stringify(result)}`)
}
})
.join('\n')
}
function markdownParagraphs(paragraphs: string[]) {
return paragraphs
.filter(paragraph => paragraph)
.join('\n\n')
}
function getCommitMessageMarkdown(pullRequestInfo: PullRequestInfo, config: Config) {
const commitMessage = getCommitMessage(pullRequestInfo, config)
if (commitMessage === null) {
return ''
}
const quotedCommitMessage = commitMessage.split('\n').map(line => `> ${line}`).join('\n')
return markdownParagraphs([
'Commit message preview:',
quotedCommitMessage
])
}
/**
* Determines which actions to take based on the pull request and the condition results
*/
export function getPullRequestPlan(
context: HandlerContext,
pullRequestInfo: PullRequestInfo,
pullRequestStatus: PullRequestStatus
): PullRequestPlan {
const { config } = context
const pendingConditions = Object.entries(pullRequestStatus)
.filter(([conditionName, conditionResult]) => conditionResult.status === 'pending')
const failingConditions = Object.entries(pullRequestStatus)
.filter(([conditionName, conditionResult]) => conditionResult.status === 'fail')
if (pullRequestStatus.open.status === 'fail') {
return {
code: 'closed',
message: 'Pull request was closed',
actions: []
}
}
if (pendingConditions.length > 0) {
return {
code: 'pending_condition',
message: markdownParagraphs([
'There are pending conditions:',
getChecksMarkdown(pullRequestStatus),
getCommitMessageMarkdown(pullRequestInfo, config)
]),
actions: ['reschedule']
}
}
if (failingConditions.length > 0) {
return {
code: 'failing_condition',
message: markdownParagraphs([
'There are failing conditions:',
getChecksMarkdown(pullRequestStatus),
getCommitMessageMarkdown(pullRequestInfo, config)
]),
actions: []
}
}
switch (pullRequestInfo.mergeStateStatus) {
case MergeStateStatus.UNKNOWN:
return {
code: 'mergeable_unknown',
message: 'GitHub is determining whether the pull request is mergeable',
actions: ['reschedule']
}
case MergeStateStatus.BEHIND:
if (!config.updateBranch) {
return {
code: 'out_of_date',
message: 'The pull request is out-of-date.',
actions: []
}
} else if (isInFork(pullRequestInfo)) {
return {
code: 'out_of_date_on_fork',
message: 'The pull request is out-of-date, but the head is located in another repository',
actions: []
}
} else {
return {
code: 'update_branch',
message: 'The pull request is out-of-date. Will update it now.',
actions: ['update_branch', 'reschedule']
}
}
case MergeStateStatus.BLOCKED:
return {
code: 'blocked',
message: 'The pull request is blocked by a failing or missing check.',
actions: []
}
case MergeStateStatus.DIRTY:
return {
code: 'dirty',
message: 'The pull request has a merge conflict.',
actions: []
}
case MergeStateStatus.UNSTABLE:
case MergeStateStatus.HAS_HOOKS:
case MergeStateStatus.CLEAN:
if (config.deleteBranchAfterMerge && !isInFork(pullRequestInfo)) {
return {
code: 'merge_and_delete',
message: markdownParagraphs([
'Will merge the pull request and delete its branch.',
getCommitMessageMarkdown(pullRequestInfo, config)
]),
actions: ['merge', 'delete_branch']
}
} else {
return {
code: 'merge',
message: markdownParagraphs([
'Will merge the pull request.',
getCommitMessageMarkdown(pullRequestInfo, config)
]),
actions: ['merge']
}
}
case null:
return {
code: 'mergeable_not_supplied',
message: 'GitHub did not provide merge state of PR',
actions: ['reschedule']
}
default:
Raven.mergeContext({
extra: { pullRequestInfo }
})
throw new Error(`Merge state (${pullRequestInfo.mergeStateStatus}) was not recognized`)
}
}
function isInFork(pullRequestInfo: PullRequestInfo): boolean {
return pullRequestInfo.headRef && (
pullRequestInfo.headRef.repository.owner.login !== pullRequestInfo.baseRef.repository.owner.login ||
pullRequestInfo.headRef.repository.name !== pullRequestInfo.baseRef.repository.name
) || false
}
/**
* Deletes the branch of the pull request
*/
async function deleteBranch(
context: HandlerContext,
pullRequestInfo: PullRequestInfo
) {
const headRef = pullRequestInfo.headRef
if (!headRef) {
throw new Error('headRef was null while it is required for deleting branches')
}
return result(
await context.github.git.deleteRef({
owner: headRef.repository.owner.login,
repo: headRef.repository.name,
ref: `heads/${headRef.name}`
})
)
}
export async function executeActions(
context: PullRequestContext,
pullRequestInfo: PullRequestInfo,
actions: PullRequestAction[]
) {
for (const action of actions) {
try {
await executeAction(context, pullRequestInfo, action)
} catch (err) {
await updateStatusReportCheck(context, pullRequestInfo, `Failed to ${getPullRequestActionName(action)}`, err.toString())
throw err
}
}
}
export function getPullRequestActionName(action: PullRequestAction) {
return ({
delete_branch: 'delete branch',
merge: 'merge',
reschedule: 'reschedule',
update_branch: 'update branch'
})[action]
}
export async function executeAction(
context: PullRequestContext,
pullRequestInfo: PullRequestInfo,
action: PullRequestAction
): Promise<void> {
context.log.debug('Executing action:', action)
switch (action) {
case 'update_branch':
return updateBranch(context, pullRequestInfo)
case 'reschedule':
return context.reschedulePullRequest()
case 'merge':
return mergePullRequest(context, pullRequestInfo)
case 'delete_branch':
return deleteBranch(context, pullRequestInfo)
default:
throw new Error('Invalid PullRequestAction ' + action)
}
}
/**
* Merges the base reference of the pull request onto the pull request branch
* This is the equivalent of pushing the 'Update branch' button
*/
async function updateBranch(
context: PullRequestContext,
pullRequestInfo: PullRequestInfo
) {
const headRef = pullRequestInfo.headRef
if (!headRef) {
throw new Error('headRef was null while it is required for updating branches')
}
// This merges the baseRef on top of headRef of the PR.
return result(await context.github.repos.merge({
owner: headRef.repository.owner.login,
repo: headRef.repository.name,
base: headRef.name,
head: pullRequestInfo.baseRef.name
}))
}
function getPullRequestReference(pullRequestInfo: PullRequestInfo) {
return {
owner: pullRequestInfo.baseRef.repository.owner.login,
repo: pullRequestInfo.baseRef.repository.name,
number: pullRequestInfo.number
}
}
/**
* Presses the merge button on a pull request
*/
async function mergePullRequest(
context: HandlerContext,
pullRequestInfo: PullRequestInfo
) {
const { config } = context
const extraParams: ExtraMergeParams = {}
const pullRequestReference = getPullRequestReference(pullRequestInfo)
const commitMessage = getCommitMessage(pullRequestInfo, config)
if (commitMessage !== null) {
const commitMessageParams = splitCommitMessage(commitMessage)
extraParams.commit_title = commitMessageParams.title
extraParams.commit_message = commitMessageParams.body
}
// This presses the merge button.
result(
await context.github.pulls.merge({
owner: pullRequestReference.owner,
repo: pullRequestReference.repo,
pull_number: pullRequestReference.number,
merge_method: config.mergeMethod,
...extraParams
})
)
// don't do anything if the regular merge had an error
const repository = { owner: pullRequestInfo.headRef!.repository.owner.login, repo: pullRequestInfo.headRef!.repository.name }
// await cascadingBranchMerge(config.prefixes, config.refBranch, pullRequestInfo.headRefName, repository, context, pullRequestReference.number)
await cascadingBranchMerge(config.prefixes, config.refBranch, pullRequestInfo.headRefName, pullRequestInfo.baseRef.name, repository, context, pullRequestReference.number)
}
function getPlanTitle(plan: PullRequestPlan) {
return plan.actions.some(action => action === 'merge')
? 'Merging'
: plan.actions.some(action => action === 'update_branch')
? 'Updating branch'
: plan.actions.some(action => action === 'reschedule')
? 'Waiting'
: 'Not merging'
}
export async function handlePullRequestStatus(
context: PullRequestContext,
pullRequestInfo: PullRequestInfo,
pullRequestStatus: PullRequestStatus
) {
const plan = getPullRequestPlan(context, pullRequestInfo, pullRequestStatus)
const title = getPlanTitle(plan)
await updateStatusReportCheck(context, pullRequestInfo, title, plan.message)
const { actions } = plan
context.log.debug('Actions:', actions)
await executeActions(context, pullRequestInfo, actions)
}