mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
114 lines
3.2 KiB
Python
114 lines
3.2 KiB
Python
__package__ = 'archivebox.extractors'
|
|
|
|
from pathlib import Path
|
|
|
|
from subprocess import CompletedProcess
|
|
from typing import Optional, List
|
|
import json
|
|
|
|
from ..index.schema import Link, ArchiveResult, ArchiveError
|
|
from ..system import run, atomic_write
|
|
from ..util import (
|
|
enforce_types,
|
|
is_static_file,
|
|
|
|
)
|
|
from ..config import (
|
|
TIMEOUT,
|
|
SAVE_MERCURY,
|
|
DEPENDENCIES,
|
|
MERCURY_VERSION,
|
|
)
|
|
from ..logging_util import TimedProgress
|
|
|
|
|
|
|
|
@enforce_types
|
|
def ShellError(cmd: List[str], result: CompletedProcess, lines: int=20) -> ArchiveError:
|
|
# parse out last line of stderr
|
|
return ArchiveError(
|
|
f'Got {cmd[0]} response code: {result.returncode}).',
|
|
" ".join(
|
|
line.strip()
|
|
for line in (result.stdout + result.stderr).decode().rsplit('\n', lines)[-lines:]
|
|
if line.strip()
|
|
),
|
|
)
|
|
|
|
|
|
@enforce_types
|
|
def should_save_mercury(link: Link, out_dir: Optional[str]=None, overwrite: Optional[bool]=False) -> bool:
|
|
if is_static_file(link.url):
|
|
return False
|
|
|
|
out_dir = out_dir or Path(link.link_dir)
|
|
if not overwrite and (out_dir / 'mercury').exists():
|
|
return False
|
|
|
|
return SAVE_MERCURY
|
|
|
|
|
|
@enforce_types
|
|
def save_mercury(link: Link, out_dir: Optional[Path]=None, timeout: int=TIMEOUT) -> ArchiveResult:
|
|
"""download reader friendly version using @postlight/mercury-parser"""
|
|
|
|
out_dir = Path(out_dir or link.link_dir)
|
|
output_folder = out_dir.absolute() / "mercury"
|
|
output = "mercury"
|
|
|
|
status = 'succeeded'
|
|
timer = TimedProgress(timeout, prefix=' ')
|
|
try:
|
|
output_folder.mkdir(exist_ok=True)
|
|
|
|
# Get plain text version of article
|
|
cmd = [
|
|
DEPENDENCIES['MERCURY_BINARY']['path'],
|
|
link.url,
|
|
"--format=text"
|
|
]
|
|
result = run(cmd, cwd=out_dir, timeout=timeout)
|
|
try:
|
|
article_text = json.loads(result.stdout)
|
|
except json.JSONDecodeError:
|
|
raise ShellError(cmd, result)
|
|
|
|
if article_text.get('failed'):
|
|
raise ArchiveError('Mercury was not able to get article text from the URL')
|
|
|
|
atomic_write(str(output_folder / "content.txt"), article_text["content"])
|
|
|
|
# Get HTML version of article
|
|
cmd = [
|
|
DEPENDENCIES['MERCURY_BINARY']['path'],
|
|
link.url
|
|
]
|
|
result = run(cmd, cwd=out_dir, timeout=timeout)
|
|
try:
|
|
article_json = json.loads(result.stdout)
|
|
except json.JSONDecodeError:
|
|
raise ShellError(cmd, result)
|
|
|
|
if article_text.get('failed'):
|
|
raise ArchiveError('Mercury was not able to get article HTML from the URL')
|
|
|
|
atomic_write(str(output_folder / "content.html"), article_json.pop("content"))
|
|
atomic_write(str(output_folder / "article.json"), article_json)
|
|
|
|
# Check for common failure cases
|
|
if (result.returncode > 0):
|
|
raise ShellError(cmd, result)
|
|
except (ArchiveError, Exception, OSError) as err:
|
|
status = 'failed'
|
|
output = err
|
|
finally:
|
|
timer.end()
|
|
|
|
return ArchiveResult(
|
|
cmd=cmd,
|
|
pwd=str(out_dir),
|
|
cmd_version=MERCURY_VERSION,
|
|
output=output,
|
|
status=status,
|
|
**timer.stats,
|
|
)
|