-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
421 lines (398 loc) · 12.3 KB
/
index.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
// Checks API example
// See: https://developer.github.com/v3/checks/ to learn more
var cors = require('cors');
var corsOptions = {
origin: ["https://githint.herokuapp.com", "https://githint.herokuapp.com/"]
};
var models = require('./database/models');
var utils = require('./utils');
/**
* This is the main entrypoint to your Probot app
* @param {import('probot').Application} app
*/
module.exports = app => {
const router = app.route('/api');
router.use(cors(corsOptions));
router.get('/stats', async (req, res) => {
const installs = await models.Installation.count();
const repos = await models.Repository.count();
res.json({
data: {
installs,
repos
}
});
});
app.on(['check_suite.requested', 'check_run.rerequested'], handleCheckEvents);
app.on([
'installation.created',
'installation.deleted',
'installation_repositories.added',
'installation_repositories.removed'
],
handleInstallationEvents);
async function handleInstallationEvents(context) {
try {
const { payload } = context;
if (context.name === 'installation') {
if (payload.action === 'created') {
const installation = await models.Installation.create({
id: payload.installation.id,
accessTokenUrl: payload.installation.access_tokens_url,
accountName: payload.installation.account.login,
accountType: payload.installation.account.type,
accountUrl: payload.installation.account.url,
targetId: payload.installation.target_id,
targetType: payload.installation.target_type,
});
if (installation) {
payload.repositories.forEach(async repo => {
const repository = await models.Repository.create({
id: repo.id,
fullName: repo.full_name,
installationId: installation.id,
name: repo.name,
private: repo.private,
});
});
}
} else if (payload.action === 'deleted') {
// deleting the installation will cascade delete its repos
await models.Installation.destroy({
where: {
id: payload.installation.id,
}
});
}
} else if (context.name === 'installation_repositories') {
payload.repositories_added.forEach(async repo => {
// just in case it already exists
// (which will be the case if payload.installation.repository_selection
// is changing from 'all' to 'selected')
let repository = await models.Repository.destroy({
where: {
id: repo.id,
}
});
repository = await models.Repository.create({
id: repo.id,
fullName: repo.full_name,
installationId: payload.installation.id,
name: repo.name,
private: repo.private,
});
});
payload.repositories_removed.forEach(async repo => {
const repository = await models.Repository.destroy({
where: {
id: repo.id,
}
});
});
}
} catch (e) {}
}
async function handleCheckEvents(context) {
const startTime = new Date()
// extract info
const {
check_run: checkRun,
check_suite,
repository
}
= context.payload;
let checkSuite = check_suite || checkRun.check_suite;
const {
head_branch: headBranch,
head_sha: headSha,
pull_requests: pullRequests
}
= checkSuite;
// get the .githint.json file
const gitHintResponse = await checkGitHintFile(context, {
checkRun,
headBranch,
headSha,
repository,
startTime
});
if (!gitHintResponse.data || !gitHintResponse.data.checks) {
return;
}
const gitHintFile = gitHintResponse.data;
const options = gitHintFile.options || {};
// get the branch
var getBranchResponse = await context.github.repos.getBranch({
owner: repository.owner.login,
repo: repository.name,
branch: headBranch
});
const branch = { ...getBranchResponse.data };
// get the commit
var getCommitResponse = await context.github.repos.getCommit({
owner: repository.owner.login,
repo: repository.name,
sha: headSha
});
const commit = { ...getCommitResponse.data };
// get the tree
var getTreeResponse = await context.github.gitdata.getTree({
owner: repository.owner.login,
repo: repository.name,
tree_sha: commit.commit.tree.sha,
recursive: 1
});
const tree = { ...getTreeResponse.data };
// get the pull
let pullResponse = {};
pullResponse = await checkPull(context, {
checkRun,
headBranch,
headSha,
options,
pull: pullRequests[0],
repository,
scope: {
branch,
commit,
tree
},
startTime
});
if (!pullResponse.data && pullResponse.detectPull) {
return;
}
const pull = await getPullInnerObjects(context, {
pull: pullResponse.data
});
// run checks
const checkNames = await getChecksToPerform({
checkRun: checkRun && checkRun.name === 'GitHint: check for pull request' ? undefined : checkRun,
gitHintFile
});
if (checkNames.length > 0) {
runChecks(context, {
checkRun: checkRun && checkRun.name === 'GitHint: check for pull request' ? undefined : checkRun,
checkNames,
gitHintFile,
headBranch,
headSha,
options,
scope: {
branch,
commit,
pull,
tree
},
startTime
});
}
}
async function runChecks(context, {
checkRun,
checkNames,
gitHintFile,
headBranch,
headSha,
options,
scope,
startTime
}) {
let allChecksPassed = true;
let skippedChecks = [];
for (let i = 0; i < checkNames.length; i++) {
const name = checkNames[i];
let script = gitHintFile.checks[name];
let message = '';
let skip = options.skip || false;
// first, if script is an object get script from script.script
if (typeof script === 'object' && !Array.isArray(script)) {
if (typeof script.skip !== 'undefined') {
skip = script.skip; // override any global skip
}
message = script.message || message;
script = script.script || 'false';
// if message is an array, join them
if (Array.isArray(message)) {
message = message.join("\n");
}
}
// if script is an array, join them
if (Array.isArray(script)) {
script = script.filter(line => !!(line.trim())).join("\n");
}
// if script is string
else if (typeof script === 'string') {
script = `return ${script}`;
}
if (typeof skip === 'string') {
skip = await utils.runScript(`return ${skip}`, scope);
skip = skip.data || false;
}
// decide if check is to be skipped
if (skip === true) {
skippedChecks.push(name);
continue;
}
const response = await utils.runScript(script, scope);
let resData = response.data;
let resMessage;
if (response.data && typeof response.data === 'object') {
resData = response.data.result;
resMessage = response.data.message;
} else if (response.error) {
resMessage = response.error.message;
}
allChecksPassed = allChecksPassed && resData;
if (!resData || (checkRun && checkRun.name === name)) {
postCheckResult(context, {
name,
conclusion: !resData ? 'failure' : 'success',
headBranch,
headSha,
startTime,
status: 'completed',
summary:
resMessage
? resMessage
: `The check '${name}' ${resData === true ? 'passed' : 'failed'}.`,
text: message,
title: name
});
}
}
if (allChecksPassed && !checkRun) {
const checksSkipped = skippedChecks.length;
postCheckResult(context, {
name: `All checks passed`,
conclusion: 'success',
headBranch,
headSha,
startTime,
status: 'completed',
summary: `All checks that were run passed.`,
text:
`${checksSkipped === 0 ? "No" : checksSkipped} check${checksSkipped < 2 ? " was" : "s were"} skipped.` +
`${checksSkipped === 0 ? "" : "\n" + skippedChecks.map(c => ` * ${c}`).join("\n")}`,
title: `All checks passed`
});
}
}
async function checkPull(context, {checkRun, headBranch, headSha, options, pull, repository, scope, startTime}) {
let response = {};
if (pull) {
response = await context.github.pullRequests.get({
owner: repository.owner.login,
repo: repository.name,
number: pull.number
});
}
let { detectPull } = options;
if (typeof detectPull === 'string') {
detectPull = await utils.runScript(`return ${detectPull}`, scope);
detectPull = detectPull.data || false;
}
response.detectPull = detectPull;
const name = 'GitHint: check for pull request'; // if u change this here, change it somewhere above (Ctrl+F)
if ((!response.data && detectPull) || (checkRun && checkRun.name === name)) {
postCheckResult(context, {
name,
conclusion: !response.data ? 'failure' : 'success',
headBranch,
headSha,
startTime,
status: 'completed',
summary:
response.error
? response.error.message
: `The check '${name}' ${!response.data ? 'failed' : 'passed'}.`,
text:
!response.data
? 'If a code commit was made before a pull request was created ' +
'then this check will fail. After a pull request is created you can ' +
're-run this check. If it\'s still failing you may want to wait a ' +
'few seconds before re-running it.'
: 'The pull request has been detected successfully.',
title: name
});
}
return response;
}
async function checkGitHintFile(context, {checkRun, headBranch, headSha, repository, startTime}) {
const response = await utils.getGitHintFile(repository.owner.login, repository.name, headBranch);
const name = 'GitHint: check for .githint.json file';
if (!response.data || (checkRun && checkRun.name === name)) {
postCheckResult(context, {
name,
conclusion: !response.data ? 'failure' : 'success',
headBranch,
headSha,
startTime,
status: 'completed',
summary: response.error ? response.error.message : `The check '${name}' passed.`,
// text: "There's supposed to be a .githint.json file in the root directory",
title: name
});
}
return response;
}
async function getChecksToPerform({ checkRun, gitHintFile }) {
if (gitHintFile.checks) {
let checkNames = Object.keys(gitHintFile.checks);
if (checkRun) {
let checkNameToReRun = checkNames.find(name => name === checkRun.name);
if (checkNameToReRun) {
checkNames = [checkNameToReRun];
} else {
checkNames = [];
}
}
return checkNames;
}
return [];
}
async function getPullInnerObjects(context, { pull }) {
if (!pull) {
return;
}
// get the reviews
const reviewsResponse = await context.github.pullRequests.listReviews({
owner: pull.head.repo.owner.login,
repo: pull.head.repo.name,
number: pull.number
});
pull.reviews = reviewsResponse.data;
return pull;
}
async function postCheckResult (context, {
conclusion,
headBranch,
headSha,
name,
startTime,
status,
summary,
text,
title
}) {
// Probot API note: context.repo() => {username: 'hiimbex', repo: 'testing-things'}
context.github.checks.create(context.repo({
name,
head_branch: headBranch,
head_sha: headSha,
status,
started_at: startTime,
conclusion,
completed_at: new Date(),
output: {
title,
summary,
text
}
}))
}
// For more information on building apps:
// https://probot.github.io/docs/
// To get your app running against GitHub, see:
// https://probot.github.io/docs/development/
}