1
0
Fork 0
mirror of synced 2024-08-19 12:01:40 +12:00
ArchiveBox/archivebox/index.py

288 lines
8.8 KiB
Python
Raw Normal View History

import os
import json
from datetime import datetime
from string import Template
from typing import List, Tuple, Iterator, Optional
2019-03-26 20:20:41 +13:00
from .schema import Link, ArchiveResult
from .config import (
OUTPUT_DIR,
2018-06-11 13:12:55 +12:00
TEMPLATES_DIR,
VERSION,
GIT_SHA,
2018-04-18 01:13:38 +12:00
FOOTER_INFO,
TIMEOUT,
2017-07-06 09:33:51 +12:00
)
from .util import (
merge_links,
urlencode,
2017-10-23 22:58:41 +13:00
derived_link_info,
wget_output_path,
enforce_types,
TimedProgress,
2019-03-28 04:39:51 +13:00
copy_and_overwrite,
atomic_write,
2017-10-23 22:58:41 +13:00
)
from .parse import parse_links
from .links import validate_links
from .logs import (
2019-03-23 08:09:39 +13:00
log_indexing_process_started,
2019-03-21 18:28:12 +13:00
log_indexing_started,
log_indexing_finished,
log_parsing_started,
log_parsing_finished,
)
TITLE_LOADING_MSG = 'Not yet archived...'
### Homepage index for all the links
@enforce_types
def write_links_index(links: List[Link], out_dir: str=OUTPUT_DIR, finished: bool=False) -> None:
"""create index.html file for a given list of links"""
2019-03-23 08:09:39 +13:00
log_indexing_process_started()
2019-03-23 08:09:39 +13:00
log_indexing_started(out_dir, 'index.json')
timer = TimedProgress(TIMEOUT * 2, prefix=' ')
write_json_links_index(links, out_dir=out_dir)
timer.end()
2019-03-21 18:28:12 +13:00
log_indexing_finished(out_dir, 'index.json')
2019-02-07 19:06:21 +13:00
2019-03-23 08:09:39 +13:00
log_indexing_started(out_dir, 'index.html')
timer = TimedProgress(TIMEOUT * 2, prefix=' ')
write_html_links_index(links, out_dir=out_dir, finished=finished)
timer.end()
2019-03-21 18:28:12 +13:00
log_indexing_finished(out_dir, 'index.html')
@enforce_types
2019-03-27 16:25:07 +13:00
def load_links_index(out_dir: str=OUTPUT_DIR, import_path: Optional[str]=None) -> Tuple[List[Link], List[Link]]:
2019-03-21 18:28:12 +13:00
"""parse and load existing index with any new links from import_path merged in"""
2019-03-26 20:20:41 +13:00
existing_links: List[Link] = []
2019-03-21 18:28:12 +13:00
if out_dir:
existing_links = list(parse_json_links_index(out_dir))
2019-03-21 18:28:12 +13:00
2019-03-26 20:20:41 +13:00
new_links: List[Link] = []
2019-03-21 18:28:12 +13:00
if import_path:
# parse and validate the import file
log_parsing_started(import_path)
raw_links, parser_name = parse_links(import_path)
new_links = list(validate_links(raw_links))
2019-03-21 18:28:12 +13:00
# merge existing links in out_dir and new links
all_links = list(validate_links(existing_links + new_links))
2019-03-21 18:28:12 +13:00
if import_path and parser_name:
num_parsed = len(raw_links)
num_new_links = len(all_links) - len(existing_links)
log_parsing_finished(num_parsed, num_new_links, parser_name)
2019-03-21 18:28:12 +13:00
return all_links, new_links
@enforce_types
def write_json_links_index(links: List[Link], out_dir: str=OUTPUT_DIR) -> None:
"""write the json link index to a given path"""
assert isinstance(links, List), 'Links must be a list, not a generator.'
assert isinstance(links[0].history, dict)
assert isinstance(links[0].sources, list)
if links[0].history.get('title'):
assert isinstance(links[0].history['title'][0], ArchiveResult)
if links[0].sources:
assert isinstance(links[0].sources[0], str)
path = os.path.join(out_dir, 'index.json')
index_json = {
'info': 'ArchiveBox Index',
'source': 'https://github.com/pirate/ArchiveBox',
'docs': 'https://github.com/pirate/ArchiveBox/wiki',
'version': VERSION,
'num_links': len(links),
'updated': datetime.now(),
'links': links,
}
atomic_write(index_json, path)
@enforce_types
def parse_json_links_index(out_dir: str=OUTPUT_DIR) -> Iterator[Link]:
2019-03-21 18:28:12 +13:00
"""parse a archive index json file and return the list of links"""
2017-10-23 22:58:41 +13:00
index_path = os.path.join(out_dir, 'index.json')
if os.path.exists(index_path):
with open(index_path, 'r', encoding='utf-8') as f:
links = json.load(f)['links']
for link_json in links:
yield Link.from_json(link_json)
2017-10-23 22:58:41 +13:00
return ()
2017-10-23 22:58:41 +13:00
@enforce_types
def write_html_links_index(links: List[Link], out_dir: str=OUTPUT_DIR, finished: bool=False) -> None:
"""write the html link index to a given path"""
path = os.path.join(out_dir, 'index.html')
copy_and_overwrite(
os.path.join(TEMPLATES_DIR, 'static'),
os.path.join(out_dir, 'static'),
)
2018-04-17 23:00:40 +12:00
atomic_write('User-agent: *\nDisallow: /', os.path.join(out_dir, 'robots.txt'))
2018-09-13 11:25:48 +12:00
2018-06-11 13:12:55 +12:00
with open(os.path.join(TEMPLATES_DIR, 'index.html'), 'r', encoding='utf-8') as f:
index_html = f.read()
2018-06-11 13:12:55 +12:00
with open(os.path.join(TEMPLATES_DIR, 'index_row.html'), 'r', encoding='utf-8') as f:
link_row_html = f.read()
link_rows = '\n'.join(
Template(link_row_html).substitute(**{
**derived_link_info(link),
'title': (
link.title
or (link.base_url if link.is_archived else TITLE_LOADING_MSG)
),
2019-03-27 20:49:39 +13:00
'tags': (link.tags or '') + (' {}'.format(link.extension) if link.is_static else ''),
2019-03-20 21:30:00 +13:00
'favicon_url': (
os.path.join('archive', link.timestamp, 'favicon.ico')
2019-03-20 21:30:00 +13:00
# if link['is_archived'] else 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='
),
'archive_url': urlencode(
wget_output_path(link) or 'index.html'
),
})
for link in links
)
2017-07-04 23:24:03 +12:00
template_vars = {
'num_links': len(links),
'date_updated': datetime.now().strftime('%Y-%m-%d'),
'time_updated': datetime.now().strftime('%Y-%m-%d %H:%M'),
2018-04-18 01:14:01 +12:00
'footer_info': FOOTER_INFO,
'version': VERSION,
2018-04-18 01:14:01 +12:00
'git_sha': GIT_SHA,
'rows': link_rows,
'status': 'finished' if finished else 'running',
2017-07-04 23:24:03 +12:00
}
atomic_write(Template(index_html).substitute(**template_vars), path)
2017-07-06 09:33:51 +12:00
@enforce_types
2019-03-26 20:20:41 +13:00
def patch_links_index(link: Link, out_dir: str=OUTPUT_DIR) -> None:
"""hack to in-place update one row's info in the generated index html"""
title = link.title or link.latest_outputs()['title']
successful = link.num_outputs
# Patch JSON index
2019-03-21 18:28:12 +13:00
json_file_links = parse_json_links_index(out_dir)
patched_links = []
2019-03-21 18:28:12 +13:00
for saved_link in json_file_links:
if saved_link.url == link.url:
2019-03-27 20:49:39 +13:00
patched_links.append(saved_link.overwrite(
title=title,
history=link.history,
updated=link.updated,
))
else:
patched_links.append(saved_link)
write_json_links_index(patched_links, out_dir=out_dir)
# Patch HTML index
2019-03-21 18:28:12 +13:00
html_path = os.path.join(out_dir, 'index.html')
html = open(html_path, 'r').read().split('\n')
for idx, line in enumerate(html):
if title and ('<span data-title-for="{}"'.format(link.url) in line):
html[idx] = '<span>{}</span>'.format(title)
elif successful and ('<span data-number-for="{}"'.format(link.url) in line):
html[idx] = '<span>{}</span>'.format(successful)
break
atomic_write('\n'.join(html), html_path)
2019-03-21 18:28:12 +13:00
2017-10-23 22:58:41 +13:00
### Individual link index
@enforce_types
def write_link_index(link: Link, link_dir: Optional[str]=None) -> None:
link_dir = link_dir or link.link_dir
write_json_link_index(link, link_dir)
write_html_link_index(link, link_dir)
@enforce_types
def write_json_link_index(link: Link, link_dir: Optional[str]=None) -> None:
"""write a json file with some info about the link"""
link_dir = link_dir or link.link_dir
path = os.path.join(link_dir, 'index.json')
atomic_write(link._asdict(), path)
@enforce_types
def parse_json_link_index(link_dir: str) -> Optional[Link]:
2017-10-23 22:58:41 +13:00
"""load the json link index from a given directory"""
existing_index = os.path.join(link_dir, 'index.json')
2017-10-23 22:58:41 +13:00
if os.path.exists(existing_index):
with open(existing_index, 'r', encoding='utf-8') as f:
link_json = json.load(f)
2019-03-31 08:38:28 +13:00
return Link.from_json(link_json)
return None
2017-10-23 22:58:41 +13:00
@enforce_types
def load_json_link_index(link: Link, link_dir: Optional[str]=None) -> Link:
2019-03-21 18:28:12 +13:00
"""check for an existing link archive in the given directory,
and load+merge it into the given link dict
"""
link_dir = link_dir or link.link_dir
existing_link = parse_json_link_index(link_dir)
if existing_link:
return merge_links(existing_link, link)
return link
2019-03-21 18:28:12 +13:00
@enforce_types
def write_html_link_index(link: Link, link_dir: Optional[str]=None) -> None:
link_dir = link_dir or link.link_dir
2019-03-09 11:46:14 +13:00
with open(os.path.join(TEMPLATES_DIR, 'link_index.html'), 'r', encoding='utf-8') as f:
link_html = f.read()
path = os.path.join(link_dir, 'index.html')
html_index = Template(link_html).substitute({
**derived_link_info(link),
'title': (
link.title
or (link.base_url if link.is_archived else TITLE_LOADING_MSG)
),
'archive_url': urlencode(
wget_output_path(link)
or (link.domain if link.is_archived else 'about:blank')
),
'extension': link.extension or 'html',
'tags': link.tags or 'untagged',
'status': 'archived' if link.is_archived else 'not yet archived',
'status_color': 'success' if link.is_archived else 'danger',
})
atomic_write(html_index, path)