1
0
Fork 0
mirror of synced 2024-07-05 06:20:37 +12:00
ArchiveBox/archivebox/legacy/archive_methods.py

695 lines
21 KiB
Python
Raw Normal View History

import os
from typing import Dict, List, Tuple, Optional
2018-04-25 19:49:26 +12:00
from collections import defaultdict
from datetime import datetime
from .schema import Link, ArchiveResult, ArchiveOutput
from .index import (
load_link_details,
write_link_details,
patch_main_index,
)
from .config import (
2019-02-22 09:47:15 +13:00
CURL_BINARY,
GIT_BINARY,
WGET_BINARY,
YOUTUBEDL_BINARY,
FETCH_FAVICON,
FETCH_TITLE,
FETCH_WGET,
FETCH_WGET_REQUISITES,
FETCH_PDF,
FETCH_SCREENSHOT,
2018-06-11 10:45:41 +12:00
FETCH_DOM,
2019-01-12 01:02:49 +13:00
FETCH_WARC,
2019-01-11 23:18:49 +13:00
FETCH_GIT,
2019-01-11 23:52:29 +13:00
FETCH_MEDIA,
SUBMIT_ARCHIVE_DOT_ORG,
TIMEOUT,
2019-01-12 00:33:35 +13:00
MEDIA_TIMEOUT,
2019-01-11 23:27:25 +13:00
GIT_DOMAINS,
VERSION,
2019-03-21 18:28:12 +13:00
WGET_USER_AGENT,
CHECK_SSL_VALIDITY,
COOKIES_FILE,
CURL_VERSION,
WGET_VERSION,
CHROME_VERSION,
GIT_VERSION,
YOUTUBEDL_VERSION,
2019-03-28 03:36:29 +13:00
WGET_AUTO_COMPRESSION,
)
from .util import (
2019-03-27 16:25:07 +13:00
enforce_types,
2019-02-28 09:42:49 +13:00
domain,
2019-03-21 18:28:12 +13:00
extension,
without_query,
2019-02-22 10:03:19 +13:00
without_fragment,
fetch_page_title,
2019-03-21 14:12:43 +13:00
is_static_file,
TimedProgress,
chmod_file,
wget_output_path,
2019-03-21 18:28:12 +13:00
chrome_args,
2019-03-26 20:20:41 +13:00
run, PIPE, DEVNULL,
2019-03-21 18:28:12 +13:00
)
from .logs import (
2019-03-21 18:28:12 +13:00
log_link_archiving_started,
2019-03-23 07:01:27 +13:00
log_link_archiving_finished,
2019-03-23 08:09:39 +13:00
log_archive_method_started,
log_archive_method_finished,
)
2019-03-28 09:44:00 +13:00
class ArchiveError(Exception):
def __init__(self, message, hints=None):
super().__init__(message)
self.hints = hints
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def archive_link(link: Link, out_dir: Optional[str]=None) -> Link:
"""download the DOM, PDF, and a screenshot into a folder named after the link's timestamp"""
2017-10-23 22:57:34 +13:00
ARCHIVE_METHODS = (
('title', should_fetch_title, fetch_title),
('favicon', should_fetch_favicon, fetch_favicon),
('wget', should_fetch_wget, fetch_wget),
('pdf', should_fetch_pdf, fetch_pdf),
('screenshot', should_fetch_screenshot, fetch_screenshot),
('dom', should_fetch_dom, fetch_dom),
('git', should_fetch_git, fetch_git),
('media', should_fetch_media, fetch_media),
('archive_org', should_fetch_archive_dot_org, archive_dot_org),
)
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
try:
2019-04-17 18:23:45 +12:00
is_new = not os.path.exists(out_dir)
2019-03-21 18:28:12 +13:00
if is_new:
2019-04-17 18:23:45 +12:00
os.makedirs(out_dir)
2019-03-21 18:28:12 +13:00
2019-04-17 18:23:45 +12:00
link = load_link_details(link, out_dir=out_dir)
log_link_archiving_started(link, out_dir, is_new)
2019-03-27 20:49:39 +13:00
link = link.overwrite(updated=datetime.now())
2019-03-23 16:00:43 +13:00
stats = {'skipped': 0, 'succeeded': 0, 'failed': 0}
2019-01-11 23:18:49 +13:00
for method_name, should_run, method_function in ARCHIVE_METHODS:
2019-03-27 20:49:39 +13:00
try:
if method_name not in link.history:
link.history[method_name] = []
2019-04-17 18:23:45 +12:00
if should_run(link, out_dir):
2019-03-27 20:49:39 +13:00
log_archive_method_started(method_name)
2019-04-17 18:23:45 +12:00
result = method_function(link=link, out_dir=out_dir)
2019-03-27 20:49:39 +13:00
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.fetch_{}(Link(url={}))'.format(
method_name,
link.url,
)) from e
2019-03-23 16:00:43 +13:00
# print(' ', stats)
2019-03-23 07:01:27 +13:00
2019-04-17 18:23:45 +12:00
write_link_details(link, out_dir=link.link_dir)
patch_main_index(link)
2019-03-27 20:49:39 +13:00
2019-03-31 16:47:56 +13:00
# # If any changes were made, update the main links index json and html
# was_changed = stats['succeeded'] or stats['failed']
# if was_changed:
2019-04-17 18:23:45 +12:00
# patch_main_index(link)
2019-03-27 20:49:39 +13:00
log_link_archiving_finished(link, link.link_dir, is_new, stats)
except KeyboardInterrupt:
2019-03-28 13:49:09 +13:00
try:
2019-04-17 18:23:45 +12:00
write_link_details(link, out_dir=link.link_dir)
2019-03-28 13:49:09 +13:00
except:
pass
raise
2019-03-23 07:01:27 +13:00
except Exception as err:
2019-02-05 17:02:40 +13:00
print(' ! Failed to archive link: {}: {}'.format(err.__class__.__name__, err))
raise
2017-10-23 22:57:34 +13:00
return link
2019-03-23 08:09:39 +13:00
### Archive Method Functions
2019-03-21 18:28:12 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_title(link: Link, out_dir: Optional[str]=None) -> bool:
2019-03-21 18:28:12 +13:00
# if link already has valid title, skip it
if link.title and not link.title.lower().startswith('http'):
return False
2019-03-21 18:28:12 +13:00
if is_static_file(link.url):
return False
return FETCH_TITLE
2019-03-21 18:28:12 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_title(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
"""try to guess the page's title from its content"""
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = None
cmd = [
CURL_BINARY,
link.url,
'|',
'grep',
2019-03-31 13:49:45 +13:00
'<title',
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
2019-03-21 18:28:12 +13:00
try:
output = fetch_page_title(link.url, timeout=timeout, progress=False)
if not output:
raise ArchiveError('Unable to detect page title')
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-21 18:28:12 +13:00
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CURL_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-21 18:28:12 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_favicon(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if os.path.exists(os.path.join(out_dir, 'favicon.ico')):
return False
return FETCH_FAVICON
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_favicon(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
2019-03-21 18:28:12 +13:00
"""download site favicon from google's favicon api"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'favicon.ico'
cmd = [
2019-03-21 18:28:12 +13:00
CURL_BINARY,
'--max-time', str(timeout),
'--location',
2019-03-31 13:49:45 +13:00
'--output', str(output),
*([] if CHECK_SSL_VALIDITY else ['--insecure']),
'https://www.google.com/s2/favicons?domain={}'.format(domain(link.url)),
2019-03-21 18:28:12 +13:00
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
2019-03-21 18:28:12 +13:00
try:
2019-04-17 18:23:45 +12:00
run(cmd, stdout=PIPE, stderr=PIPE, cwd=out_dir, timeout=timeout)
chmod_file(output, cwd=out_dir)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-21 18:28:12 +13:00
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CURL_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_wget(link: Link, out_dir: Optional[str]=None) -> bool:
output_path = wget_output_path(link)
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
if output_path and os.path.exists(os.path.join(out_dir, output_path)):
return False
return FETCH_WGET
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_wget(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
"""download full site using wget"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-21 18:28:12 +13:00
if FETCH_WARC:
2019-04-17 18:23:45 +12:00
warc_dir = os.path.join(out_dir, 'warc')
os.makedirs(warc_dir, exist_ok=True)
warc_path = os.path.join('warc', str(int(datetime.now().timestamp())))
# WGET CLI Docs: https://www.gnu.org/software/wget/manual/wget.html
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = None
cmd = [
2019-02-22 09:47:15 +13:00
WGET_BINARY,
# '--server-response', # print headers for better error parsing
2019-01-12 16:13:51 +13:00
'--no-verbose',
'--adjust-extension',
'--convert-links',
'--force-directories',
'--backup-converted',
'--span-hosts',
'--no-parent',
2019-02-07 19:06:28 +13:00
'-e', 'robots=off',
'--restrict-file-names=windows',
'--timeout={}'.format(timeout),
2019-03-31 13:49:45 +13:00
*([] if FETCH_WARC else ['--timestamping']),
*(['--warc-file={}'.format(warc_path)] if FETCH_WARC else []),
*(['--page-requisites'] if FETCH_WGET_REQUISITES else []),
*(['--user-agent={}'.format(WGET_USER_AGENT)] if WGET_USER_AGENT else []),
*(['--load-cookies', COOKIES_FILE] if COOKIES_FILE else []),
*(['--compression=auto'] if WGET_AUTO_COMPRESSION else []),
*([] if CHECK_SSL_VALIDITY else ['--no-check-certificate', '--no-hsts']),
link.url,
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
try:
2019-04-17 18:23:45 +12:00
result = run(cmd, stdout=PIPE, stderr=PIPE, cwd=out_dir, timeout=timeout)
output = wget_output_path(link)
2018-06-11 13:14:46 +12:00
# parse out number of files downloaded from last line of stderr:
# "Downloaded: 76 files, 4.0M in 1.6s (2.52 MB/s)"
output_tail = [
line.strip()
for line in (result.stdout + result.stderr).decode().rsplit('\n', 3)[-3:]
if line.strip()
]
files_downloaded = (
int(output_tail[-1].strip().split(' ', 2)[1] or 0)
if 'Downloaded:' in output_tail[-1]
else 0
)
2018-06-11 13:14:46 +12:00
# Check for common failure cases
if result.returncode > 0 and files_downloaded < 1:
hints = (
'Got wget response code: {}.'.format(result.returncode),
*output_tail,
)
2018-06-18 11:09:01 +12:00
if b'403: Forbidden' in result.stderr:
raise ArchiveError('403 Forbidden (try changing WGET_USER_AGENT)', hints)
2018-06-18 11:09:01 +12:00
if b'404: Not Found' in result.stderr:
raise ArchiveError('404 Not Found', hints)
2018-06-18 11:09:01 +12:00
if b'ERROR 500: Internal Server Error' in result.stderr:
raise ArchiveError('500 Internal Server Error', hints)
raise ArchiveError('Got an error from the server', hints)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=WGET_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_pdf(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'output.pdf')):
return False
return FETCH_PDF
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_pdf(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
"""print PDF of site to file using chrome --headless"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'output.pdf'
cmd = [
*chrome_args(TIMEOUT=timeout),
2017-10-31 00:09:33 +13:00
'--print-to-pdf',
link.url,
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
try:
2019-04-17 18:23:45 +12:00
result = run(cmd, stdout=PIPE, stderr=PIPE, cwd=out_dir, timeout=timeout)
if result.returncode:
hints = (result.stderr or result.stdout).decode()
raise ArchiveError('Failed to print PDF', hints)
2019-04-17 18:23:45 +12:00
chmod_file('output.pdf', cwd=out_dir)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CHROME_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_screenshot(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'screenshot.png')):
return False
return FETCH_SCREENSHOT
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_screenshot(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
"""take screenshot of site using chrome --headless"""
2019-03-31 13:49:45 +13:00
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'screenshot.png'
cmd = [
*chrome_args(TIMEOUT=timeout),
2017-10-31 00:09:33 +13:00
'--screenshot',
link.url,
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
try:
2019-04-17 18:23:45 +12:00
result = run(cmd, stdout=PIPE, stderr=PIPE, cwd=out_dir, timeout=timeout)
if result.returncode:
hints = (result.stderr or result.stdout).decode()
raise ArchiveError('Failed to take screenshot', hints)
2019-04-17 18:23:45 +12:00
chmod_file(output, cwd=out_dir)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CHROME_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_dom(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'output.html')):
return False
return FETCH_DOM
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_dom(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
2018-06-11 10:45:41 +12:00
"""print HTML of site to file using chrome --dump-html"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'output.html'
2019-04-17 18:23:45 +12:00
output_path = os.path.join(out_dir, str(output))
cmd = [
*chrome_args(TIMEOUT=timeout),
2018-06-11 10:45:41 +12:00
'--dump-dom',
link.url
2018-06-11 10:45:41 +12:00
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
2018-06-11 10:45:41 +12:00
try:
with open(output_path, 'w+') as f:
2019-04-17 18:23:45 +12:00
result = run(cmd, stdout=f, stderr=PIPE, cwd=out_dir, timeout=timeout)
2018-06-11 10:45:41 +12:00
if result.returncode:
hints = result.stderr.decode()
raise ArchiveError('Failed to fetch DOM', hints)
2019-04-17 18:23:45 +12:00
chmod_file(output, cwd=out_dir)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2018-06-11 10:45:41 +12:00
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CHROME_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_git(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'git')):
return False
2019-03-21 18:28:12 +13:00
is_clonable_url = (
(domain(link.url) in GIT_DOMAINS)
or (extension(link.url) == 'git')
2019-03-21 18:28:12 +13:00
)
if not is_clonable_url:
return False
return FETCH_GIT
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_git(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
"""download full site using git"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'git'
2019-04-17 18:23:45 +12:00
output_path = os.path.join(out_dir, str(output))
2019-03-21 18:28:12 +13:00
os.makedirs(output_path, exist_ok=True)
cmd = [
2019-03-21 18:28:12 +13:00
GIT_BINARY,
'clone',
'--mirror',
'--recursive',
2019-03-31 13:49:45 +13:00
*([] if CHECK_SSL_VALIDITY else ['-c', 'http.sslVerify=false']),
without_query(without_fragment(link.url)),
2019-01-21 08:08:00 +13:00
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
try:
result = run(cmd, stdout=PIPE, stderr=PIPE, cwd=output_path, timeout=timeout + 1)
2019-03-21 18:28:12 +13:00
if result.returncode == 128:
# ignore failed re-download when the folder already exists
pass
elif result.returncode > 0:
hints = 'Got git response code: {}.'.format(result.returncode)
2019-03-21 18:28:12 +13:00
raise ArchiveError('Failed git download', hints)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=GIT_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-03-23 08:09:39 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_media(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'media')):
return False
return FETCH_MEDIA
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def fetch_media(link: Link, out_dir: Optional[str]=None, timeout: int=MEDIA_TIMEOUT) -> ArchiveResult:
2019-01-11 23:52:29 +13:00
"""Download playlists or individual video, audio, and subtitles using youtube-dl"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'media'
2019-04-17 18:23:45 +12:00
output_path = os.path.join(out_dir, str(output))
os.makedirs(output_path, exist_ok=True)
cmd = [
2019-02-22 09:47:15 +13:00
YOUTUBEDL_BINARY,
2019-01-11 23:52:29 +13:00
'--write-description',
'--write-info-json',
'--write-annotations',
'--yes-playlist',
2019-01-12 00:33:35 +13:00
'--write-thumbnail',
2019-01-11 23:52:29 +13:00
'--no-call-home',
'--no-check-certificate',
2019-01-12 00:33:35 +13:00
'--user-agent',
2019-01-11 23:52:29 +13:00
'--all-subs',
2019-02-22 09:47:15 +13:00
'--extract-audio',
'--keep-video',
'--ignore-errors',
'--geo-bypass',
2019-01-11 23:52:29 +13:00
'--audio-format', 'mp3',
'--audio-quality', '320K',
'--embed-thumbnail',
'--add-metadata',
2019-03-31 13:49:45 +13:00
*([] if CHECK_SSL_VALIDITY else ['--no-check-certificate']),
link.url,
2019-01-11 23:52:29 +13:00
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
2019-01-11 23:52:29 +13:00
try:
result = run(cmd, stdout=PIPE, stderr=PIPE, cwd=output_path, timeout=timeout + 1)
2019-04-17 18:23:45 +12:00
chmod_file(output, cwd=out_dir)
2019-01-11 23:52:29 +13:00
if result.returncode:
2019-02-05 17:08:54 +13:00
if (b'ERROR: Unsupported URL' in result.stderr
or b'HTTP Error 404' in result.stderr
or b'HTTP Error 403' in result.stderr
or b'URL could be a direct video link' in result.stderr
or b'Unable to extract container ID' in result.stderr):
# These happen too frequently on non-media pages to warrant printing to console
2019-01-12 00:33:35 +13:00
pass
else:
hints = (
'Got youtube-dl response code: {}.'.format(result.returncode),
*result.stderr.decode().split('\n'),
)
raise ArchiveError('Failed to download media', hints)
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-01-11 23:52:29 +13:00
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=YOUTUBEDL_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-01-11 23:18:49 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def should_fetch_archive_dot_org(link: Link, out_dir: Optional[str]=None) -> bool:
out_dir = out_dir or link.link_dir
if is_static_file(link.url):
return False
2019-04-17 18:23:45 +12:00
if os.path.exists(os.path.join(out_dir, 'archive.org.txt')):
# if open(path, 'r').read().strip() != 'None':
return False
return SUBMIT_ARCHIVE_DOT_ORG
2019-03-27 16:25:07 +13:00
@enforce_types
2019-04-17 18:23:45 +12:00
def archive_dot_org(link: Link, out_dir: Optional[str]=None, timeout: int=TIMEOUT) -> ArchiveResult:
2019-03-21 18:28:12 +13:00
"""submit site to archive.org for archiving via their service, save returned archive url"""
2019-04-17 18:23:45 +12:00
out_dir = out_dir or link.link_dir
2019-03-31 13:49:45 +13:00
output: ArchiveOutput = 'archive.org.txt'
2019-03-21 18:28:12 +13:00
archive_org_url = None
submit_url = 'https://web.archive.org/save/{}'.format(link.url)
cmd = [
2019-03-21 18:28:12 +13:00
CURL_BINARY,
'--location',
'--head',
'--user-agent', 'ArchiveBox/{} (+https://github.com/pirate/ArchiveBox/)'.format(VERSION), # be nice to the Archive.org people and show them where all this ArchiveBox traffic is coming from
2019-03-21 18:28:12 +13:00
'--max-time', str(timeout),
2019-03-31 13:49:45 +13:00
*([] if CHECK_SSL_VALIDITY else ['--insecure']),
2019-03-21 18:28:12 +13:00
submit_url,
2019-02-22 09:47:15 +13:00
]
status = 'succeeded'
timer = TimedProgress(timeout, prefix=' ')
2019-01-11 23:18:49 +13:00
try:
2019-04-17 18:23:45 +12:00
result = run(cmd, stdout=PIPE, stderr=DEVNULL, cwd=out_dir, timeout=timeout)
2019-03-21 18:28:12 +13:00
content_location, errors = parse_archive_dot_org_response(result.stdout)
if content_location:
archive_org_url = 'https://web.archive.org{}'.format(content_location[0])
elif len(errors) == 1 and 'RobotAccessControlException' in errors[0]:
archive_org_url = None
# raise ArchiveError('Archive.org denied by {}/robots.txt'.format(domain(link.url)))
2019-03-21 18:28:12 +13:00
elif errors:
raise ArchiveError(', '.join(errors))
else:
raise ArchiveError('Failed to find "content-location" URL header in Archive.org response.')
except Exception as err:
status = 'failed'
output = err
finally:
timer.end()
2019-01-11 23:18:49 +13:00
2019-03-31 13:49:45 +13:00
if output and not isinstance(output, Exception):
2019-03-21 18:28:12 +13:00
# instead of writing None when archive.org rejects the url write the
# url to resubmit it to archive.org. This is so when the user visits
# the URL in person, it will attempt to re-archive it, and it'll show the
# nicer error message explaining why the url was rejected if it fails.
archive_org_url = archive_org_url or submit_url
2019-04-17 18:23:45 +12:00
with open(os.path.join(out_dir, str(output)), 'w', encoding='utf-8') as f:
2019-03-21 18:28:12 +13:00
f.write(archive_org_url)
2019-04-17 18:23:45 +12:00
chmod_file('archive.org.txt', cwd=out_dir)
2019-03-21 18:28:12 +13:00
output = archive_org_url
2019-03-26 20:20:41 +13:00
return ArchiveResult(
cmd=cmd,
2019-04-17 18:23:45 +12:00
pwd=out_dir,
cmd_version=CURL_VERSION,
2019-03-26 20:20:41 +13:00
output=output,
status=status,
**timer.stats,
2019-03-26 20:20:41 +13:00
)
2019-01-11 23:18:49 +13:00
2019-03-27 16:25:07 +13:00
@enforce_types
2019-03-26 20:20:41 +13:00
def parse_archive_dot_org_response(response: bytes) -> Tuple[List[str], List[str]]:
2019-03-23 08:09:39 +13:00
# Parse archive.org response headers
2019-03-26 20:20:41 +13:00
headers: Dict[str, List[str]] = defaultdict(list)
2019-03-23 08:09:39 +13:00
# lowercase all the header names and store in dict
for header in response.splitlines():
if b':' not in header or not header.strip():
continue
name, val = header.decode().split(':', 1)
headers[name.lower().strip()].append(val.strip())
2019-03-23 08:09:39 +13:00
# Get successful archive url in "content-location" header or any errors
content_location = headers['content-location']
errors = headers['x-archive-wayback-runtime-error']
return content_location, errors