-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
218 lines (197 loc) · 6.84 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
/**
* @copyright Copyright 2016-2021 Kevin Locke <kevin@kevinlocke.name>
* @license MIT
* @module hub-ci-status
*/
import fetchCiStatus from './lib/fetch-ci-status.js';
import { resolveCommit } from './lib/git-utils.js';
import { getProjectName } from './lib/github-utils.js';
import {
fetchCiStatusMockSymbol,
getProjectNameMockSymbol,
resolveCommitMockSymbol,
} from './lib/symbols.js';
// Use same "severity" as hub(1) for determining state
// https://github.com/github/hub/blob/v2.14.2/commands/ci_status.go#L60-L69
const stateBySeverity = [
'neutral',
'success',
'pending',
'cancelled',
'timed_out',
'action_required',
'failure',
'error',
];
function getStateMarker(state, useColor) {
function colorize(string, code) {
return useColor ? `\u001B[${code}m${string}\u001B[39m` : string;
}
// Use same status markers as `hub ci-status`
// https://github.com/github/hub/blob/v2.14.2/commands/ci_status.go#L158-L171
switch (state) {
case 'success':
return colorize('✔︎', 32);
case 'action_required':
case 'cancelled':
case 'error':
case 'failure':
case 'timed_out':
return colorize('✖︎', 31);
case 'neutral':
return colorize('◦', 30);
case 'pending':
return colorize('●', 33);
default:
return '';
}
}
function formatStatus(status, contextWidth, useColor) {
const stateMarker = getStateMarker(status.state, useColor);
const context = status.context.padEnd(contextWidth);
const targetUrl = status.target_url ? `\t${status.target_url}` : '';
return `${stateMarker}\t${context}${targetUrl}`;
}
function formatStatuses(statuses, useColor) {
// If no status has a target_url, there's no need to size context
const contextWidth = !statuses.some((status) => status.target_url) ? 0
: statuses.reduce(
(max, { context }) => Math.max(max, context.length),
0,
);
return statuses
.map((status) => formatStatus(status, contextWidth, useColor))
.join('\n');
}
function getState(statuses) {
const bestSeverity = statuses.reduce((maxSeverity, status) => {
const severity = stateBySeverity.indexOf(status.state);
return Math.max(severity, maxSeverity);
}, -1);
return stateBySeverity[bestSeverity] || '';
}
function stateToExitCode(state) {
// Use same exit codes as `hub ci-status`
// https://github.com/github/hub/blob/v2.14.2/commands/ci_status.go#L115-L125
switch (state) {
case 'neutral':
case 'success':
return 0;
case 'action_required':
case 'cancelled':
case 'error':
case 'failure':
case 'timed_out':
return 1;
case 'pending':
return 2;
default:
return 3;
}
}
/** Converts a "check_run" object from the Checks API to a "statuses" object
* from the CI Status API.
*
* https://docs.github.com/rest/reference/checks#list-check-runs-for-a-git-reference
* https://docs.github.com/rest/reference/repos#get-the-combined-status-for-a-specific-reference
*
* @private
* @param {!object} checkRun "check_run" object from Checks API response.
* @returns {!object} "statuses" object from CI Status API response.
*/
function checkRunToStatus(checkRun) {
// Based on mapping done by hub(1)
// https://github.com/github/hub/blob/v2.14.2/github/client.go#L543-L551
return {
state: checkRun.status === 'completed' ? checkRun.conclusion : 'pending',
context: checkRun.name,
target_url: checkRun.html_url, // eslint-disable-line camelcase
};
}
/** Options for {@link hubCiStatus}.
*
* @typedef {!object} GithubCiStatusOptions
* @property {!module:child_process.ExecFileOptions=} gitOptions Options to
* pass to {@link module:child_process.execFile} when invoking git.
* @property {!module:"@octokit/core".Octokit=} octokit Octokit instance to
* use for requests.
* @property {!module:"@octokit/core".OctokitOptions=} octokitOptions Options
* to pass to Octokit constructor. Only used if octokit option is not set.
* @property {!module:stream.Writable=} stderr Stream to which errors (and
* non-output status messages) are written. (default: process.stderr)
* @property {!module:stream.Readable=} stdin Stream from which input is read.
* (not currently used) (default: process.stdin)
* @property {!module:stream.Writable=} stdout Stream to which output is
* written. (default: process.stdout)
* @property {boolean=} useColor Should ANSI escape codes for color be used
* to colorize printed output? (default: from .isTTY)
* @property {number=} verbosity Amount of output to produce. Higher numbers
* produce more output. Lower (i.e. more negative) numbers produce less.
* (default: 0)
* @property {!module:"lib/retry-async.js".RetryAsyncOptions=} wait Options
* to control retry attempts. If truthy, will retry until the combined status
* is not pending. Note: #shouldRetry is ignored and a function which tests
* status is used.
* @property {boolean=} waitAll If truthy, retry as long as any status is
* pending (instead of returning once any status fails).
*/
/** Print the current GitHub CI status of a given revision.
*
* @param {string=} rev Git revision for which to check status. Can be any
* name recognized by git-rev-parse(1). (default: HEAD)
* @param {!GithubCiStatusOptions=} options Options.
* @returns {!Promise<number>} Exit code indicating whether the status was
* printed. 0 if the status was printed, non-zero if the status could not
* be determined.
*/
export default async function hubCiStatus(
rev = 'HEAD',
{
[fetchCiStatusMockSymbol]: fetchCiStatusMock,
[getProjectNameMockSymbol]: getProjectNameMock,
[resolveCommitMockSymbol]: resolveCommitMock,
gitOptions,
octokit,
octokitOptions,
stderr = process.stderr,
stdout = process.stdout,
useColor,
verbosity,
wait,
waitAll,
} = {},
) {
verbosity = Number(verbosity) || 0;
const getProjectNameOrMock = getProjectNameMock || getProjectName;
const resolveCommitOrMock = resolveCommitMock || resolveCommit;
const [[owner, repo], ref] = await Promise.all([
getProjectNameOrMock(gitOptions),
resolveCommitOrMock(rev, gitOptions),
]);
const statusOptions = {
octokit,
octokitOptions,
retry: wait,
waitAll,
};
if (verbosity > 1) {
statusOptions.debug = (msg) => stderr.write(`DEBUG: ${msg}\n`);
}
const fetchCiStatusOrMock = fetchCiStatusMock || fetchCiStatus;
const [combinedStatus, checksList] =
await fetchCiStatusOrMock({ owner, repo, ref }, statusOptions);
const statuses = [
...combinedStatus.statuses,
...checksList.check_runs.map(checkRunToStatus),
];
const state = getState(statuses);
if (verbosity >= 0) {
const useColorOrIsTTY = useColor === false ? false
: useColor === true ? true
: stdout.isTTY;
const formatted = verbosity === 0 ? state
: formatStatuses(statuses, useColorOrIsTTY);
stdout.write(`${formatted || 'no status'}\n`);
}
return stateToExitCode(state);
}