cleanup archive.py
This commit is contained in:
parent
3f3531ed4c
commit
77ab8ebda6
1 changed files with 41 additions and 30 deletions
71
archive.py
71
archive.py
|
@ -7,8 +7,8 @@ import sys
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
from parse import parse_links
|
||||||
from links import validate_links
|
from links import validate_links
|
||||||
from parse import parse_export
|
|
||||||
from archive_methods import archive_links, _RESULTS_TOTALS
|
from archive_methods import archive_links, _RESULTS_TOTALS
|
||||||
from index import (
|
from index import (
|
||||||
write_links_index,
|
write_links_index,
|
||||||
|
@ -27,39 +27,18 @@ from util import (
|
||||||
download_url,
|
download_url,
|
||||||
check_dependencies,
|
check_dependencies,
|
||||||
progress,
|
progress,
|
||||||
|
cleanup_archive,
|
||||||
)
|
)
|
||||||
|
|
||||||
DESCRIPTION = 'Bookmark Archiver: Create a browsable html archive of a list of links.'
|
__DESCRIPTION__ = 'Bookmark Archiver: Create a browsable html archive of a list of links.'
|
||||||
__DOCUMENTATION__ = 'https://github.com/pirate/bookmark-archiver'
|
__DOCUMENTATION__ = 'https://github.com/pirate/bookmark-archiver'
|
||||||
|
|
||||||
|
|
||||||
|
def update_archive(export_path, links, resume=None, append=True):
|
||||||
def update_archive(export_path, resume=None, append=True):
|
"""update or create index.html+json given a path to an export file containing new links"""
|
||||||
"""update or create index.html and download archive of all links"""
|
|
||||||
|
|
||||||
start_ts = datetime.now().timestamp()
|
start_ts = datetime.now().timestamp()
|
||||||
|
|
||||||
# parse an validate the export file
|
|
||||||
new_links = validate_links(parse_export(export_path))
|
|
||||||
|
|
||||||
# load existing links if archive folder is present
|
|
||||||
if append:
|
|
||||||
existing_links = parse_json_links_index(HTML_FOLDER)
|
|
||||||
links = validate_links(existing_links + new_links)
|
|
||||||
else:
|
|
||||||
existing_links = []
|
|
||||||
|
|
||||||
# merge existing links and new links
|
|
||||||
num_new_links = len(links) - len(existing_links)
|
|
||||||
print('[*] [{}] Adding {} new links from {} to index'.format(
|
|
||||||
datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
|
|
||||||
num_new_links,
|
|
||||||
export_path,
|
|
||||||
))
|
|
||||||
|
|
||||||
# write link index html & json
|
|
||||||
write_links_index(HTML_FOLDER, links)
|
|
||||||
|
|
||||||
# loop over links and archive them
|
# loop over links and archive them
|
||||||
archive_links(ARCHIVE_FOLDER, links, export_path, resume=resume)
|
archive_links(ARCHIVE_FOLDER, links, export_path, resume=resume)
|
||||||
|
|
||||||
|
@ -73,16 +52,43 @@ def update_archive(export_path, resume=None, append=True):
|
||||||
duration,
|
duration,
|
||||||
ANSI['reset'],
|
ANSI['reset'],
|
||||||
))
|
))
|
||||||
print(' - {} skipped'.format(_RESULTS_TOTALS['skipped']))
|
print(' - {} entries skipped'.format(_RESULTS_TOTALS['skipped']))
|
||||||
print(' - {} updates'.format(_RESULTS_TOTALS['succeded']))
|
print(' - {} entries updated'.format(_RESULTS_TOTALS['succeded']))
|
||||||
print(' - {} errors'.format(_RESULTS_TOTALS['failed']))
|
print(' - {} errors'.format(_RESULTS_TOTALS['failed']))
|
||||||
|
|
||||||
|
|
||||||
|
def update_index(export_path, resume=None, append=True):
|
||||||
|
"""handling parsing new links into the json index, returns a set of clean links"""
|
||||||
|
|
||||||
|
# parse an validate the export file
|
||||||
|
new_links = validate_links(parse_links(export_path))
|
||||||
|
|
||||||
|
# load existing links if archive folder is present
|
||||||
|
existing_links = []
|
||||||
|
if append:
|
||||||
|
existing_links = parse_json_links_index(HTML_FOLDER)
|
||||||
|
links = validate_links(existing_links + new_links)
|
||||||
|
|
||||||
|
|
||||||
|
# merge existing links and new links
|
||||||
|
num_new_links = len(links) - len(existing_links)
|
||||||
|
print('[*] [{}] Adding {} new links from {} to index'.format(
|
||||||
|
datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
|
||||||
|
num_new_links,
|
||||||
|
export_path,
|
||||||
|
))
|
||||||
|
|
||||||
|
# write link index html & json
|
||||||
|
write_links_index(HTML_FOLDER, links)
|
||||||
|
|
||||||
|
return links
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
argc = len(sys.argv)
|
argc = len(sys.argv)
|
||||||
|
|
||||||
if argc < 2 or sys.argv[1] in ('-h', '--help', 'help'):
|
if argc < 2 or sys.argv[1] in ('-h', '--help', 'help'):
|
||||||
print(DESCRIPTION)
|
print(__DESCRIPTION__)
|
||||||
print("Documentation: {}".format(__DOCUMENTATION__))
|
print("Documentation: {}".format(__DOCUMENTATION__))
|
||||||
print("")
|
print("")
|
||||||
print("Usage:")
|
print("Usage:")
|
||||||
|
@ -96,4 +102,9 @@ if __name__ == '__main__':
|
||||||
if any(export_path.startswith(s) for s in ('http://', 'https://', 'ftp://')):
|
if any(export_path.startswith(s) for s in ('http://', 'https://', 'ftp://')):
|
||||||
export_path = download_url(export_path)
|
export_path = download_url(export_path)
|
||||||
|
|
||||||
update_archive(export_path, resume=resume_from)
|
links = update_index(export_path, resume=resume_from, append=True)
|
||||||
|
|
||||||
|
# make sure folder structure is sane
|
||||||
|
cleanup_archive(ARCHIVE_FOLDER, links)
|
||||||
|
raise SystemExit(0)
|
||||||
|
update_archive(export_path, links, resume=resume_from, append=True)
|
||||||
|
|
Loading…
Add table
Reference in a new issue