2019-04-27 21:26:24 +00:00
|
|
|
__package__ = 'archivebox.extractors'
|
|
|
|
|
2020-09-15 19:05:48 +00:00
|
|
|
from pathlib import Path
|
2019-04-27 21:26:24 +00:00
|
|
|
from typing import Optional
|
|
|
|
|
2019-05-01 03:13:04 +00:00
|
|
|
from ..index.schema import Link, ArchiveResult, ArchiveOutput, ArchiveError
|
2020-06-26 02:14:40 +00:00
|
|
|
from ..system import run, chmod_file
|
2019-04-27 21:26:24 +00:00
|
|
|
from ..util import (
|
|
|
|
enforce_types,
|
|
|
|
is_static_file,
|
|
|
|
chrome_args,
|
|
|
|
)
|
|
|
|
from ..config import (
|
|
|
|
TIMEOUT,
|
|
|
|
SAVE_PDF,
|
|
|
|
CHROME_VERSION,
|
|
|
|
)
|
2020-07-22 16:02:13 +00:00
|
|
|
from ..logging_util import TimedProgress
|
2019-04-27 21:26:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
@enforce_types
|
2021-01-21 21:45:11 +00:00
|
|
|
def should_save_pdf(link: Link, out_dir: Optional[Path]=None, overwrite: Optional[bool]=False) -> bool:
|
2019-04-27 21:26:24 +00:00
|
|
|
if is_static_file(link.url):
|
|
|
|
return False
|
2021-01-21 21:45:11 +00:00
|
|
|
|
|
|
|
out_dir = out_dir or Path(link.link_dir)
|
|
|
|
if not overwrite and (out_dir / 'output.pdf').exists():
|
2019-04-27 21:26:24 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return SAVE_PDF
|
|
|
|
|
|
|
|
|
|
|
|
@enforce_types
|
2020-09-15 19:05:48 +00:00
|
|
|
def save_pdf(link: Link, out_dir: Optional[Path]=None, timeout: int=TIMEOUT) -> ArchiveResult:
|
2019-04-27 21:26:24 +00:00
|
|
|
"""print PDF of site to file using chrome --headless"""
|
|
|
|
|
2020-09-15 19:05:48 +00:00
|
|
|
out_dir = out_dir or Path(link.link_dir)
|
2019-04-27 21:26:24 +00:00
|
|
|
output: ArchiveOutput = 'output.pdf'
|
|
|
|
cmd = [
|
|
|
|
*chrome_args(TIMEOUT=timeout),
|
|
|
|
'--print-to-pdf',
|
|
|
|
link.url,
|
|
|
|
]
|
|
|
|
status = 'succeeded'
|
|
|
|
timer = TimedProgress(timeout, prefix=' ')
|
|
|
|
try:
|
2020-09-15 19:05:48 +00:00
|
|
|
result = run(cmd, cwd=str(out_dir), timeout=timeout)
|
2019-04-27 21:26:24 +00:00
|
|
|
|
|
|
|
if result.returncode:
|
|
|
|
hints = (result.stderr or result.stdout).decode()
|
|
|
|
raise ArchiveError('Failed to save PDF', hints)
|
|
|
|
|
2020-09-15 19:05:48 +00:00
|
|
|
chmod_file('output.pdf', cwd=str(out_dir))
|
2019-04-27 21:26:24 +00:00
|
|
|
except Exception as err:
|
|
|
|
status = 'failed'
|
|
|
|
output = err
|
|
|
|
finally:
|
|
|
|
timer.end()
|
|
|
|
|
2020-06-30 05:12:06 +00:00
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
return ArchiveResult(
|
|
|
|
cmd=cmd,
|
2020-09-15 19:05:48 +00:00
|
|
|
pwd=str(out_dir),
|
2019-04-27 21:26:24 +00:00
|
|
|
cmd_version=CHROME_VERSION,
|
|
|
|
output=output,
|
|
|
|
status=status,
|
|
|
|
**timer.stats,
|
|
|
|
)
|