1
0
Fork 0
mirror of synced 2024-07-02 21:10:25 +12:00
ArchiveBox/archivebox/index.py

183 lines
4.9 KiB
Python
Raw Normal View History

import os
import json
from datetime import datetime
from string import Template
2018-04-17 23:00:40 +12:00
from distutils.dir_util import copy_tree
2017-07-06 09:33:51 +12:00
from config import (
OUTPUT_DIR,
2018-06-11 13:12:55 +12:00
TEMPLATES_DIR,
OUTPUT_PERMISSIONS,
2017-07-06 09:33:51 +12:00
ANSI,
GIT_SHA,
2018-04-18 01:13:38 +12:00
FOOTER_INFO,
2017-07-06 09:33:51 +12:00
)
2017-10-23 22:58:41 +13:00
from util import (
chmod_file,
2018-04-18 01:13:38 +12:00
wget_output_path,
2017-10-23 22:58:41 +13:00
derived_link_info,
pretty_path,
check_link_structure,
check_links_structure,
2017-10-23 22:58:41 +13:00
)
### Homepage index for all the links
def write_links_index(out_dir, links):
"""create index.html file for a given list of links"""
check_links_structure(links)
if not os.path.exists(out_dir):
os.makedirs(out_dir)
2019-02-07 19:06:21 +13:00
print('{green}[*] [{}] Updating main index files...{reset}'.format(
datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
2019-02-07 19:06:21 +13:00
**ANSI,
))
write_json_links_index(out_dir, links)
print(' > {}/index.json'.format(pretty_path(out_dir)))
2019-02-07 19:06:21 +13:00
write_html_links_index(out_dir, links)
print(' > {}/index.html'.format(pretty_path(out_dir)))
2019-02-07 19:06:21 +13:00
def write_json_links_index(out_dir, links):
"""write the json link index to a given path"""
check_links_structure(links)
path = os.path.join(out_dir, 'index.json')
index_json = {
'info': 'ArchiveBox Index',
'help': 'https://github.com/pirate/ArchiveBox',
'version': GIT_SHA,
'num_links': len(links),
'updated': str(datetime.now().timestamp()),
'links': links,
}
with open(path, 'w', encoding='utf-8') as f:
json.dump(index_json, f, indent=4, default=str)
chmod_file(path)
2017-10-23 22:58:41 +13:00
def parse_json_links_index(out_dir):
"""load the index in a given directory and merge it with the given link"""
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']
check_links_structure(links)
return links
2017-10-23 22:58:41 +13:00
return []
def write_html_links_index(out_dir, links):
"""write the html link index to a given path"""
check_links_structure(links)
path = os.path.join(out_dir, 'index.html')
2018-06-11 13:12:55 +12:00
copy_tree(os.path.join(TEMPLATES_DIR, 'static'), os.path.join(out_dir, 'static'))
2018-04-17 23:00:40 +12:00
2018-09-13 11:25:48 +12:00
with open(os.path.join(out_dir, 'robots.txt'), 'w+') as f:
f.write('User-agent: *\nDisallow: /')
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))
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,
'git_sha': GIT_SHA,
'short_git_sha': GIT_SHA[:8],
'rows': link_rows,
2017-07-04 23:24:03 +12:00
}
with open(path, 'w', encoding='utf-8') as f:
2017-07-06 09:33:51 +12:00
f.write(Template(index_html).substitute(**template_vars))
2017-10-23 22:58:41 +13:00
chmod_file(path)
2017-07-06 09:33:51 +12:00
def patch_index_title_hack(link_url, new_title):
"""hack to update just one link's title in the link index json"""
json_path = os.path.join(OUTPUT_DIR, 'index.json')
links = parse_json_links_index(OUTPUT_DIR)
changed = False
for link in links:
if link['url'] == link_url:
link['title'] = new_title
changed = True
break
if changed:
write_json_links_index(OUTPUT_DIR, links)
2017-10-23 22:58:41 +13:00
### Individual link index
def write_link_index(out_dir, link):
link['updated'] = str(datetime.now().timestamp())
write_json_link_index(out_dir, link)
write_html_link_index(out_dir, link)
def write_json_link_index(out_dir, link):
"""write a json file with some info about the link"""
check_link_structure(link)
path = os.path.join(out_dir, 'index.json')
2018-04-17 23:30:06 +12:00
print(' √ index.json')
2017-10-23 22:58:41 +13:00
with open(path, 'w', encoding='utf-8') as f:
json.dump(link, f, indent=4, default=str)
chmod_file(path)
2017-10-23 22:58:41 +13:00
def parse_json_link_index(out_dir):
"""load the json link index from a given directory"""
existing_index = os.path.join(out_dir, 'index.json')
if os.path.exists(existing_index):
with open(existing_index, 'r', encoding='utf-8') as f:
link_json = json.load(f)
check_link_structure(link_json)
return link_json
2017-10-23 22:58:41 +13:00
return {}
def write_html_link_index(out_dir, link):
check_link_structure(link)
2018-06-11 13:12:55 +12:00
with open(os.path.join(TEMPLATES_DIR, 'link_index_fancy.html'), 'r', encoding='utf-8') as f:
link_html = f.read()
path = os.path.join(out_dir, 'index.html')
2018-04-17 23:30:06 +12:00
print(' √ index.html')
2017-10-23 22:58:41 +13:00
with open(path, 'w', encoding='utf-8') as f:
f.write(Template(link_html).substitute({
**derived_link_info(link),
2017-10-23 22:58:41 +13:00
**link['latest'],
}))
chmod_file(path)