forked from webhintio/webhintio.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.js
446 lines (360 loc) · 13.8 KB
/
scanner.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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
const path = require('path');
const promisify = require('util').promisify;
const _ = require('lodash');
const moment = require('moment');
const globby = require('globby');
const r = require('request').defaults({ headers: { 'x-functions-key': `${process.env.FUNCTIONS_KEY}` } }); // eslint-disable-line no-process-env
const { getMessage: getMessageUtils } = require('@hint/utils-i18n');
const request = promisify(r);
const urlAudiences = process.env.WEBSITE_DOMAIN; // eslint-disable-line no-process-env
const webhintUrl = urlAudiences ? `${urlAudiences.split(',')[0]}/` : 'http://localhost:4000/';
const serviceEndpoint = process.env.SONAR_ENDPOINT || 'http://localhost:3000/'; // eslint-disable-line no-process-env
const underConstruction = process.env.UNDER_CONSTRUCTION; // eslint-disable-line no-process-env
const production = process.env.NODE_ENV === 'production'; // eslint-disable-line no-process-env
const theme = production ? 'webhint-theme-optimized' : 'webhint-theme';
const hexoDir = path.join(__dirname, '..', '..');
const rootPath = path.join(__dirname, '..', '..', '..');
const formatterRelativePath = `../../${theme}/formatter`;
const formatterHTMLPath = path.dirname(require.resolve(formatterRelativePath));
const HTMLFormatter = require(formatterRelativePath).default;
const formatter = new HTMLFormatter();
const localesCache = new Map();
const jobStatus = {
error: 'error',
finished: 'finished',
pending: 'pending',
started: 'started',
warning: 'warning'
};
const getMessageByLanguage = (language) => {
return (key, substitutions) => {
return getMessageUtils(key, formatterHTMLPath, {
language,
substitutions
});
};
};
const sendRequest = (url) => {
const options = {
body: JSON.stringify({ url }),
headers: { 'Content-type': 'application/json' },
method: 'POST',
url: `${serviceEndpoint}/createjob`
};
return request(options);
};
const queryResult = async (id, tries) => {
let response;
const counts = tries || 0;
const result = await request(`${serviceEndpoint}/jobstatus?id=${id}`);
if (!result.body) {
throw new Error(`No result found for this url. Please scan again.`);
}
try {
response = JSON.parse(result.body);
} catch (error) {
if (counts === 3) {
// Sometimes error `Unexpected Token at <` occurs
// And it disappears after querying more times.
throw error;
}
return queryResult(id, counts + 1);
}
return response;
};
/** Process scanning result to add category and statistics information */
const processHintResults = async (scanResult) => {
const hints = scanResult.hints;
const messages = hints.reduce((total, hint) => {
return total.concat(hint.messages.map((message) => {
// Make it compatible with the old version.
if (!message.hintId) {
message.hintId = message.ruleId;
}
message.category = hint.category;
return message;
}));
}, []);
const scanEnd = (scanResult.status === jobStatus.finished || scanResult.status === jobStatus.error) ? scanResult.finished : void 0;
const scanTime = moment.duration(moment(scanEnd).diff(moment(scanResult.started)));
const result = await formatter.format(messages, {
date: scanResult.queued,
isScanner: true,
noGenerateFiles: true,
scanTime,
status: scanResult.status,
target: scanResult.url,
version: scanResult.webhintVersion
});
result.showError = hints.every((hint) => {
return hint.messages.length === 1 && hint.messages[0].message === 'Error in webhint analyzing this hint';
});
/*
* Formatter always returns hint status equal to `finished`
* We need to assign the real status
*/
hints.forEach((hint) => {
const resultCategory = result.getCategoryByName(hint.category);
let resultHint = resultCategory.getHintByName(hint.name);
if (!resultHint) {
resultHint = resultCategory.addHint(hint.name, hint.status);
}
});
const categoriesToRemove = [];
for (const category of result.categories) {
const passedCount = category.passed ? category.passed.length : 0;
const hintsCount = category.hints ? category.hints.length : 0;
/*
* If there is no hints in the category, add the category
* to the list of categories to remove.
*/
if (passedCount + hintsCount === 0) {
categoriesToRemove.push(category.name.toLowerCase());
}
}
for (const category of categoriesToRemove) {
result.removeCategory(category);
}
result.id = scanResult.id;
result.permalink = `${webhintUrl}scanner/${scanResult.id}`;
const totalHints = result.categories.reduce((total, category) => {
total.finished += category.passed.length + category.hints.filter((hint) => {
return hint.status !== 'pending';
}).length;
total.total += category.passed.length + category.hints.length;
return total;
}, { finished: 0, total: 0 });
result.percentage = Math.round(totalHints.finished / totalHints.total * 100);
return result;
};
const initLocalesCache = () => {
const relativeBasePath = production ? '/static/scripts/locales' : '/js/scan/_locales';
const basePath = production ? path.join(rootPath, 'dist', relativeBasePath) : path.join(hexoDir, theme, 'source', relativeBasePath);
const locales = globby.sync(['*/messages{,-*}.js'], { cwd: basePath });
for (const locale of locales) {
const localeSplit = locale.split('/');
localesCache.set(localeSplit[0], {
file: `${relativeBasePath}/${locale}`,
language: localeSplit[0]
});
}
};
const getLanguagesSorted = (languagesRaw) => {
const langAndWeight = [];
const langRegex = /([^,;]+)(;q=([^,]*))?/g;
let exec = langRegex.exec(languagesRaw);
while (exec) {
const lang = exec[1].trim();
const weight = parseFloat(exec[3]) || 1;
langAndWeight.push({
lang,
weight
});
exec = langRegex.exec(languagesRaw);
}
const languages = _(langAndWeight)
.sortBy('weight')
.reverse()
.map((item) => {
return item.lang;
})
.value();
return languages;
};
const getLocale = (headers) => {
const languagesRaw = headers['accept-language'];
const languages = getLanguagesSorted(languagesRaw);
let locale;
for (const lang of languages) {
const cacheValue = localesCache.get(lang);
if (cacheValue) {
locale = cacheValue;
break;
}
}
if (!locale) {
locale = localesCache.get('en');
}
return locale;
};
const configure = (app, appInsightsClient) => {
initLocalesCache();
const reportJobEvent = (scanResult) => {
if (scanResult.status === jobStatus.started || scanResult.status === jobStatus.pending) {
return;
}
appInsightsClient.trackEvent({
name: `scanJob${_.capitalize(scanResult.status)}`,
properties: {
id: scanResult.id,
url: scanResult.url
}
});
if (scanResult.status === jobStatus.finished) {
const start = scanResult.started;
const end = scanResult.finished;
appInsightsClient.trackMetric({
name: 'scan-duration',
value: moment(end).diff(moment(start))
});
}
};
let scanner;
if (underConstruction && underConstruction === 'true') {
scanner = (req, res) => {
res.set('Cache-Control', 'no-cache');
return res.render('common', {
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
},
partial: 'under-construction',
result: null
});
};
} else {
scanner = (req, res) => {
res.set('Cache-Control', 'no-cache');
if (req.method === 'GET') {
appInsightsClient.trackNodeHttpRequest({ request: req, response: res });
}
res.render('scan', {
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
},
result: null,
scanUrl: req.query.url
});
};
}
app.get('/scanner', scanner);
app.get('/scanner/api/:id', async (req, res) => {
const id = req.params.id;
let scanResult;
try {
const start = Date.now();
scanResult = await queryResult(id);
appInsightsClient.trackMetric({ name: 'query-result-duration', value: Date.now() - start });
} catch (error) {
appInsightsClient.trackException({ exception: error });
return res.status(500);
}
reportJobEvent(scanResult);
const result = await processHintResults(scanResult);
return res.send({ result });
});
app.get('/scanner/:id', async (req, res) => {
const id = req.params.id;
let scanResult;
try {
const start = Date.now();
scanResult = await queryResult(id);
appInsightsClient.trackMetric({ name: 'query-result-duration', value: Date.now() - start });
} catch (error) {
appInsightsClient.trackException({ exception: error });
return res.render('error', {
details: error.message,
heading: 'ERROR',
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
}
});
}
try {
const result = await processHintResults(scanResult);
const locale = getLocale(req.headers);
const renderOptions = {
getMessage: getMessageByLanguage(locale.language),
localeFile: locale.file,
page: {
description: `webhint has identified ${result.errors} errors and ${result.warnings} warnings in ${result.url}`,
title: `webhint report for ${result.url}`
},
result,
showQueue: false
};
res.set('Cache-Control', 'max-age=180');
res.render('scan', renderOptions);
} catch (err) {
res.send(err);
}
});
const getJobConfig = async (req, res) => {
const job = await queryResult(req.params.jobId);
if (!job) {
return res.status(404).send('Job Not Found');
}
return res.send(job.config);
};
app.get('/scanner/config/:jobId', getJobConfig);
let scannerPost;
if (underConstruction && underConstruction === 'true') {
scannerPost = (req, res) => {
return res.render('common', {
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
},
partial: 'under-construction',
result: null
});
};
} else {
scannerPost = async (req, res) => {
if (req.method === 'POST') {
appInsightsClient.trackNodeHttpRequest({ request: req, response: res });
}
if (!req.body || !req.body.url) {
return res.render('error', {
details: 'Please provide a url.',
heading: '',
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
}
});
}
let requestResult;
try {
const start = Date.now();
const result = await sendRequest(req.body.url);
appInsightsClient.trackMetric({ name: 'send-request-duration', value: Date.now() - start });
requestResult = JSON.parse(result.body);
} catch (error) {
appInsightsClient.trackException({ exception: error });
return res.render('common', {
page: {
description: `Analyze any public website using webhint's online tool`,
title: `webhint's online scanner`
},
partial: 'scan-error',
result: null
});
}
const messagesInQueue = requestResult.messagesInQueue;
const result = await processHintResults(requestResult);
appInsightsClient.trackEvent({
name: 'scanJobCreated',
properties: {
id: result.id,
url: result.url
}
});
const locale = getLocale(req.headers);
return res.render('scan', {
getMessage: getMessageByLanguage(locale.language),
localeFile: locale.file,
page: {
description: `scan result of ${requestResult.url}`,
title: `webhint report for ${requestResult.url}`
},
result,
showQueue: requestResult.isNew && (typeof messagesInQueue === 'undefined' || messagesInQueue > 20)
});
};
}
app.post('/scanner', scannerPost);
};
module.exports = configure;