-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
cli.py
663 lines (582 loc) · 17.6 KB
/
cli.py
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
import click
from click_default_group import DefaultGroup
import json
import os
import pathlib
from playwright.sync_api import sync_playwright, Error, TimeoutError
from runpy import run_module
import secrets
import sys
import textwrap
import time
import yaml
from shot_scraper.utils import filename_for_url, url_or_file_path
BROWSERS = ("chromium", "firefox", "chrome", "chrome-beta")
def browser_option(fn):
click.option(
"--browser",
"-b",
default="chromium",
type=click.Choice(BROWSERS, case_sensitive=False),
help="Which browser to use",
)(fn)
return fn
@click.group(
cls=DefaultGroup,
default="shot",
default_if_no_args=True,
context_settings=dict(help_option_names=["-h", "--help"]),
)
@click.version_option()
def cli():
"Tools for taking automated screenshots"
pass
@cli.command()
@click.argument("url") # TODO: validate with custom type
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-w",
"--width",
type=int,
help="Width of browser window, defaults to 1280",
default=1280,
)
@click.option(
"-h",
"--height",
type=int,
help="Height of browser window and shot - defaults to the full height of the page",
)
@click.option(
"-o",
"--output",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@click.option(
"selectors",
"-s",
"--selector",
help="Take shot of first element matching this CSS selector",
multiple=True,
)
@click.option(
"-p",
"--padding",
type=int,
help="When using selectors, add this much padding in pixels",
default=0,
)
@click.option("-j", "--javascript", help="Execute this JS prior to taking the shot")
@click.option("--retina", is_flag=True, help="Use device scale factor of 2")
@click.option("--quality", type=int, help="Save as JPEG with this quality, e.g. 80")
@click.option(
"--wait", type=int, help="Wait this many milliseconds before taking the screenshot"
)
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
@click.option(
"-i",
"--interactive",
is_flag=True,
help="Interact with the page in a browser before taking the shot",
)
@click.option(
"--devtools",
is_flag=True,
help="Interact mode with developer tools",
)
@browser_option
def shot(
url,
auth,
output,
width,
height,
selectors,
padding,
javascript,
retina,
quality,
wait,
timeout,
interactive,
devtools,
browser,
):
"""
Take a single screenshot of a page or portion of a page.
Usage:
shot-scraper www.example.com
This will write the screenshot to www-example-com.png
Use "-o" to write to a specific file:
shot-scraper https://www.example.com/ -o example.png
You can also pass a path to a local file on disk:
shot-scraper index.html -o index.png
Using "-o -" will output to standard out:
shot-scraper https://www.example.com/ -o - > example.png
Use -s to take a screenshot of one area of the page, identified using
one or more CSS selectors:
shot-scraper https://simonwillison.net -s '#bighead'
"""
if output is None:
ext = "jpg" if quality else None
output = filename_for_url(url, ext=ext, file_exists=os.path.exists)
shot = {
"url": url,
"selectors": selectors,
"javascript": javascript,
"width": width,
"height": height,
"quality": quality,
"wait": wait,
"timeout": timeout,
"padding": padding,
"retina": retina,
}
interactive = interactive or devtools
with sync_playwright() as p:
use_existing_page = False
context, browser_obj = _browser_context(
p,
auth,
interactive=interactive,
devtools=devtools,
retina=retina,
browser=browser,
timeout=timeout,
)
if interactive or devtools:
use_existing_page = True
page = context.new_page()
page.goto(url)
context = page
click.echo(
"Hit <enter> to take the shot and close the browser window:", err=True
)
input()
try:
if output == "-":
shot = take_shot(
context,
shot,
return_bytes=True,
use_existing_page=use_existing_page,
)
sys.stdout.buffer.write(shot)
else:
shot["output"] = str(output)
shot = take_shot(context, shot, use_existing_page=use_existing_page)
except TimeoutError as e:
raise click.ClickException(str(e))
browser_obj.close()
def _browser_context(
p,
auth,
interactive=False,
devtools=False,
retina=False,
browser="chromium",
timeout=None,
):
browser_kwargs = dict(headless=not interactive, devtools=devtools)
if browser == "chromium":
browser_obj = p.chromium.launch(**browser_kwargs)
elif browser == "firefox":
browser_obj = p.firefox.launch(**browser_kwargs)
else:
browser_kwargs["channel"] = browser
browser_obj = p.chromium.launch(**browser_kwargs)
context_args = {}
if auth:
context_args["storage_state"] = json.load(auth)
if retina:
context_args["device_scale_factor"] = 2
context = browser_obj.new_context(**context_args)
if timeout:
context.set_default_timeout(timeout)
return context, browser_obj
@cli.command()
@click.argument("config", type=click.File(mode="r"))
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option("--retina", is_flag=True, help="Use device scale factor of 2")
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
@click.option("--fail-on-error", is_flag=True, help="Fail noisily on error")
@browser_option
def multi(config, auth, retina, timeout, fail_on_error, browser):
"""
Take multiple screenshots, defined by a YAML file
Usage:
shot-scraper multi config.yml
Where config.yml contains configuration like this:
\b
- output: example.png
url: http://www.example.com/
"""
shots = yaml.safe_load(config)
if shots is None:
shots = []
if not isinstance(shots, list):
raise click.ClickException("YAML file must contain a list")
with sync_playwright() as p:
context, browser_obj = _browser_context(
p, auth, retina=retina, browser=browser, timeout=timeout
)
for shot in shots:
try:
take_shot(context, shot)
except TimeoutError as e:
if fail_on_error:
raise click.ClickException(str(e))
else:
click.echo(str(e), err=True)
continue
browser_obj.close()
@cli.command()
@click.argument("url")
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.File("w"),
default="-",
)
@click.option("-j", "--javascript", help="Execute this JS prior to taking the snapshot")
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
def accessibility(url, auth, output, javascript, timeout):
"""
Dump the Chromium accessibility tree for the specifed page
Usage:
shot-scraper accessibility https://datasette.io/
"""
url = url_or_file_path(url, _check_and_absolutize)
with sync_playwright() as p:
context, browser_obj = _browser_context(p, auth, timeout=timeout)
page = context.new_page()
page.goto(url)
if javascript:
_evaluate_js(page, javascript)
snapshot = page.accessibility.snapshot()
browser_obj.close()
output.write(json.dumps(snapshot, indent=4))
output.write("\n")
@cli.command()
@click.argument("url")
@click.argument("javascript", required=False)
@click.option(
"-i",
"--input",
type=click.File("r"),
default="-",
help="Read input JavaScript from this file",
)
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.File("w"),
default="-",
help="Save output JSON to this file",
)
@browser_option
def javascript(url, javascript, input, auth, output, browser):
"""
Execute JavaScript against the page and return the result as JSON
Usage:
shot-scraper javascript https://datasette.io/ "document.title"
To return a JSON object, use this:
"({title: document.title, location: document.location})"
To use setInterval() or similar, pass a promise:
\b
"new Promise(done => setInterval(
() => {
done({
title: document.title,
h2: document.querySelector('h2').innerHTML
});
}, 1000
));"
If a JavaScript error occurs an exit code of 1 will be returned.
"""
if not javascript:
javascript = input.read()
url = url_or_file_path(url, _check_and_absolutize)
with sync_playwright() as p:
context, browser_obj = _browser_context(p, auth, browser=browser)
page = context.new_page()
page.goto(url)
result = _evaluate_js(page, javascript)
browser_obj.close()
output.write(json.dumps(result, indent=4, default=str))
output.write("\n")
@cli.command()
@click.argument("url")
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@click.option("-j", "--javascript", help="Execute this JS prior to creating the PDF")
@click.option(
"--wait", type=int, help="Wait this many milliseconds before taking the screenshot"
)
@click.option(
"--media-screen", is_flag=True, help="Use screen rather than print styles"
)
@click.option("--landscape", is_flag=True, help="Use landscape orientation")
def pdf(url, auth, output, javascript, wait, media_screen, landscape):
"""
Create a PDF of the specified page
Usage:
shot-scraper pdf https://datasette.io/
Use -o to specify a filename:
shot-scraper pdf https://datasette.io/ -o datasette.pdf
"""
url = url_or_file_path(url, _check_and_absolutize)
if output is None:
output = filename_for_url(url, ext="pdf", file_exists=os.path.exists)
with sync_playwright() as p:
context, browser_obj = _browser_context(p, auth)
page = context.new_page()
page.goto(url)
if wait:
time.sleep(wait / 1000)
if javascript:
_evaluate_js(page, javascript)
kwargs = {
"landscape": landscape,
}
if output != "-":
kwargs["path"] = output
if media_screen:
page.emulate_media(media="screen")
pdf = page.pdf(**kwargs)
if output == "-":
sys.stdout.buffer.write(pdf)
else:
click.echo(
"Screenshot of '{}' written to '{}'".format(url, output), err=True
)
browser_obj.close()
@cli.command()
@click.option(
"--browser",
"-b",
default="chromium",
type=click.Choice(BROWSERS, case_sensitive=False),
help="Which browser to install",
)
def install(browser):
"""
Install the Playwright browser needed by this tool.
Usage:
shot-scraper install
Or for browsers other than the Chromium default:
shot-scraper install -b firefox
"""
sys.argv = ["playwright", "install", browser]
run_module("playwright", run_name="__main__")
@cli.command()
@click.argument("url")
@click.argument(
"context_file",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@browser_option
def auth(url, context_file, browser):
"""
Open a browser so user can manually authenticate with the specified site,
then save the resulting authentication context to a file.
Usage:
shot-scraper auth https://github.com/ auth.json
"""
with sync_playwright() as p:
context, browser_obj = _browser_context(
p,
auth=None,
interactive=True,
devtools=True,
browser=browser,
)
context = browser_obj.new_context()
page = context.new_page()
page.goto(url)
click.echo("Hit <enter> after you have signed in:", err=True)
input()
context_state = context.storage_state()
context_json = json.dumps(context_state, indent=2) + "\n"
if context_file == "-":
click.echo(context_json)
else:
with open(context_file, "w") as fp:
fp.write(context_json)
# chmod 600 to avoid other users on the shared machine reading it
pathlib.Path(context_file).chmod(0o600)
class ShotError(Exception):
pass
def _check_and_absolutize(filepath):
path = pathlib.Path(filepath)
if path.exists():
return path.absolute()
return False
def take_shot(
context_or_page,
shot,
return_bytes=False,
use_existing_page=False,
):
url = shot.get("url") or ""
if not url:
raise ShotError("url is required")
url = url_or_file_path(url, file_exists=_check_and_absolutize)
output = shot.get("output", "").strip()
if not output and not return_bytes:
output = filename_for_url(url, ext="png", file_exists=os.path.exists)
quality = shot.get("quality")
wait = shot.get("wait")
padding = shot.get("padding") or 0
# If a single 'selector' turn that into selectors array with one item
selectors = shot.get("selectors") or []
if shot.get("selector"):
selectors.append(shot["selector"])
if not use_existing_page:
page = context_or_page.new_page()
else:
page = context_or_page
viewport = {}
full_page = True
if shot.get("width") or shot.get("height"):
viewport = {
"width": shot.get("width") or 1280,
"height": shot.get("height") or 720,
}
page.set_viewport_size(viewport)
if shot.get("height"):
full_page = False
page.goto(url)
if wait:
time.sleep(wait / 1000)
javascript = shot.get("javascript")
if javascript:
_evaluate_js(page, javascript)
screenshot_args = {}
if quality:
screenshot_args.update({"quality": quality, "type": "jpeg"})
if not return_bytes:
screenshot_args["path"] = output
if not selectors:
screenshot_args["full_page"] = full_page
if selectors:
# Use JavaScript to create a box around those elements
selector_javascript, selector_to_shoot = _selector_javascript(
selectors, padding
)
_evaluate_js(page, selector_javascript)
if return_bytes:
return page.locator(selector_to_shoot).screenshot(**screenshot_args)
else:
page.locator(selector_to_shoot).screenshot(**screenshot_args)
message = "Screenshot of '{}' on '{}' written to '{}'".format(
", ".join(selectors), url, output
)
else:
# Whole page
if return_bytes:
return page.screenshot(**screenshot_args)
else:
page.screenshot(**screenshot_args)
message = "Screenshot of '{}' written to '{}'".format(url, output)
click.echo(message, err=True)
def _selector_javascript(selectors, padding=0):
selector_to_shoot = "shot-scraper-{}".format(secrets.token_hex(8))
selector_javascript = textwrap.dedent(
"""
new Promise(takeShot => {
let padding = %s;
let minTop = 100000000;
let minLeft = 100000000;
let maxBottom = 0;
let maxRight = 0;
let els = %s.map(s => document.querySelector(s));
els.forEach(el => {
let rect = el.getBoundingClientRect();
if (rect.top < minTop) {
minTop = rect.top;
}
if (rect.left < minLeft) {
minLeft = rect.left;
}
if (rect.bottom > maxBottom) {
maxBottom = rect.bottom;
}
if (rect.right > maxRight) {
maxRight = rect.right;
}
});
// Adjust them based on scroll position
let top = minTop + window.scrollY;
let bottom = maxBottom + window.scrollY;
let left = minLeft + window.scrollX;
let right = maxRight + window.scrollX;
// Apply padding
top = top - padding;
bottom = bottom + padding;
left = left - padding;
right = right + padding;
let div = document.createElement('div');
div.style.position = 'absolute';
div.style.top = top + 'px';
div.style.left = left + 'px';
div.style.width = (right - left) + 'px';
div.style.height = (bottom - top) + 'px';
div.setAttribute('id', %s);
document.body.appendChild(div);
setTimeout(() => {
takeShot();
}, 300);
});
"""
% (padding, json.dumps(selectors), json.dumps(selector_to_shoot))
)
return selector_javascript, "#" + selector_to_shoot
def _evaluate_js(page, javascript):
try:
return page.evaluate(javascript)
except Error as error:
raise click.ClickException(error.message)