2019-04-27 21:26:24 +00:00
|
|
|
__package__ = 'archivebox.parsers'
|
|
|
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
from typing import IO, Iterable
|
2021-04-10 08:19:30 +00:00
|
|
|
from datetime import datetime, timezone
|
2019-04-27 21:26:24 +00:00
|
|
|
|
|
|
|
from ..index.schema import Link
|
|
|
|
from ..util import (
|
|
|
|
htmldecode,
|
|
|
|
enforce_types,
|
|
|
|
)
|
|
|
|
|
2024-03-01 02:15:06 +00:00
|
|
|
# This gets used by generic_jsonl, too
|
|
|
|
def jsonObjectToLink(link: str, source: str):
|
|
|
|
json_date = lambda s: datetime.strptime(s, '%Y-%m-%dT%H:%M:%S%z')
|
|
|
|
|
|
|
|
# example line
|
|
|
|
# {"href":"http:\/\/www.reddit.com\/r\/example","description":"title here","extended":"","meta":"18a973f09c9cc0608c116967b64e0419","hash":"910293f019c2f4bb1a749fb937ba58e3","time":"2014-06-14T15:51:42Z","shared":"no","toread":"no","tags":"reddit android"}]
|
|
|
|
# Parse URL
|
|
|
|
url = link.get('href') or link.get('url') or link.get('URL')
|
|
|
|
if not url:
|
|
|
|
raise Exception('JSON must contain URL in each entry [{"url": "http://...", ...}, ...]')
|
|
|
|
|
|
|
|
# Parse the timestamp
|
|
|
|
ts_str = str(datetime.now(timezone.utc).timestamp())
|
|
|
|
if link.get('timestamp'):
|
|
|
|
# chrome/ff histories use a very precise timestamp
|
|
|
|
ts_str = str(link['timestamp'] / 10000000)
|
|
|
|
elif link.get('time'):
|
|
|
|
ts_str = str(json_date(link['time'].split(',', 1)[0]).timestamp())
|
|
|
|
elif link.get('created_at'):
|
|
|
|
ts_str = str(json_date(link['created_at']).timestamp())
|
|
|
|
elif link.get('created'):
|
|
|
|
ts_str = str(json_date(link['created']).timestamp())
|
|
|
|
elif link.get('date'):
|
|
|
|
ts_str = str(json_date(link['date']).timestamp())
|
|
|
|
elif link.get('bookmarked'):
|
|
|
|
ts_str = str(json_date(link['bookmarked']).timestamp())
|
|
|
|
elif link.get('saved'):
|
|
|
|
ts_str = str(json_date(link['saved']).timestamp())
|
|
|
|
|
|
|
|
# Parse the title
|
|
|
|
title = None
|
|
|
|
if link.get('title'):
|
|
|
|
title = link['title'].strip()
|
|
|
|
elif link.get('description'):
|
|
|
|
title = link['description'].replace(' — Readability', '').strip()
|
|
|
|
elif link.get('name'):
|
|
|
|
title = link['name'].strip()
|
|
|
|
|
|
|
|
# if we have a list, join it with commas
|
|
|
|
tags = link.get('tags')
|
|
|
|
if type(tags) == list:
|
|
|
|
tags = ','.join(tags)
|
|
|
|
elif type(tags) == str:
|
|
|
|
# if there's no comma, assume it was space-separated
|
|
|
|
if ',' not in tags:
|
|
|
|
tags = tags.replace(' ', ',')
|
|
|
|
|
|
|
|
return Link(
|
|
|
|
url=htmldecode(url),
|
|
|
|
timestamp=ts_str,
|
|
|
|
title=htmldecode(title) or None,
|
|
|
|
tags=htmldecode(tags),
|
|
|
|
sources=[source],
|
|
|
|
)
|
2019-04-27 21:26:24 +00:00
|
|
|
|
|
|
|
@enforce_types
|
2020-08-18 12:27:47 +00:00
|
|
|
def parse_generic_json_export(json_file: IO[str], **_kwargs) -> Iterable[Link]:
|
2019-04-27 21:26:24 +00:00
|
|
|
"""Parse JSON-format bookmarks export files (produced by pinboard.in/export/, or wallabag)"""
|
|
|
|
|
|
|
|
json_file.seek(0)
|
2023-09-04 04:40:12 +00:00
|
|
|
|
2024-02-27 22:48:19 +00:00
|
|
|
try:
|
|
|
|
links = json.load(json_file)
|
2024-03-01 02:15:06 +00:00
|
|
|
if type(links) != list:
|
|
|
|
raise Exception('JSON parser expects list of objects, maybe this is JSONL?')
|
2024-02-27 22:48:19 +00:00
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
# sometimes the first line is a comment or other junk, so try without
|
|
|
|
json_file.seek(0)
|
|
|
|
first_line = json_file.readline()
|
|
|
|
#print(' > Trying JSON parser without first line: "', first_line.strip(), '"', sep= '')
|
|
|
|
links = json.load(json_file)
|
|
|
|
# we may fail again, which means we really don't know what to do
|
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
for link in links:
|
|
|
|
if link:
|
2024-03-01 02:15:06 +00:00
|
|
|
yield jsonObjectToLink(link,json_file.name)
|
2021-03-31 05:05:49 +00:00
|
|
|
|
|
|
|
KEY = 'json'
|
|
|
|
NAME = 'Generic JSON'
|
|
|
|
PARSER = parse_generic_json_export
|