1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

better detect missing dependencies on startup

This commit is contained in:
Nick Sweeting 2020-08-18 04:38:13 -04:00
parent b681a477ae
commit 92de20af15
3 changed files with 28 additions and 15 deletions

View file

@ -799,27 +799,40 @@ def check_system_config(config: ConfigDict=CONFIG) -> None:
def dependency_additional_info(dependency: str) -> str:
if dependency == "SINGLEFILE_BINARY":
return "Please follow the installation instructions at https://github.com/gildas-lormeau/SingleFile/tree/master/cli and set SINGLEFILE_BINARY or set USE_SINGLEFILE=false"
return (
"npm install -g git+https://github.com/gildas-lormeau/SingleFile.git"
"\n and set SINGLEFILE_BINARY=$(which single-file)"
"\n or set USE_SINGLEFILE=False"
)
if dependency == "READABILITY_BINARY":
return (
"npm install -g git+https://github.com/pirate/readability-extractor.git"
"\n and set READABILITY_BINARY=$(which readability-extractor)"
"\n or set USE_READABILITY=False"
)
return ""
def check_dependencies(config: ConfigDict=CONFIG, show_help: bool=True) -> None:
invalid = [
'{}: {} ({}). {}'.format(name, info['path'] or 'unable to find binary', info['version'] or 'unable to detect version',
dependency_additional_info(name))
for name, info in config['DEPENDENCIES'].items()
(name, info) for name, info in config['DEPENDENCIES'].items()
if info['enabled'] and not info['is_valid']
]
if invalid:
stderr('[X] Missing some required dependencies.', color='red')
stderr()
stderr(' {}'.format('\n '.join(invalid)))
if show_help:
if invalid and show_help:
stderr(f'[!] Warning: Missing {len(invalid)} recommended dependencies', color='lightyellow')
for name, info in invalid:
stderr(
'{}: {} ({})'.format(
name,
info['path'] or 'unable to find binary',
info['version'] or 'unable to detect version',
)
)
stderr(f' {dependency_additional_info(name)}')
stderr()
stderr(' To get more info on dependency status run:')
stderr(' archivebox --version')
raise SystemExit(2)
stderr('To get more info on dependencies run:')
stderr(' archivebox --version')
stderr('')
if config['TIMEOUT'] < 5:
stderr()

View file

@ -51,7 +51,7 @@ def should_save_readability(link: Link, out_dir: Optional[str]=None) -> bool:
return False
output = Path(out_dir or link.link_dir) / 'readability'
return SAVE_READABILITY and (not output.exists())
return SAVE_READABILITY and READABILITY_VERSION and (not output.exists())
@enforce_types

View file

@ -29,7 +29,7 @@ def should_save_singlefile(link: Link, out_dir: Optional[str]=None) -> bool:
return False
output = Path(out_dir or link.link_dir) / 'singlefile.html'
return SAVE_SINGLEFILE and (not output.exists())
return SAVE_SINGLEFILE and SINGLEFILE_VERSION and (not output.exists())
@enforce_types