forked from GovTechSG/oobee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
413 lines (387 loc) · 12.3 KB
/
cli.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
#!/usr/bin/env node
/* eslint-disable no-fallthrough */
/* eslint-disable no-undef */
/* eslint-disable no-param-reassign */
import fs from 'fs-extra';
import _yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import printMessage from 'print-message';
import { devices } from 'playwright';
import { cleanUp, zipResults, setHeadlessMode, getVersion, getStoragePath } from './utils.js';
import {
checkUrl,
prepareData,
isFileSitemap,
validEmail,
validName,
getBrowserToRun,
getPlaywrightDeviceDetailsObject,
deleteClonedProfiles,
getScreenToScan,
getClonedProfilesWithRandomToken,
validateDirPath,
validateFilePath,
validateCustomFlowLabel,
} from './constants/common.js';
import constants from './constants/constants.js';
import { cliOptions, messageOptions } from './constants/cliFunctions.js';
import combineRun from './combine.js';
import playwrightAxeGenerator from './playwrightAxeGenerator.js';
import { silentLogger } from './logs.js';
import { fileURLToPath } from 'url';
import path from 'path';
const appVersion = getVersion();
const yargs = _yargs(hideBin(process.argv));
const options = yargs
.version(false)
.usage(
`Purple HATS version: ${appVersion}
Usage: node cli.js -c <crawler> -d <device> -w <viewport> -u <url> OPTIONS`,
)
.strictOptions(true)
.options(cliOptions)
.example([
[
`To scan sitemap of website:', 'node cli.js -c [ 1 | sitemap ] -u <url_link> [ -d <device> | -w <viewport_width> ]`,
],
[
`To scan a website', 'node cli.js -c [ 2 | website ] -u <url_link> [ -d <device> | -w <viewport_width> ]`,
],
[
`To start a custom flow scan', 'node cli.js -c [ 3 | custom ] -u <url_link> [ -d <device> | -w <viewport_width> ]`,
],
])
.coerce('c', option => {
const { choices } = cliOptions.c;
if (typeof option === 'number') {
// Will also allow integer choices
if (Number.isInteger(option) && option > 0 && option <= choices.length) {
option = choices[option - 1];
} else {
printMessage(
[
'Invalid option',
`Please enter an integer (1 to ${choices.length}) or keywords (${choices.join(', ')}).`,
],
messageOptions,
);
process.exit(1);
}
}
return option;
})
.coerce('d', option => {
const device = devices[option];
if (!device && option !== 'Desktop' && option !== 'Mobile') {
printMessage(
[`Invalid device. Please provide an existing device to start the scan.`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('w', option => {
if (!option || Number.isNaN(option)) {
printMessage([`Invalid viewport width. Please provide a number. `], messageOptions);
process.exit(1);
} else if (option < 320 || option > 1080) {
printMessage(
['Invalid viewport width! Please provide a viewport width between 320-1080 pixels.'],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('p', option => {
if (!Number.isInteger(option) || Number(option) <= 0) {
printMessage(
[`Invalid maximum number of pages. Please provide a positive integer.`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('b', option => {
const { choices } = cliOptions.b;
if (typeof option === 'number') {
if (Number.isInteger(option) && option > 0 && option <= choices.length) {
option = choices[option - 1];
} else {
printMessage(
[
'Invalid option',
`Please enter an integer (1 to ${choices.length}) or keywords (${choices.join(', ')}).`,
],
messageOptions,
);
process.exit(1);
}
}
return option;
})
.coerce('t', option => {
if (!Number.isInteger(option) || Number(option) <= 0) {
printMessage(
[`Invalid number for max concurrency. Please provide a positive integer.`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('k', nameEmail => {
if (nameEmail.indexOf(':') === -1) {
printMessage(
[`Invalid format. Please provide your name and email address separated by ":"`],
messageOptions,
);
process.exit(1);
}
const [name, email] = nameEmail.split(':');
if (name === '' || name === undefined || name === null) {
printMessage([`Please provide your name.`], messageOptions);
process.exit(1);
}
if (!validName(name)) {
printMessage([`Invalid name. Please provide a valid name.`], messageOptions);
process.exit(1);
}
if (!validEmail(email)) {
printMessage(
[`Invalid emaill address. Please provide a valid email adress.`],
messageOptions,
);
process.exit(1);
}
return nameEmail;
})
.coerce('f', option => {
if (!cliOptions.f.choices.includes(option)) {
printMessage(
[`Invalid value for needsReviewItems. Please provide boolean value(true/false).`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('e', option => {
const validationErrors = validateDirPath(option);
if (validationErrors) {
printMessage([`Invalid exportDirectory directory path. ${validationErrors}`], messageOptions);
process.exit(1);
}
return option;
})
.coerce('x', option => {
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
try {
return validateFilePath(option, __dirname);
} catch (err) {
printMessage(
[`Invalid blacklistedPatternsFilename file path. ${validationErrors}`],
messageOptions,
);
process.exit(1);
}
})
.coerce('i', option => {
const { choices } = cliOptions.i;
if (!choices.includes(option)) {
printMessage(
[`Invalid value for fileTypes. Please provide valid keywords: ${choices.join(', ')}.`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('j', option => {
const { isValid, errorMessage } = validateCustomFlowLabel(option);
if (!isValid) {
printMessage([errorMessage], messageOptions);
process.exit(1);
}
return option;
})
.coerce('a', option => {
const { choices } = cliOptions.a;
if (!choices.includes(option)) {
printMessage(
[`Invalid value for additional. Please provide valid keywords: ${choices.join(', ')}.`],
messageOptions,
);
process.exit(1);
}
return option;
})
.coerce('q', option => {
try {
JSON.parse(option);
} catch (e) {
// default to empty object
return '{}';
}
return option;
})
.check(argvs => {
if ((argvs.scanner === 'custom' || argvs.scanner === 'custom2') && argvs.maxpages) {
throw new Error('-p or --maxpages is only available in website and sitemap scans.');
}
return true;
})
.check(argvs => {
if (argvs.scanner !== 'website' && argvs.strategy) {
throw new Error('-s or --strategy is only available in website scans.');
}
return true;
})
.conflicts('d', 'w')
.epilogue('').argv;
const scanInit = async argvs => {
let isNewCustomFlow = false;
if (constants.scannerTypes[argvs.scanner] === constants.scannerTypes.custom2) {
argvs.scanner = constants.scannerTypes.custom;
isNewCustomFlow = true;
} else {
argvs.scanner = constants.scannerTypes[argvs.scanner];
}
argvs.headless = argvs.headless === 'yes';
argvs.browserToRun = constants.browserTypes[argvs.browserToRun];
// let chromeDataDir = null;
// let edgeDataDir = null;
// Empty string for profile directory will use incognito mode in playwright
let clonedDataDir = '';
const statuses = constants.urlCheckStatuses;
const { browserToRun, clonedBrowserDataDir } = getBrowserToRun(argvs.browserToRun, true);
argvs.browserToRun = browserToRun;
clonedDataDir = clonedBrowserDataDir;
if (argvs.customDevice === 'Desktop' || argvs.customDevice === 'Mobile') {
argvs.deviceChosen = argvs.customDevice;
delete argvs.customDevice;
}
// Creating the playwrightDeviceDetailObject
// for use in crawlDomain & crawlSitemap's preLaunchHook
argvs.playwrightDeviceDetailsObject = getPlaywrightDeviceDetailsObject(
argvs.deviceChosen,
argvs.customDevice,
argvs.viewportWidth,
);
const res = await checkUrl(
argvs.scanner,
argvs.url,
argvs.browserToRun,
clonedDataDir,
argvs.playwrightDeviceDetailsObject,
);
switch (res.status) {
case statuses.success.code:
argvs.finalUrl = res.url;
if (process.env.VALIDATE_URL_PH_GUI) {
console.log('Url is valid');
process.exit(0);
}
break;
case statuses.unauthorised.code:
printMessage([statuses.unauthorised.message], messageOptions);
process.exit(res.status);
case statuses.cannotBeResolved.code:
printMessage([statuses.cannotBeResolved.message], messageOptions);
process.exit(res.status);
case statuses.systemError.code:
printMessage([statuses.systemError.message], messageOptions);
process.exit(res.status);
case statuses.invalidUrl.code:
if (argvs.scanner !== constants.scannerTypes.sitemap) {
printMessage([statuses.invalidUrl.message], messageOptions);
process.exit(res.status);
}
/* if sitemap scan is selected, treat this URL as a filepath
isFileSitemap will tell whether the filepath exists, and if it does, whether the
file is a sitemap */
const finalFilePath = await isFileSitemap(argvs.url);
if (finalFilePath) {
argvs.isLocalSitemap = true;
argvs.finalUrl = finalFilePath;
if (process.env.VALIDATE_URL_PH_GUI) {
console.log('Url is valid');
process.exit(0);
}
break;
} else {
printMessage([statuses.notASitemap.message], messageOptions);
process.exit(statuses.notASitemap.code);
}
case statuses.notASitemap.code:
printMessage([statuses.notASitemap.message], messageOptions);
process.exit(res.status);
case statuses.browserError.code:
printMessage([statuses.browserError.message], messageOptions);
process.exit(res.status);
default:
break;
}
if (argvs.scanner === constants.scannerTypes.website && !argvs.strategy) {
argvs.strategy = 'same-domain';
}
// File clean up after url check
// files will clone a second time below if url check passes
deleteClonedProfiles(argvs.browserToRun);
if (argvs.exportDirectory) {
constants.exportDirectory = argvs.exportDirectory;
}
const data = prepareData(argvs);
setHeadlessMode(data.browser, data.isHeadless);
const screenToScan = getScreenToScan(argvs.deviceChosen, argvs.customDevice, argvs.viewportWidth);
// Clone profiles a second time
clonedDataDir = getClonedProfilesWithRandomToken(data.browser, data.randomToken);
data.userDataDirectory = clonedDataDir;
printMessage([`Purple HATS version: ${appVersion}`, 'Starting scan...'], messageOptions);
if (argvs.scanner === constants.scannerTypes.custom && !isNewCustomFlow) {
try {
await playwrightAxeGenerator(data);
} catch (error) {
silentLogger.error(error);
printMessage([
`An error has occurred when running the custom flow scan. Please see above and errors.txt for more details.`,
]);
process.exit(2);
}
} else {
await combineRun(data, screenToScan);
}
// Delete cloned directory
deleteClonedProfiles(data.browser);
// Delete dataset and request queues
await cleanUp(data.randomToken);
return getStoragePath(data.randomToken);
};
scanInit(options).then(async storagePath => {
// Take option if set
if (typeof options.zip === 'string') {
constants.cliZipFileName = options.zip;
}
await fs
.ensureDir(storagePath)
.then(() => {
zipResults(constants.cliZipFileName, storagePath);
const messageToDisplay = [
`Report of this run is at ${constants.cliZipFileName}`,
`Results directory is at ${storagePath}`,
];
if (process.env.REPORT_BREAKDOWN === '1') {
messageToDisplay.push(
'Reports have been further broken down according to their respective impact level.',
);
}
printMessage(messageToDisplay);
process.exit(0);
})
.catch(error => {
printMessage([`Error in zipping results: ${error}`]);
});
});