This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub_api_helper.js
219 lines (197 loc) · 6.91 KB
/
github_api_helper.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
// Copyright 2019 VMware, Inc.
// SPDX-License-Identifier: BSD-2-Clause
const { config } = require('./config')
const { filterData } = require('./filter')
const rawMediaType = 'application/vnd.github.v3.raw'
/**
* Create a check run with status in progress and sends it to Github
* @param {import('probot').Context} context Probot context
* @param {String} headSha sha of the commit
* @return {Promise<any>}
* See https://developer.github.com/v3/checks/runs/#create-a-check-run
*/
function inProgressAPIresponse (context, headSha) {
const { owner, repo } = context.repo()
const startedAt = new Date().toISOString()
return context.github.checks.create({
owner,
repo,
name: config.checkRunName,
head_sha: headSha,
status: 'in_progress',
started_at: startedAt
})
}
/**
* Get Precaution config file contents as raw data,
* if that file exists.
* @param {import('probot').Context} context Probot context
* @param {String} customConfigPath Optional (default value config.configFilePath)
* @return {Promise<any>} GitHub response
* See https://developer.github.com/v3/repos/contents/#get-contents
*/
async function getConfigFile (context, customConfigPath = config.configFilePath) {
let { owner, repo } = context.repo()
// GitHub doesn't provide "checkIfFileExists" API endpoint.
// That's why we should try to download the file and if we have
// 404 error code the file doesn't exist in the repository.
try {
return await context.github.repos.getContents({
owner,
repo,
path: customConfigPath,
headers: { accept: rawMediaType }
})
} catch (error) {
if (error.code === 404) {
return null
} else {
throw new Error(error)
}
}
}
/**
* Get list of files modified by a pull request
* @param {import('probot').Context} context Probot context
* @param {number} number the pull request number inside the repository
* @param {Object} configObj configuration object populated by a config file
* @returns {String[]} paths to the diff files from the pull request relevant to us
*/
async function getPRFiles (context, number, configObj) {
const { owner, repo } = context.repo()
// See https://developer.github.com/v3/pulls/#list-pull-requests-files
let response = await context.github.pullRequests.listFiles({
owner: owner,
repo: repo,
number: number,
per_page: config.numFilesPerPage
})
let excludes = configObj && configObj.exclude ? configObj.exclude : []
let data = filterData(response, excludes)
while (context.github.hasNextPage(response)) {
response = await context.github.getNextPage(response)
data = data.concat(filterData(response, excludes))
}
return Promise.all(data)
}
/**
* Get file contents as raw data
* @param {import('probot').Context} context Probot context
* @param {string} path file path relative to repository root
* @param {string} ref sha of file revision
* @param {pull_request.head?} head Reference to the fork the commit originated from
* @returns {Promise<any>} GitHub response
* See https://developer.github.com/v3/repos/contents/#get-contents
*/
function getRawFileContents (context, path, ref, head) {
let { owner, repo } = context.repo()
// This check is necessary in the case when there is a pr
// which is not from forked repository.
// Then the repo and owner fields are not in the head object
if (head.user) {
owner = head.user.login
repo = head.repo.name
}
return context.github.repos.getContents({
owner,
repo,
path,
ref,
headers: { accept: rawMediaType }
})
}
/**
* @param {Object[]} annotations see: https://developer.github.com/v3/checks/runs/#annotations-object-1
* @returns {String} the conclusion of the check run
* see possible conclusions on: https://developer.github.com/v3/checks/runs/#parameters-1
*/
function getConclusion (annotations) {
let conclusion = 'success'
if (annotations) {
for (let annotation of annotations) {
if (annotation.annotation_level === 'failure') {
conclusion = 'failure'
break
} else if (annotation.annotation_level === 'warning') {
conclusion = 'neutral'
}
}
}
return conclusion
}
/**
* Send check run results
* @param {import('probot').Context} context Probot context
* @param {Number} runID check run identifier
* @param {Object} output merged scan output
* @param {Number} annotationsPerPage Optional: number of annotations to send with one API call.
* @returns {Promise<any>} GitHub response
* See: https://developer.github.com/v3/checks/runs/#update-a-check-run
*/
function sendResults (context, runID, output, annotationsPerPage) {
const { owner, repo } = context.repo()
let numAnnotationsLeftToSend = output.annotations.length
const MAX_ANNOTATIONS_CALL = 50
let numAnnotationsPerAPICall = annotationsPerPage || config.numAnnotationsPerUpdate
if (numAnnotationsPerAPICall <= 0 || numAnnotationsPerAPICall > MAX_ANNOTATIONS_CALL) {
numAnnotationsPerAPICall = config.numAnnotationsPerUpdate
}
let numberOfAPIcalls = Math.ceil(numAnnotationsLeftToSend / numAnnotationsPerAPICall)
numberOfAPIcalls = numberOfAPIcalls === 0 ? 1 : numberOfAPIcalls
let startIndex = 0
let endIdex = numAnnotationsPerAPICall
for (let i = 0; i < numberOfAPIcalls; ++i) {
if (numAnnotationsLeftToSend < config.numAnnotationsPerUpdate) {
endIdex = output.annotations.length
}
const completedAt = new Date().toISOString()
context.github.checks.update({
check_run_id: runID,
owner,
repo,
status: 'completed',
completed_at: completedAt,
conclusion: getConclusion(output.annotations),
output: {
title: output.title,
summary: output.summary,
text: output.text,
annotations: output.annotations.slice(startIndex, endIdex)
}
})
startIndex += numAnnotationsPerAPICall
endIdex += numAnnotationsPerAPICall
numAnnotationsLeftToSend -= endIdex - startIndex
}
}
/**
* Sends check run error conclusion
* @param {import('probot').Context} context Probot context
* @param {Number} runId check run identifier
* @param {Error} err the error which occurs and stops the program
* @returns {Promise<any>} GitHub response
* See: https://developer.github.com/v3/checks/runs/#update-a-check-run
*/
function errorResponse (context, runID, err) {
const { owner, repo } = context.repo()
const completedAt = new Date().toISOString()
return context.github.checks.update({
check_run_id: runID,
owner,
repo,
status: 'completed',
completed_at: completedAt,
conclusion: 'failure',
output: {
title: 'App error',
summary: String(err)
}
})
}
module.exports.inProgressAPIresponse = inProgressAPIresponse
module.exports.errorResponse = errorResponse
module.exports.getPRFiles = getPRFiles
module.exports.getContents = getRawFileContents
module.exports.sendResults = sendResults
module.exports.getConclusion = getConclusion
module.exports.getConfigFile = getConfigFile