2019-04-27 21:26:24 +00:00
|
|
|
__package__ = 'archivebox.extractors'
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2020-07-28 09:58:38 +00:00
|
|
|
from typing import Optional, List, Iterable
|
2019-04-27 21:26:24 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
from ..index.schema import Link
|
|
|
|
from ..index import (
|
|
|
|
load_link_details,
|
|
|
|
write_link_details,
|
|
|
|
patch_main_index,
|
|
|
|
)
|
|
|
|
from ..util import enforce_types
|
2020-07-22 16:02:13 +00:00
|
|
|
from ..logging_util import (
|
2020-07-13 15:26:30 +00:00
|
|
|
log_archiving_started,
|
|
|
|
log_archiving_paused,
|
|
|
|
log_archiving_finished,
|
2019-04-27 21:26:24 +00:00
|
|
|
log_link_archiving_started,
|
|
|
|
log_link_archiving_finished,
|
|
|
|
log_archive_method_started,
|
|
|
|
log_archive_method_finished,
|
|
|
|
)
|
|
|
|
|
|
|
|
from .title import should_save_title, save_title
|
|
|
|
from .favicon import should_save_favicon, save_favicon
|
|
|
|
from .wget import should_save_wget, save_wget
|
2020-07-30 18:23:10 +00:00
|
|
|
from .singlefile import should_save_singlefile, save_singlefile
|
2020-08-07 13:05:17 +00:00
|
|
|
from .readability import should_save_readability, save_readability
|
2019-04-27 21:26:24 +00:00
|
|
|
from .pdf import should_save_pdf, save_pdf
|
|
|
|
from .screenshot import should_save_screenshot, save_screenshot
|
|
|
|
from .dom import should_save_dom, save_dom
|
|
|
|
from .git import should_save_git, save_git
|
|
|
|
from .media import should_save_media, save_media
|
|
|
|
from .archive_org import should_save_archive_dot_org, save_archive_dot_org
|
|
|
|
|
2020-07-31 15:24:58 +00:00
|
|
|
def get_default_archive_methods():
|
|
|
|
return [
|
|
|
|
('title', should_save_title, save_title),
|
|
|
|
('favicon', should_save_favicon, save_favicon),
|
|
|
|
('wget', should_save_wget, save_wget),
|
2020-07-30 18:23:10 +00:00
|
|
|
('singlefile', should_save_singlefile, save_singlefile),
|
2020-08-07 13:05:17 +00:00
|
|
|
('readability', should_save_readability, save_readability),
|
2020-07-31 15:24:58 +00:00
|
|
|
('pdf', should_save_pdf, save_pdf),
|
|
|
|
('screenshot', should_save_screenshot, save_screenshot),
|
|
|
|
('dom', should_save_dom, save_dom),
|
|
|
|
('git', should_save_git, save_git),
|
|
|
|
('media', should_save_media, save_media),
|
|
|
|
('archive_org', should_save_archive_dot_org, save_archive_dot_org),
|
|
|
|
]
|
|
|
|
|
|
|
|
@enforce_types
|
|
|
|
def ignore_methods(to_ignore: List[str]):
|
|
|
|
ARCHIVE_METHODS = get_default_archive_methods()
|
|
|
|
methods = filter(lambda x: x[0] not in to_ignore, ARCHIVE_METHODS)
|
|
|
|
methods = map(lambda x: x[1], methods)
|
|
|
|
return list(methods)
|
2019-04-27 21:26:24 +00:00
|
|
|
|
|
|
|
@enforce_types
|
2020-07-29 16:19:06 +00:00
|
|
|
def archive_link(link: Link, overwrite: bool=False, methods: Optional[Iterable[str]]=None, out_dir: Optional[str]=None, skip_index: bool=False) -> Link:
|
2019-04-27 21:26:24 +00:00
|
|
|
"""download the DOM, PDF, and a screenshot into a folder named after the link's timestamp"""
|
|
|
|
|
2020-07-31 15:24:58 +00:00
|
|
|
ARCHIVE_METHODS = get_default_archive_methods()
|
|
|
|
|
2020-07-28 09:58:38 +00:00
|
|
|
if methods is not None:
|
|
|
|
ARCHIVE_METHODS = [
|
|
|
|
method for method in ARCHIVE_METHODS
|
|
|
|
if method[1] in methods
|
|
|
|
]
|
2020-06-30 06:04:16 +00:00
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
out_dir = out_dir or link.link_dir
|
|
|
|
try:
|
|
|
|
is_new = not os.path.exists(out_dir)
|
|
|
|
if is_new:
|
|
|
|
os.makedirs(out_dir)
|
|
|
|
|
|
|
|
link = load_link_details(link, out_dir=out_dir)
|
2020-07-29 16:19:06 +00:00
|
|
|
write_link_details(link, out_dir=out_dir, skip_sql_index=skip_index)
|
2019-04-27 21:26:24 +00:00
|
|
|
log_link_archiving_started(link, out_dir, is_new)
|
|
|
|
link = link.overwrite(updated=datetime.now())
|
|
|
|
stats = {'skipped': 0, 'succeeded': 0, 'failed': 0}
|
|
|
|
|
|
|
|
for method_name, should_run, method_function in ARCHIVE_METHODS:
|
|
|
|
try:
|
|
|
|
if method_name not in link.history:
|
|
|
|
link.history[method_name] = []
|
2020-06-30 06:04:16 +00:00
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
if should_run(link, out_dir) or overwrite:
|
|
|
|
log_archive_method_started(method_name)
|
|
|
|
|
|
|
|
result = method_function(link=link, out_dir=out_dir)
|
|
|
|
|
|
|
|
link.history[method_name].append(result)
|
|
|
|
|
|
|
|
stats[result.status] += 1
|
|
|
|
log_archive_method_finished(result)
|
|
|
|
else:
|
|
|
|
stats['skipped'] += 1
|
|
|
|
except Exception as e:
|
|
|
|
raise Exception('Exception in archive_methods.save_{}(Link(url={}))'.format(
|
|
|
|
method_name,
|
|
|
|
link.url,
|
|
|
|
)) from e
|
|
|
|
|
|
|
|
# print(' ', stats)
|
|
|
|
|
2020-07-28 09:55:09 +00:00
|
|
|
try:
|
|
|
|
latest_title = link.history['title'][-1].output.strip()
|
|
|
|
if latest_title and len(latest_title) >= len(link.title or ''):
|
|
|
|
link = link.overwrite(title=latest_title)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
2020-07-29 16:19:06 +00:00
|
|
|
write_link_details(link, out_dir=out_dir, skip_sql_index=skip_index)
|
|
|
|
if not skip_index:
|
|
|
|
patch_main_index(link)
|
2020-06-30 06:04:16 +00:00
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
# # If any changes were made, update the main links index json and html
|
|
|
|
# was_changed = stats['succeeded'] or stats['failed']
|
|
|
|
# if was_changed:
|
|
|
|
# patch_main_index(link)
|
|
|
|
|
|
|
|
log_link_archiving_finished(link, link.link_dir, is_new, stats)
|
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
try:
|
|
|
|
write_link_details(link, out_dir=link.link_dir)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
raise
|
|
|
|
|
|
|
|
except Exception as err:
|
|
|
|
print(' ! Failed to archive link: {}: {}'.format(err.__class__.__name__, err))
|
|
|
|
raise
|
|
|
|
|
|
|
|
return link
|
2020-07-13 15:26:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
@enforce_types
|
2020-07-31 14:05:40 +00:00
|
|
|
def archive_links(links: List[Link], overwrite: bool=False, methods: Optional[Iterable[str]]=None, out_dir: Optional[str]=None) -> List[Link]:
|
2020-07-13 15:26:30 +00:00
|
|
|
if not links:
|
|
|
|
return []
|
|
|
|
|
|
|
|
log_archiving_started(len(links))
|
|
|
|
idx: int = 0
|
|
|
|
link: Link = links[0]
|
|
|
|
try:
|
|
|
|
for idx, link in enumerate(links):
|
2020-07-31 14:05:40 +00:00
|
|
|
archive_link(link, overwrite=overwrite, methods=methods, out_dir=link.link_dir)
|
2020-07-13 15:26:30 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
log_archiving_paused(len(links), idx, link.timestamp)
|
|
|
|
raise SystemExit(0)
|
|
|
|
except BaseException:
|
|
|
|
print()
|
|
|
|
raise
|
|
|
|
|
|
|
|
log_archiving_finished(len(links))
|
|
|
|
return links
|