forked from ioBroker/ioBroker.repositories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check.js
356 lines (306 loc) · 13.7 KB
/
check.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
'use strict';
const fs = require('fs');
const {
addComment,
addLabel,
getGithub,
getUrl,
getAllComments,
deleteComment
} = require('./common');
let checker;
const TEXT_RECHECK = 'RE-CHECK!';
const TEXT_COMMENT_TITLE = '## Automated adapter checker';
function getPullRequestNumber() {
if (process.env.GITHUB_REF && process.env.GITHUB_REF.match(/refs\/pull\/\d+\/merge/)) {
const result = /refs\/pull\/(\d+)\/merge/g.exec(process.env.GITHUB_REF);
if (!result) {
throw new Error('Reference not found.');
}
return result[1];
} else if (process.env.GITHUB_EVENT_PATH) {
const event = JSON.parse(fs.readFileSync(process.env.GITHUB_EVENT_PATH, 'utf8'));
return event.pull_request ? event.pull_request.number : (event.issue ? event.issue.number : '');
} else {
throw new Error('Reference not found. process.env.GITHUB_REF and process.env.GITHUB_EVENT_PATH are not set!');
}
}
function executeOneAdapterCheck(adapter) {
checker = checker || require('@iobroker/repochecker');
return new Promise((resolve, reject) => {
checker.handler(
{
queryStringParameters: {
url: adapter,
}
},
null,
(err, data) => {
if (err) {
reject(err);
} else {
const context = JSON.parse(data.body);
/*if (context.errors.length) {
console.error(JSON.stringify(context.errors, null, 2));
}
console.log(JSON.stringify(data, null, 2));*/
resolve({adapter, context});
}
});
});
}
async function detectChanges(commit) {
/*
{
"sha": "8057d13625f724f0cd126ce5c3920da580429e0b",
"filename": "sources-dist.json",
"status": "modified",
"additions": 5,
"deletions": 0,
"changes": 5,
"blob_url": "https://github.com/ioBroker/ioBroker.repositories/blob/024bd5ccecc3c37dc6faf672fbfbd9f072f0189f/sources-dist.json",
"raw_url": "https://github.com/ioBroker/ioBroker.repositories/raw/024bd5ccecc3c37dc6faf672fbfbd9f072f0189f/sources-dist.json",
"contents_url": "https://api.github.com/repos/ioBroker/ioBroker.repositories/contents/sources-dist.json?ref=024bd5ccecc3c37dc6faf672fbfbd9f072f0189f",
"patch": "@@ -1436,6 +1436,11 @@\n \"icon\": \"https://raw.githubusercontent.com/ioBroker/ioBroker.vis-hqwidgets/master/admin/hqwidgets.png\",\n \"type\": \"visualization-widgets\"\n },\n+ \"vis-inventwo\": {\n+ \"meta\": \"https://raw.githubusercontent.com/inventwo/ioBroker.vis-inventwo/master/io-package.json\",\n+ \"icon\": \"https://raw.githubusercontent.com/inventwo/ioBroker.vis-inventwo/master/admin/i_150.png\",\n+ \"type\": \"visualisation-widgets\"\n+ },\n \"vis-jqui-mfd\": {\n \"meta\": \"https://raw.githubusercontent.com/ioBroker/ioBroker.vis-jqui-mfd/master/io-package.json\",\n \"icon\": \"https://raw.githubusercontent.com/ioBroker/ioBroker.vis-jqui-mfd/master/admin/jqui-mfd.png\","
}
*/
let json = await getGithub(commit.raw_url, true);
const patch = commit.patch.split('@@').map(t => t.trim()).filter(t => t);
if (commit.changes > 25) {
console.log('Too many changes in this commit. Stop analysis.');
return [];
}
json = json.split('\n');
const adapters = [];
let totalOffset = 0;
for (let i = 0; i < patch.length; i += 2) {
const changes = patch[i];
const lines = patch[i + 1].split('\n');
const added = lines
.filter(line => line.match(/^\+\s*"[-_a-z\d]+"\s*:\s*{$/))
.map(line => line.match(/^\+\s*"([-_a-z\d]+)"\s*:\s*{$/)[1]);
let found = false;
let offset = 0;
for (let i = 0; i < lines.length; i++) {
if (lines[i].startsWith('-')) {
totalOffset--;
!found && offset--;
} else if (lines[i].startsWith('+')) {
totalOffset++;
!found && offset++;
found = true;
} else {
!found && offset++;
}
}
if (!added.length && found) {
const start = parseInt(changes.replace(/-/g, '')) + offset + totalOffset - 1;
let lastAdapter = '';
if (Math.abs(json.length - start) > 2) {
// it is not end line that must be ignored
for (let k = 0; k < json.length; k++) {
const m = json[k].match(/^\s*"([-_a-z\d]+)"\s*:\s*{$/);
if (m) {
lastAdapter = m[1];
}
if (k >= start) {
if (!added.includes(lastAdapter)) {
added.push(lastAdapter);
}
break;
}
}
}
}
added.forEach(a => !adapters.includes(a) && adapters.push(a));
}
const repo = JSON.parse(json.join('\n'));
return adapters.map(a => repo[a].meta.replace(/\/master\/io-package.json$/, '').replace(/\/main\/io-package.json$/, ''));
}
async function detectAffectedAdapter(prID) {
const body = await getGithub(`https://api.github.com/repos/ioBroker/ioBroker.repositories/pulls/${prID}`);
// https://api.github.com/repos/ioBroker/ioBroker.repositories/pulls/632/commits => [0].sha
const commits = await getGithub(body.commits_url);
const adapters = [];
for (let i = 0; i < commits.length; i++) {
const commit = await getGithub(`https://api.github.com/repos/ioBroker/ioBroker.repositories/commits/${commits[i].sha}`);
const files = commit.files && commit.files.filter(item => item.filename.startsWith('sources-dist'));
for (let f = 0; f < files.length; f++) {
const changes = await detectChanges(files[f]);
changes && changes.length && changes.forEach(c => !adapters.includes(c) && adapters.push(c));
}
}
console.log(`Detected changed adapters: ${adapters.join(', ')}`);
return adapters;
}
function decorateLine(line) {
if (line.noDecorate) {
return line.text;
}
let m = line.text.match(/"npm owner add bluefox iobroker\.([-_a-z\d]+)"/);
if (m) {
line.text = line.text.replace(`"npm owner add bluefox iobroker.${m[1]}"`, '`npm owner add bluefox iobroker.' + m[1] + '`');
}
m = line.text.match(/"Manage topics"/);
if (m) {
line.text = line.text.replace(`"Manage topics"`, '`Manage topics`');
}
m = line.text.match(/"## License"/);
if (m) {
line.text = line.text.replace(`"## License"`, '`## License`');
}
m = line.text.match(/travis/);
if (m) {
line.text = line.text.replace(/travis/g, `[travis](https://travis-ci.com/)`);
}
m = line.text.match(/Travis-ci\.org/);
if (m) {
line.text = line.text.replace(`Travis-ci.org`, `[Travis-ci.com](https://travis-ci.com/${line.owner}/${line.adapter})`);
}
m = line.text.match(/ README.md/);
if (m) {
line.text = line.text.replace(/ README.md/g, ` [README.md](${line.link}/blob/master/README.md)`);
}
m = line.text.match(/ io-package\.json/);
if (m) {
line.text = line.text.replace(/ io-package.json/g, ` [io-package.json](${line.link}/blob/master/io-package.json)`);
}
m = line.text.match(/ package\.json/);
if (m) {
line.text = line.text.replace(/ package.json/g, ` [package.json](${line.link}/blob/master/package.json)`);
}
m = line.text.match(/ node_modules/);
if (m) {
line.text = line.text.replace(/ node_modules/g, ` [node_modules](${line.link}/tree/master/node_modules)`);
}
m = line.text.match(/ NPM/);
if (m) {
line.text = line.text.replace(/ NPM/g, ` [NPM](https://www.npmjs.com/package/${line.adapter.toLowerCase()})`);
}
m = line.text.match(/"iob_npm.done"/);
if (m) {
line.text = line.text.replace(`"iob_npm.done"`, `"[iob_npm.done](${line.link}/blob/master/iob_npm.done)"`);
}
m = line.text.match(/ admin\/words\.js/);
if (m) {
line.text = line.text.replace(` admin/words.js`, ` [admin/words.js](${line.link}/blob/master/admin/words.js)`);
}
m = line.text.match(/ main\.js/);
if (m) {
line.text = line.text.replace(` main.js`, ` [main.js](${line.link}/blob/master/main.js)`);
}
// line.adapter = 'ioBroker.adapter'
if (line.adapter) {
const shortName = line.adapter.replace('ioBroker.', '');
if (line.text.includes(' ' + shortName + '.js')) {
line.text = line.text.replace(` ${shortName}.js`, ` [${shortName}.js](${line.link}/blob/master/${shortName}.js)`);
}
}
return line.text;
}
async function doIt() {
const prID = getPullRequestNumber();
console.log(`Process PR ${prID}`);
if (process.env.GITHUB_EVENT_PATH) {
const event = JSON.parse(fs.readFileSync(process.env.GITHUB_EVENT_PATH, 'utf8'));
console.log(`EVENT ${JSON.stringify(event, null, 2)}`);
if (event.action === 'created' && event.comment) {
if (!event.comment.body || event.comment.body.trim() !== TEXT_RECHECK) {
return Promise.resolve('No check required');
}
}
}
if (!prID) {
console.error('Cannot find PR');
return Promise.reject('Cannot find PR');
}
const links = await detectAffectedAdapter(prID);
const comments = [{text: TEXT_COMMENT_TITLE}];
let someChecked = false;
let errorsFound = false;
for (let i = 0; i < links.length; i++) {
const data = await executeOneAdapterCheck(links[i]);
const parts = data.adapter.split('/');
const adapter = parts.pop().replace('iobroker.', 'ioBroker.');
try {
const latestSVG = await getUrl(`http://iobroker.live/badges/${adapter.replace('ioBroker.', '')}-installed.svg`);
data.badgeLatest = (latestSVG || '').toString().startsWith('<svg ');
} catch (e) {
data.badgeLatest = false;
console.error(`Cannot get latest badge for ${adapter}: ${e}`);
}
try {
const stableSVG = await getUrl(`http://iobroker.live/badges/${adapter.replace('ioBroker.', '')}-stable.svg`);
data.badgeStable = (stableSVG || '').toString().startsWith('<svg ');
} catch (e) {
data.badgeStable = false;
console.error(`Cannot get stable badge for ${adapter}: ${e}`);
}
const owner = parts.pop();
const link = `https://github.com/${owner}/${adapter}`;
comments.push({text: `\n### [${adapter}](${link})`, link, owner, adapter, noDecorate: true});
let badges = `[![Downloads](https://img.shields.io/npm/dm/${adapter.toLowerCase()}.svg)](https://www.npmjs.com/package/${adapter.toLowerCase()}) `;
if (data.badgeLatest) {
badges += `![Number of Installations (latest)](http://iobroker.live/badges/${adapter.replace('ioBroker.', '')}-installed.svg) `;
}
if (data.badgeStable) {
badges += `![Number of Installations (stable)](http://iobroker.live/badges/${adapter.replace('ioBroker.', '')}-stable.svg)`;
}
comments.push({text: badges, noDecorate: true});
comments.push({text: `[![NPM](https://nodei.co/npm/${adapter.toLowerCase()}.png?downloads=true)](https://nodei.co/npm/${adapter.toLowerCase()}/)\n`, noDecorate: true});
if (data.context) {
someChecked = true;
if (data.context.errors && data.context.errors.length) {
errorsFound = true;
data.context.errors.forEach(err => comments.push({text: `- [ ] :heavy_exclamation_mark: ${err}`, link, owner, adapter}));
} else {
comments.push({text: ':thumbsup: No errors found', link, owner, adapter, noDecorate: true});
}
if (data.context.warnings && data.context.warnings.length) {
data.context.warnings.forEach(warn => comments.push({text: `- [ ] :eyes: ${warn}`, link, owner, adapter}));
}
}
}
if (!someChecked) {
comments.push({text: 'No changed adapters found', noDecorate: true});
} else {
try {
if (errorsFound) {
await addLabel(prID, ['must be fixed', 'auto-checked']);
} else {
await addLabel(prID, ['auto-checked']);
}
} catch (e) {
console.error(`Cannot add label: ${e}`);
}
}
// decorate
let comment = comments.map(line => decorateLine(line)).join('\n');
comment += `\n\n\n*Add comment "${TEXT_RECHECK}" to start check anew*`;
console.log('ADD PULL REQUEST COMMENT:');
console.log(comment);
try {
// remove previous comment
const gitComments = await getAllComments(prID);
let exists = gitComments.find(comment => comment.body.includes(TEXT_COMMENT_TITLE));
if (exists) {
await deleteComment(prID, exists.id);
}
exists = gitComments.find(comment => comment.body === TEXT_RECHECK);
if (exists) {
await deleteComment(prID, exists.id);
}
await addComment(prID, comment);
} catch (e) {
console.error(`Cannot add or remove comment: ${e}`);
}
return 'done';
}
// process.env.GITHUB_REF = 'refs/pull/1923/merge';
// process.env.GITHUB_EVENT_PATH = __dirname + '/../event.json';
console.log(`process.env.GITHUB_REF = ${process.env.GITHUB_REF}`);
console.log(`process.env.GITHUB_EVENT_PATH = ${process.env.GITHUB_EVENT_PATH}`);
console.log(`process.env.OWN_GITHUB_TOKEN = ${(process.env.OWN_GITHUB_TOKEN || '').length}`);
doIt()
.then(result => console.log(result))
.catch(e => console.error(e));