-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
index.js
485 lines (389 loc) · 11.7 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
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
/* global document */
import process from 'node:process';
import fs from 'node:fs/promises';
import path from 'node:path';
import {setTimeout} from 'node:timers/promises';
import fileUrl from 'file-url';
import puppeteer, {KnownDevices} from 'puppeteer';
import toughCookie from 'tough-cookie';
import {PuppeteerBlocker} from '@cliqz/adblocker-puppeteer';
const isUrl = string => /^(https?|file):\/\/|^data:/.test(string);
const assert = (value, message) => {
if (!value) {
throw new Error(message);
}
};
const validateOptions = options => {
assert(!(options.clip && options.element), 'The `clip` and `element` option are mutually exclusive');
assert(!(options.clip && options.fullPage), 'The `clip` and `fullPage` option are mutually exclusive');
};
const scrollToElement = (element, options) => {
const isOverflown = element => (
element.scrollHeight > element.clientHeight
|| element.scrollWidth > element.clientWidth
);
const findScrollParent = element => {
if (element === null) {
return;
}
if (isOverflown(element)) {
return element;
}
return findScrollParent(element.parentElement);
};
const calculateOffset = (rect, options) => {
if (options === undefined) {
return {
x: rect.left,
y: rect.top,
};
}
const offset = options.offset || 0;
switch (options.offsetFrom) {
case 'top': {
return {
x: rect.left,
y: rect.top + offset,
};
}
case 'right': {
return {
x: rect.left - offset,
y: rect.top,
};
}
case 'bottom': {
return {
x: rect.left,
y: rect.top - offset,
};
}
case 'left': {
return {
x: rect.left + offset,
y: rect.top,
};
}
default: {
throw new Error('Invalid `scrollToElement.offsetFrom` value');
}
}
};
const rect = element.getBoundingClientRect();
const offset = calculateOffset(rect, options);
const parent = findScrollParent(element);
if (parent !== undefined) {
parent.scrollIntoView(true);
parent.scrollTo(offset.x, offset.y);
}
};
const disableAnimations = () => {
const rule = `
*,
::before,
::after {
animation: initial !important;
transition: initial !important;
}
`;
const style = document.createElement('style');
document.body.append(style);
style.sheet.insertRule(rule);
};
const getBoundingClientRect = element => {
const {top, left, height, width, x, y} = element.getBoundingClientRect();
return {
top,
left,
height,
width,
x,
y,
};
};
const parseCookie = (url, cookie) => {
if (typeof cookie === 'object') {
return cookie;
}
const jar = new toughCookie.CookieJar(undefined, {rejectPublicSuffixes: false});
jar.setCookieSync(cookie, url);
const returnValue = jar.serializeSync().cookies[0];
// Use this instead of the above when the following issue is fixed:
// https://github.com/salesforce/tough-cookie/issues/149
// const ret = toughCookie.parse(cookie).serializeSync();
returnValue.name = returnValue.key;
delete returnValue.key;
returnValue.expires &&= Math.floor(new Date(returnValue.expires) / 1000);
return returnValue;
};
const internalCaptureWebsite = async (input, options) => {
options = {
launchOptions: {headless: 'new'},
...options,
};
const {launchOptions} = options;
validateOptions(options);
if (options.debug) {
launchOptions.headless = false;
launchOptions.slowMo = 100;
}
let browser;
let page;
try {
browser = options._browser || await puppeteer.launch(launchOptions);
page = await browser.newPage();
if (options.blockAds) {
// eslint-disable-next-line n/no-unsupported-features/node-builtins
const blocker = await PuppeteerBlocker.fromPrebuiltFull(fetch, {
path: 'engine.bin',
read: fs.readFile,
write: fs.writeFile,
});
await blocker.enableBlockingInPage(page);
}
return await internalCaptureWebsiteCore(input, options, page, browser);
} finally {
if (page) {
await page.close();
}
if (browser && !options._keepAlive) {
await browser.close();
}
}
};
const internalCaptureWebsiteCore = async (input, options, page, browser) => {
options = {
inputType: 'url',
width: 1280,
height: 800,
scaleFactor: 2,
fullPage: false,
defaultBackground: true,
timeout: 60, // The Puppeteer default of 30 is too short
delay: 0,
debug: false,
darkMode: false,
_keepAlive: false,
isJavaScriptEnabled: true,
blockAds: true,
inset: 0,
...options,
};
const isHTMLContent = options.inputType === 'html';
input = isHTMLContent || isUrl(input) ? input : fileUrl(input);
const timeoutInMilliseconds = options.timeout * 1000;
const viewportOptions = {
width: options.width,
height: options.height,
deviceScaleFactor: options.scaleFactor,
};
const screenshotOptions = {};
if (options.type) {
screenshotOptions.type = options.type;
}
if (typeof options.quality === 'number' && options.type && options.type !== 'png') {
screenshotOptions.quality = options.quality * 100;
}
if (options.fullPage) {
screenshotOptions.fullPage = options.fullPage;
}
if (typeof options.defaultBackground === 'boolean') {
screenshotOptions.omitBackground = !options.defaultBackground;
}
if (options.preloadFunction) {
await page.evaluateOnNewDocument(options.preloadFunction);
}
await page.setBypassCSP(true);
await page.setJavaScriptEnabled(options.isJavaScriptEnabled);
if (options.debug) {
page.on('console', message => {
let {url, lineNumber, columnNumber} = message.location();
lineNumber = lineNumber ? `:${lineNumber}` : '';
columnNumber = columnNumber ? `:${columnNumber}` : '';
const location = url ? ` (${url}${lineNumber}${columnNumber})` : '';
console.log(`\nPage log:${location}\n${message.text()}\n`);
});
page.on('pageerror', error => {
console.log('\nPage error:', error, '\n');
});
// TODO: Add more events from https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#event-requestfailed
}
if (options.authentication) {
await page.authenticate(options.authentication);
}
if (options.cookies) {
const cookies = options.cookies.map(cookie => parseCookie(isHTMLContent ? 'about:blank' : input, cookie));
await page.setCookie(...cookies);
}
if (options.headers) {
await page.setExtraHTTPHeaders(options.headers);
}
if (options.userAgent) {
await page.setUserAgent(options.userAgent);
}
if (options.clip) {
screenshotOptions.clip = options.clip;
}
await page.setViewport(viewportOptions);
if (options.emulateDevice) {
if (!(options.emulateDevice in KnownDevices)) {
throw new Error(`The device name \`${options.emulateDevice}\` is not supported`);
}
await page.emulate(KnownDevices[options.emulateDevice]);
}
await page.emulateMediaFeatures([{
name: 'prefers-color-scheme',
value: options.darkMode ? 'dark' : 'light',
}]);
await page[isHTMLContent ? 'setContent' : 'goto'](input, {
timeout: timeoutInMilliseconds,
waitUntil: 'networkidle2',
});
if (options.disableAnimations) {
await page.evaluate(disableAnimations, options.disableAnimations);
}
if (Array.isArray(options.hideElements) && options.hideElements.length > 0) {
await page.addStyleTag({
content: `${options.hideElements.join(', ')} { visibility: hidden !important; }`,
});
}
if (Array.isArray(options.removeElements) && options.removeElements.length > 0) {
await page.addStyleTag({
content: `${options.removeElements.join(', ')} { display: none !important; }`,
});
}
if (options.clickElement) {
await page.click(options.clickElement);
}
const getInjectKey = (extension, value) => isUrl(value) ? 'url' : (value.endsWith(`.${extension}`) ? 'path' : 'content');
if (!options.isJavaScriptEnabled) {
// Enable JavaScript again for `modules` and `scripts`.
await page.setJavaScriptEnabled(true);
}
if (options.modules) {
await Promise.all(options.modules.map(module_ => page.addScriptTag({
[getInjectKey('js', module_)]: module_,
type: 'module',
})));
}
if (options.scripts) {
await Promise.all(options.scripts.map(script => page.addScriptTag({
[getInjectKey('js', script)]: script,
})));
}
if (options.styles) {
await Promise.all(options.styles.map(style => page.addStyleTag({
[getInjectKey('css', style)]: style,
})));
}
if (options.waitForElement) {
await page.waitForSelector(options.waitForElement, {
visible: true,
timeout: timeoutInMilliseconds,
});
}
if (options.beforeScreenshot) {
await options.beforeScreenshot(page, browser);
}
if (options.element) {
await page.waitForSelector(options.element, {
visible: true,
timeout: timeoutInMilliseconds,
});
}
if (options.delay) {
await setTimeout(options.delay * 1000);
}
if (options.element) {
screenshotOptions.clip = await page.$eval(options.element, getBoundingClientRect);
screenshotOptions.fullPage = false;
}
if (options.scrollToElement) {
// eslint-disable-next-line unicorn/prefer-ternary
if (typeof options.scrollToElement === 'object') {
await page.$eval(options.scrollToElement.element, scrollToElement, options.scrollToElement);
} else {
await page.$eval(options.scrollToElement, scrollToElement);
}
}
if (screenshotOptions.fullPage) {
// Get the height of the rendered page
const bodyHandle = await page.$('body');
const bodyBoundingBox = await bodyHandle.boundingBox();
await bodyHandle.dispose();
// Scroll one viewport at a time, pausing to let content load
const viewportHeight = viewportOptions.height;
let viewportIncrement = 0;
while (viewportIncrement + viewportHeight < bodyBoundingBox.height) {
const navigationPromise = page.waitForNetworkIdle();
/* eslint-disable no-await-in-loop */
await page.evaluate(_viewportHeight => {
/* eslint-disable no-undef */
window.scrollBy(0, _viewportHeight);
/* eslint-enable no-undef */
}, viewportHeight);
await navigationPromise;
/* eslint-enable no-await-in-loop */
viewportIncrement += viewportHeight;
}
// Scroll back to top
await page.evaluate(_ => {
/* eslint-disable no-undef */
window.scrollTo(0, 0);
/* eslint-enable no-undef */
});
}
if (options.inset && !screenshotOptions.fullPage) {
const inset = {
top: 0,
right: 0,
bottom: 0,
left: 0,
};
for (const key of Object.keys(inset)) {
inset[key] = typeof options.inset === 'number' ? options.inset : (options.inset[key] ?? 0);
}
let clipOptions = screenshotOptions.clip;
clipOptions ||= await page.evaluate(() => ({
x: 0,
y: 0,
/* eslint-disable no-undef */
height: window.innerHeight,
width: window.innerWidth,
/* eslint-enable no-undef */
}));
const x = clipOptions.x + inset.left;
const y = clipOptions.y + inset.top;
const width = clipOptions.width - (inset.left + inset.right);
const height = clipOptions.height - (inset.top + inset.bottom);
if (width === 0 || height === 0) {
throw new Error('When using the `clip` option, the width or height of the screenshot cannot be equal to 0.');
}
screenshotOptions.clip = {
x,
y,
width,
height,
};
}
const buffer = await page.screenshot(screenshotOptions);
return buffer;
};
const captureWebsite = {};
captureWebsite.file = async (url, filePath, options = {}) => {
const screenshot = await internalCaptureWebsite(url, options);
await fs.mkdir(path.dirname(filePath), {recursive: true});
await fs.writeFile(filePath, screenshot, {
flag: options.overwrite ? 'w' : 'wx',
});
};
captureWebsite.buffer = async (url, options) => new Uint8Array(await internalCaptureWebsite(url, options));
captureWebsite.base64 = async (url, options) => {
const screenshot = await internalCaptureWebsite(url, options);
return screenshot.toString('base64');
};
if (process.env.NODE_ENV === 'test') {
captureWebsite._startBrowser = puppeteer.launch.bind(puppeteer);
}
export default captureWebsite;
export const devices = Object.values(KnownDevices).map(device => device.name);