1
0
Fork 0
mirror of synced 2024-06-18 18:34:51 +12:00
ArchiveBox/archivebox/legacy/config.py

284 lines
13 KiB
Python
Raw Normal View History

import os
import re
2017-07-04 22:48:12 +12:00
import sys
import django
2017-07-06 09:33:51 +12:00
import shutil
2017-07-04 22:48:12 +12:00
2019-03-31 13:49:45 +13:00
from typing import Optional
from subprocess import run, PIPE, DEVNULL
2019-03-26 22:31:27 +13:00
2017-10-23 22:57:34 +13:00
# ******************************************************************************
2019-03-13 05:48:46 +13:00
# Documentation: https://github.com/pirate/ArchiveBox/wiki/Configuration
# Use the 'env' command to pass config options to ArchiveBox. e.g.:
# env USE_COLOR=True CHROME_BINARY=google-chrome ./archive export.html
2017-10-23 22:57:34 +13:00
# ******************************************************************************
2017-07-06 09:33:51 +12:00
2019-03-13 05:48:46 +13:00
IS_TTY = sys.stdout.isatty()
2017-07-06 09:33:51 +12:00
USE_COLOR = os.getenv('USE_COLOR', str(IS_TTY) ).lower() == 'true'
SHOW_PROGRESS = os.getenv('SHOW_PROGRESS', str(IS_TTY) ).lower() == 'true'
2019-03-26 22:31:27 +13:00
OUTPUT_DIR = os.getenv('OUTPUT_DIR', '')
2019-02-22 09:47:15 +13:00
ONLY_NEW = os.getenv('ONLY_NEW', 'False' ).lower() == 'true'
TIMEOUT = int(os.getenv('TIMEOUT', '60'))
2019-03-26 22:31:27 +13:00
MEDIA_TIMEOUT = int(os.getenv('MEDIA_TIMEOUT', '3600'))
2019-02-22 09:47:15 +13:00
OUTPUT_PERMISSIONS = os.getenv('OUTPUT_PERMISSIONS', '755' )
FOOTER_INFO = os.getenv('FOOTER_INFO', 'Content is hosted for personal archiving purposes only. Contact server owner for any takedown requests.',)
2019-03-31 08:36:54 +13:00
URL_BLACKLIST = os.getenv('URL_BLACKLIST', None)
FETCH_WGET = os.getenv('FETCH_WGET', 'True' ).lower() == 'true'
FETCH_WGET_REQUISITES = os.getenv('FETCH_WGET_REQUISITES', 'True' ).lower() == 'true'
FETCH_PDF = os.getenv('FETCH_PDF', 'True' ).lower() == 'true'
FETCH_SCREENSHOT = os.getenv('FETCH_SCREENSHOT', 'True' ).lower() == 'true'
2018-06-11 10:45:41 +12:00
FETCH_DOM = os.getenv('FETCH_DOM', 'True' ).lower() == 'true'
FETCH_WARC = os.getenv('FETCH_WARC', 'True' ).lower() == 'true'
2019-01-11 23:18:49 +13:00
FETCH_GIT = os.getenv('FETCH_GIT', 'True' ).lower() == 'true'
2019-01-26 14:38:35 +13:00
FETCH_MEDIA = os.getenv('FETCH_MEDIA', 'True' ).lower() == 'true'
FETCH_FAVICON = os.getenv('FETCH_FAVICON', 'True' ).lower() == 'true'
FETCH_TITLE = os.getenv('FETCH_TITLE', 'True' ).lower() == 'true'
SUBMIT_ARCHIVE_DOT_ORG = os.getenv('SUBMIT_ARCHIVE_DOT_ORG', 'True' ).lower() == 'true'
2019-01-12 16:48:09 +13:00
CHECK_SSL_VALIDITY = os.getenv('CHECK_SSL_VALIDITY', 'True' ).lower() == 'true'
RESOLUTION = os.getenv('RESOLUTION', '1440,2000' )
GIT_DOMAINS = os.getenv('GIT_DOMAINS', 'github.com,bitbucket.org,gitlab.com').split(',')
WGET_USER_AGENT = os.getenv('WGET_USER_AGENT', 'ArchiveBox/{VERSION} (+https://github.com/pirate/ArchiveBox/) wget/{WGET_VERSION}')
2019-02-22 09:47:15 +13:00
COOKIES_FILE = os.getenv('COOKIES_FILE', None)
2019-02-22 06:57:16 +13:00
CHROME_USER_DATA_DIR = os.getenv('CHROME_USER_DATA_DIR', None)
CHROME_HEADLESS = os.getenv('CHROME_HEADLESS', 'True' ).lower() == 'true'
2019-03-20 06:15:52 +13:00
CHROME_USER_AGENT = os.getenv('CHROME_USER_AGENT', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36')
2019-03-31 13:49:45 +13:00
CHROME_SANDBOX = os.getenv('CHROME_SANDBOX', 'True' ).lower() == 'true'
2019-03-27 16:25:07 +13:00
USE_CURL = os.getenv('USE_CURL', 'True' ).lower() == 'true'
USE_WGET = os.getenv('USE_WGET', 'True' ).lower() == 'true'
USE_CHROME = os.getenv('USE_CHROME', 'True' ).lower() == 'true'
2019-02-22 09:47:15 +13:00
CURL_BINARY = os.getenv('CURL_BINARY', 'curl')
GIT_BINARY = os.getenv('GIT_BINARY', 'git')
WGET_BINARY = os.getenv('WGET_BINARY', 'wget')
YOUTUBEDL_BINARY = os.getenv('YOUTUBEDL_BINARY', 'youtube-dl')
CHROME_BINARY = os.getenv('CHROME_BINARY', None)
2017-10-23 22:57:34 +13:00
# ******************************************************************************
2019-03-28 09:44:00 +13:00
### Terminal Configuration
TERM_WIDTH = lambda: shutil.get_terminal_size((100, 10)).columns
ANSI = {
'reset': '\033[00;00m',
'lightblue': '\033[01;30m',
'lightyellow': '\033[01;33m',
'lightred': '\033[01;35m',
'red': '\033[01;31m',
'green': '\033[01;32m',
'blue': '\033[01;34m',
'white': '\033[01;37m',
'black': '\033[01;30m',
}
if not USE_COLOR:
# dont show colors if USE_COLOR is False
ANSI = {k: '' for k in ANSI.keys()}
REPO_DIR = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..'))
2019-03-26 22:31:27 +13:00
if OUTPUT_DIR:
2019-04-11 19:41:05 +12:00
OUTPUT_DIR = os.path.abspath(os.path.expanduser(OUTPUT_DIR))
2019-03-26 22:31:27 +13:00
else:
OUTPUT_DIR = os.path.abspath(os.curdir)
2019-03-09 11:46:14 +13:00
ARCHIVE_DIR_NAME = 'archive'
SOURCES_DIR_NAME = 'sources'
DATABASE_DIR_NAME = 'database'
2019-03-09 11:46:14 +13:00
ARCHIVE_DIR = os.path.join(OUTPUT_DIR, ARCHIVE_DIR_NAME)
SOURCES_DIR = os.path.join(OUTPUT_DIR, SOURCES_DIR_NAME)
DATABASE_DIR = os.path.join(OUTPUT_DIR, DATABASE_DIR_NAME)
2019-04-11 19:40:37 +12:00
DATABASE_FILE = os.path.join(DATABASE_DIR, 'database.sqlite3')
2019-03-09 11:46:14 +13:00
PYTHON_DIR = os.path.join(REPO_DIR, 'archivebox')
LEGACY_DIR = os.path.join(PYTHON_DIR, 'legacy')
TEMPLATES_DIR = os.path.join(LEGACY_DIR, 'templates')
2019-03-09 11:46:14 +13:00
2019-03-26 22:31:27 +13:00
if COOKIES_FILE:
2019-04-11 19:41:05 +12:00
COOKIES_FILE = os.path.abspath(os.path.expanduser(COOKIES_FILE))
if CHROME_USER_DATA_DIR:
CHROME_USER_DATA_DIR = os.path.abspath(os.path.expanduser(CHROME_USER_DATA_DIR))
2019-03-26 22:31:27 +13:00
2019-03-31 13:49:45 +13:00
URL_BLACKLIST_PTN = re.compile(URL_BLACKLIST, re.IGNORECASE) if URL_BLACKLIST else None
2019-03-31 07:56:19 +13:00
2019-03-23 16:00:53 +13:00
########################### Environment & Dependencies #########################
2019-03-28 09:44:00 +13:00
VERSION = open(os.path.join(REPO_DIR, 'VERSION'), 'r').read().strip()
GIT_SHA = VERSION.split('+')[-1] or 'unknown'
2019-03-28 09:44:00 +13:00
### Check Python environment
python_vers = float('{}.{}'.format(sys.version_info.major, sys.version_info.minor))
if python_vers < 3.5:
print('{}[X] Python version is not new enough: {} (>3.5 is required){}'.format(ANSI['red'], python_vers, ANSI['reset']))
print(' See https://github.com/pirate/ArchiveBox/wiki/Troubleshooting#python for help upgrading your Python installation.')
raise SystemExit(1)
if sys.stdout.encoding.upper() not in ('UTF-8', 'UTF8'):
print('[X] Your system is running python3 scripts with a bad locale setting: {} (it should be UTF-8).'.format(sys.stdout.encoding))
print(' To fix it, add the line "export PYTHONIOENCODING=UTF-8" to your ~/.bashrc file (without quotes)')
print('')
print(' Confirm that it\'s fixed by opening a new shell and running:')
print(' python3 -c "import sys; print(sys.stdout.encoding)" # should output UTF-8')
print('')
print(' Alternatively, run this script with:')
print(' env PYTHONIOENCODING=UTF-8 ./archive.py export.html')
2019-03-26 22:31:27 +13:00
# ******************************************************************************
# ***************************** Helper Functions *******************************
2019-03-26 22:31:27 +13:00
# ******************************************************************************
2019-03-31 08:03:31 +13:00
def bin_version(binary: str) -> str:
2019-03-26 22:31:27 +13:00
"""check the presence and return valid version line of a specified binary"""
2019-03-28 09:44:00 +13:00
if not shutil.which(binary):
2019-03-26 22:31:27 +13:00
print('{red}[X] Missing dependency: wget{reset}'.format(**ANSI))
print(' Install it, then confirm it works with: {} --version'.format(binary))
print(' See https://github.com/pirate/ArchiveBox/wiki/Install for help.')
raise SystemExit(1)
try:
version_str = run([binary, "--version"], stdout=PIPE, cwd=REPO_DIR).stdout.strip().decode()
return version_str.split('\n')[0].strip()
except Exception:
print('{red}[X] Unable to find a working version of {cmd}, is it installed and in your $PATH?'.format(cmd=binary, **ANSI))
raise SystemExit(1)
2019-03-31 13:49:45 +13:00
def find_chrome_binary() -> str:
2019-03-26 22:31:27 +13:00
"""find any installed chrome binaries in the default locations"""
# Precedence: Chromium, Chrome, Beta, Canary, Unstable, Dev
2019-03-31 08:03:31 +13:00
# make sure data dir finding precedence order always matches binary finding order
2019-03-26 22:31:27 +13:00
default_executable_paths = (
'chromium-browser',
'chromium',
'/Applications/Chromium.app/Contents/MacOS/Chromium',
'google-chrome',
'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
'google-chrome-stable',
'google-chrome-beta',
'google-chrome-canary',
'/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary',
'google-chrome-unstable',
'google-chrome-dev',
)
for name in default_executable_paths:
full_path_exists = shutil.which(name)
if full_path_exists:
return name
print('{red}[X] Unable to find a working version of Chrome/Chromium, is it installed and in your $PATH?'.format(**ANSI))
raise SystemExit(1)
2019-03-26 22:31:27 +13:00
def find_chrome_data_dir() -> Optional[str]:
"""find any installed chrome user data directories in the default locations"""
# Precedence: Chromium, Chrome, Beta, Canary, Unstable, Dev
2019-03-31 08:03:31 +13:00
# make sure data dir finding precedence order always matches binary finding order
2019-03-26 22:31:27 +13:00
default_profile_paths = (
'~/.config/chromium',
'~/Library/Application Support/Chromium',
'~/AppData/Local/Chromium/User Data',
'~/.config/google-chrome',
'~/Library/Application Support/Google/Chrome',
'~/AppData/Local/Google/Chrome/User Data',
'~/.config/google-chrome-stable',
'~/.config/google-chrome-beta',
'~/Library/Application Support/Google/Chrome Canary',
'~/AppData/Local/Google/Chrome SxS/User Data',
'~/.config/google-chrome-unstable',
'~/.config/google-chrome-dev',
)
for path in default_profile_paths:
full_path = os.path.expanduser(path)
if os.path.exists(full_path):
return full_path
return None
# ******************************************************************************
# ************************ Environment & Dependencies **************************
# ******************************************************************************
2019-02-22 06:57:16 +13:00
try:
### Get Django version
DJANGO_BINARY = django.__file__.replace('__init__.py', 'bin/django-admin.py')
DJANGO_VERSION = '{}.{}.{} {} ({})'.format(*django.VERSION)
### Make sure curl is installed
2019-03-27 16:25:07 +13:00
if USE_CURL:
USE_CURL = FETCH_FAVICON or SUBMIT_ARCHIVE_DOT_ORG
else:
FETCH_FAVICON = SUBMIT_ARCHIVE_DOT_ORG = False
CURL_VERSION = None
if USE_CURL:
2019-03-31 08:03:31 +13:00
CURL_VERSION = bin_version(CURL_BINARY)
### Make sure wget is installed and calculate version
2019-03-27 16:25:07 +13:00
if USE_WGET:
USE_WGET = FETCH_WGET or FETCH_WARC
else:
FETCH_WGET = FETCH_WARC = False
WGET_VERSION = None
2019-03-28 03:36:29 +13:00
WGET_AUTO_COMPRESSION = False
if USE_WGET:
2019-03-31 08:03:31 +13:00
WGET_VERSION = bin_version(WGET_BINARY)
WGET_AUTO_COMPRESSION = not run([WGET_BINARY, "--compression=auto", "--help"], stdout=DEVNULL, stderr=DEVNULL).returncode
2019-03-26 22:31:27 +13:00
WGET_USER_AGENT = WGET_USER_AGENT.format(
VERSION=VERSION,
2019-03-26 22:31:27 +13:00
WGET_VERSION=WGET_VERSION or '',
)
### Make sure git is installed
GIT_VERSION = None
if FETCH_GIT:
2019-03-31 08:03:31 +13:00
GIT_VERSION = bin_version(GIT_BINARY)
### Make sure youtube-dl is installed
YOUTUBEDL_VERSION = None
if FETCH_MEDIA:
2019-03-31 08:03:31 +13:00
YOUTUBEDL_VERSION = bin_version(YOUTUBEDL_BINARY)
### Make sure chrome is installed and calculate version
2019-03-27 16:25:07 +13:00
if USE_CHROME:
USE_CHROME = FETCH_PDF or FETCH_SCREENSHOT or FETCH_DOM
else:
FETCH_PDF = FETCH_SCREENSHOT = FETCH_DOM = False
2019-03-28 09:44:00 +13:00
2019-03-31 13:49:45 +13:00
if not CHROME_BINARY:
2019-03-28 09:44:00 +13:00
CHROME_BINARY = find_chrome_binary() or 'chromium-browser'
2019-03-26 22:31:27 +13:00
CHROME_VERSION = None
if USE_CHROME:
2019-03-27 16:25:07 +13:00
if CHROME_BINARY:
2019-03-31 08:03:31 +13:00
CHROME_VERSION = bin_version(CHROME_BINARY)
2019-03-27 16:25:07 +13:00
# print('[i] Using Chrome binary: {}'.format(shutil.which(CHROME_BINARY) or CHROME_BINARY))
2019-03-26 22:31:27 +13:00
2019-03-27 16:25:07 +13:00
if CHROME_USER_DATA_DIR is None:
CHROME_USER_DATA_DIR = find_chrome_data_dir()
# print('[i] Using Chrome data dir: {}'.format(os.path.abspath(CHROME_USER_DATA_DIR)))
2019-03-26 22:31:27 +13:00
CHROME_OPTIONS = {
'TIMEOUT': TIMEOUT,
'RESOLUTION': RESOLUTION,
'CHECK_SSL_VALIDITY': CHECK_SSL_VALIDITY,
'CHROME_BINARY': CHROME_BINARY,
'CHROME_HEADLESS': CHROME_HEADLESS,
'CHROME_SANDBOX': CHROME_SANDBOX,
'CHROME_USER_AGENT': CHROME_USER_AGENT,
'CHROME_USER_DATA_DIR': CHROME_USER_DATA_DIR,
}
# PYPPETEER_ARGS = {
# 'headless': CHROME_HEADLESS,
# 'ignoreHTTPSErrors': not CHECK_SSL_VALIDITY,
# # 'executablePath': CHROME_BINARY,
# }
except KeyboardInterrupt:
raise SystemExit(1)
2019-03-23 16:00:53 +13:00
except:
2019-03-26 22:31:27 +13:00
print('[X] There was an error while reading configuration. Your archive data is unaffected.')
2019-03-23 16:00:53 +13:00
raise