ArchiveBox/archivebox/extractors/favicon.py

73 lines
1.9 KiB
Python
Raw Normal View History

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
from ..index.schema import Link, ArchiveResult, ArchiveOutput
2020-06-26 02:14:40 +00:00
from ..system import chmod_file, run
from ..util import (
enforce_types,
domain,
dedupe,
)
2024-08-21 01:31:21 +00:00
from ..config import CONFIG
from ..logging_util import TimedProgress
2019-04-27 21:26:24 +00:00
@enforce_types
2024-08-21 01:31:21 +00:00
def should_save_favicon(link: Link, out_dir: str | Path | None=None, overwrite: bool=False) -> bool:
assert link.link_dir
out_dir = Path(out_dir or link.link_dir)
if not overwrite and (out_dir / 'favicon.ico').exists():
2019-04-27 21:26:24 +00:00
return False
2024-08-21 01:31:21 +00:00
return CONFIG.SAVE_FAVICON
@enforce_types
def get_output_path():
return 'favicon.ico'
2019-04-27 21:26:24 +00:00
@enforce_types
2024-08-21 01:31:21 +00:00
def save_favicon(link: Link, out_dir: str | Path | None=None, timeout: int=CONFIG.TIMEOUT) -> ArchiveResult:
2019-04-27 21:26:24 +00:00
"""download site favicon from google's favicon api"""
2024-08-21 01:31:21 +00:00
out_dir = Path(out_dir or link.link_dir)
assert out_dir.exists()
2019-04-27 21:26:24 +00:00
output: ArchiveOutput = 'favicon.ico'
2024-03-01 20:50:32 +00:00
# later options take precedence
options = [
2024-08-21 01:31:21 +00:00
*CONFIG.CURL_ARGS,
*CONFIG.CURL_EXTRA_ARGS,
2019-04-27 21:26:24 +00:00
'--max-time', str(timeout),
'--output', str(output),
2024-08-21 01:31:21 +00:00
*(['--user-agent', '{}'.format(CONFIG.CURL_USER_AGENT)] if CONFIG.CURL_USER_AGENT else []),
*([] if CONFIG.CHECK_SSL_VALIDITY else ['--insecure']),
]
cmd = [
2024-08-21 01:31:21 +00:00
CONFIG.CURL_BINARY,
*dedupe(options),
2024-08-21 01:31:21 +00:00
CONFIG.FAVICON_PROVIDER.format(domain(link.url)),
2019-04-27 21:26:24 +00:00
]
2021-01-30 11:07:35 +00:00
status = 'failed'
2019-04-27 21:26:24 +00:00
timer = TimedProgress(timeout, prefix=' ')
try:
2020-09-15 19:05:48 +00:00
run(cmd, cwd=str(out_dir), timeout=timeout)
chmod_file(output, cwd=str(out_dir))
2020-06-26 01:30:29 +00:00
status = 'succeeded'
2019-04-27 21:26:24 +00:00
except Exception as err:
output = err
finally:
timer.end()
return ArchiveResult(
cmd=cmd,
2020-09-15 19:05:48 +00:00
pwd=str(out_dir),
2024-08-21 01:31:21 +00:00
cmd_version=CONFIG.CURL_VERSION,
2019-04-27 21:26:24 +00:00
output=output,
status=status,
**timer.stats,
)