bookwyrm/bookwyrm/connectors/openlibrary.py

221 lines
7.9 KiB
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" openlibrary data connector """
2020-03-07 20:22:28 +00:00
import re
2020-04-22 13:53:22 +00:00
from bookwyrm import models
2020-05-10 23:41:24 +00:00
from .abstract_connector import AbstractConnector, SearchResult, Mapping
2021-01-02 16:38:27 +00:00
from .abstract_connector import get_data
from .connector_manager import ConnectorException
2020-03-30 20:15:49 +00:00
from .openlibrary_languages import languages
2020-03-07 20:22:28 +00:00
class Connector(AbstractConnector):
2021-03-08 16:49:10 +00:00
""" instantiate a connector for OL """
def __init__(self, identifier):
2020-05-10 19:56:59 +00:00
super().__init__(identifier)
2020-05-10 23:41:24 +00:00
get_first = lambda a: a[0]
2020-12-20 00:14:05 +00:00
get_remote_id = lambda a: self.base_url + a
self.book_mappings = [
2021-03-08 16:49:10 +00:00
Mapping("title"),
Mapping("id", remote_field="key", formatter=get_remote_id),
Mapping("cover", remote_field="covers", formatter=self.get_cover_url),
Mapping("sortTitle", remote_field="sort_title"),
Mapping("subtitle"),
Mapping("description", formatter=get_description),
Mapping("languages", formatter=get_languages),
Mapping("series", formatter=get_first),
Mapping("seriesNumber", remote_field="series_number"),
Mapping("subjects"),
Mapping("subjectPlaces", remote_field="subject_places"),
Mapping("isbn13", remote_field="isbn_13", formatter=get_first),
Mapping("isbn10", remote_field="isbn_10", formatter=get_first),
Mapping("lccn", formatter=get_first),
Mapping("oclcNumber", remote_field="oclc_numbers", formatter=get_first),
2020-05-10 23:41:24 +00:00
Mapping(
2021-03-08 16:49:10 +00:00
"openlibraryKey", remote_field="key", formatter=get_openlibrary_key
2020-05-10 23:41:24 +00:00
),
2021-03-08 16:49:10 +00:00
Mapping("goodreadsKey", remote_field="goodreads_key"),
Mapping("asin"),
2020-05-10 23:41:24 +00:00
Mapping(
2021-03-08 16:49:10 +00:00
"firstPublishedDate",
remote_field="first_publish_date",
2020-05-10 23:41:24 +00:00
),
2021-03-08 16:49:10 +00:00
Mapping("publishedDate", remote_field="publish_date"),
Mapping("pages", remote_field="number_of_pages"),
Mapping("physicalFormat", remote_field="physical_format"),
Mapping("publishers"),
2020-05-10 23:41:24 +00:00
]
self.author_mappings = [
2021-03-08 16:49:10 +00:00
Mapping("id", remote_field="key", formatter=get_remote_id),
Mapping("name"),
2020-12-20 00:14:05 +00:00
Mapping(
2021-03-08 16:49:10 +00:00
"openlibraryKey", remote_field="key", formatter=get_openlibrary_key
2020-12-20 00:14:05 +00:00
),
2021-03-08 16:49:10 +00:00
Mapping("born", remote_field="birth_date"),
Mapping("died", remote_field="death_date"),
Mapping("bio", formatter=get_description),
2020-05-10 23:41:24 +00:00
]
def get_remote_id_from_data(self, data):
2021-03-08 16:49:10 +00:00
""" format a url from an openlibrary id field """
try:
2021-03-08 16:49:10 +00:00
key = data["key"]
except KeyError:
2021-03-08 16:49:10 +00:00
raise ConnectorException("Invalid book data")
return "%s%s" % (self.books_url, key)
2020-05-10 19:56:59 +00:00
def is_work_data(self, data):
2021-03-08 16:49:10 +00:00
return bool(re.match(r"^[\/\w]+OL\d+W$", data["key"]))
2020-03-07 20:22:28 +00:00
2020-05-10 19:56:59 +00:00
def get_edition_from_work_data(self, data):
try:
2021-03-08 16:49:10 +00:00
key = data["key"]
2020-05-10 19:56:59 +00:00
except KeyError:
2021-03-08 16:49:10 +00:00
raise ConnectorException("Invalid book data")
url = "%s%s/editions" % (self.books_url, key)
2020-05-10 19:56:59 +00:00
data = get_data(url)
2021-03-08 16:49:10 +00:00
return pick_default_edition(data["entries"])
def get_work_from_edition_data(self, data):
2020-05-10 19:56:59 +00:00
try:
2021-03-08 16:49:10 +00:00
key = data["works"][0]["key"]
2020-05-10 19:56:59 +00:00
except (IndexError, KeyError):
2021-03-08 16:49:10 +00:00
raise ConnectorException("No work found for edition")
url = "%s%s" % (self.books_url, key)
2020-05-10 19:56:59 +00:00
return get_data(url)
def get_authors_from_data(self, data):
2021-03-08 16:49:10 +00:00
""" parse author json and load or create authors """
for author_blob in data.get("authors", []):
author_blob = author_blob.get("author", author_blob)
2020-12-19 23:20:31 +00:00
# this id is "/authors/OL1234567A"
2021-03-08 16:49:10 +00:00
author_id = author_blob["key"]
url = "%s%s" % (self.base_url, author_id)
2020-12-19 23:20:31 +00:00
yield self.get_or_create_author(url)
2020-12-20 00:14:05 +00:00
def get_cover_url(self, cover_blob):
2021-03-08 16:49:10 +00:00
""" ask openlibrary for the cover """
2020-12-20 00:14:05 +00:00
cover_id = cover_blob[0]
2021-03-08 16:49:10 +00:00
image_name = "%s-L.jpg" % cover_id
return "%s/b/id/%s" % (self.covers_url, image_name)
2020-05-10 19:56:59 +00:00
def parse_search_data(self, data):
2021-03-08 16:49:10 +00:00
return data.get("docs")
2020-05-10 19:56:59 +00:00
2020-09-21 17:25:26 +00:00
def format_search_result(self, search_result):
# build the remote id from the openlibrary key
2021-03-08 16:49:10 +00:00
key = self.books_url + search_result["key"]
author = search_result.get("author_name") or ["Unknown"]
2020-05-10 19:56:59 +00:00
return SearchResult(
2021-03-08 16:49:10 +00:00
title=search_result.get("title"),
2020-10-29 22:29:23 +00:00
key=key,
2021-03-08 16:49:10 +00:00
author=", ".join(author),
connector=self,
2021-03-08 16:49:10 +00:00
year=search_result.get("first_publish_year"),
2020-05-10 19:56:59 +00:00
)
2021-03-01 20:09:21 +00:00
def parse_isbn_search_data(self, data):
return list(data.values())
def format_isbn_search_result(self, search_result):
# build the remote id from the openlibrary key
2021-03-08 16:49:10 +00:00
key = self.books_url + search_result["key"]
authors = search_result.get("authors") or [{"name": "Unknown"}]
author_names = [author.get("name") for author in authors]
2021-03-01 20:09:21 +00:00
return SearchResult(
2021-03-08 16:49:10 +00:00
title=search_result.get("title"),
2021-03-01 20:09:21 +00:00
key=key,
2021-03-08 16:49:10 +00:00
author=", ".join(author_names),
2021-03-01 20:09:21 +00:00
connector=self,
2021-03-08 16:49:10 +00:00
year=search_result.get("publish_date"),
2021-03-01 20:09:21 +00:00
)
def load_edition_data(self, olkey):
2021-03-08 16:49:10 +00:00
""" query openlibrary for editions of a work """
url = "%s/works/%s/editions" % (self.books_url, olkey)
return get_data(url)
2020-03-07 20:22:28 +00:00
2020-04-02 05:11:31 +00:00
def expand_book_data(self, book):
work = book
2020-10-01 02:43:42 +00:00
# go from the edition to the work, if necessary
2020-04-02 05:11:31 +00:00
if isinstance(book, models.Edition):
work = book.parent_work
2020-10-01 02:43:42 +00:00
# we can mass download edition data from OL to avoid repeatedly querying
2021-02-11 01:54:49 +00:00
try:
edition_options = self.load_edition_data(work.openlibrary_key)
except ConnectorException:
# who knows, man
return
2021-03-08 16:49:10 +00:00
for edition_data in edition_options.get("entries"):
# does this edition have ANY interesting data?
if ignore_edition(edition_data):
continue
2020-12-20 00:14:05 +00:00
self.create_edition_from_data(work, edition_data)
2020-03-30 19:21:04 +00:00
def ignore_edition(edition_data):
2021-03-08 16:49:10 +00:00
""" don't load a million editions that have no metadata """
# an isbn, we love to see it
2021-03-08 16:49:10 +00:00
if edition_data.get("isbn_13") or edition_data.get("isbn_10"):
print(edition_data.get("isbn_10"))
return False
# grudgingly, oclc can stay
2021-03-08 16:49:10 +00:00
if edition_data.get("oclc_numbers"):
print(edition_data.get("oclc_numbers"))
return False
# if it has a cover it can stay
2021-03-08 16:49:10 +00:00
if edition_data.get("covers"):
print(edition_data.get("covers"))
return False
# keep non-english editions
2021-03-08 16:49:10 +00:00
if edition_data.get("languages") and "languages/eng" not in str(
edition_data.get("languages")
):
print(edition_data.get("languages"))
return False
return True
2020-03-28 04:28:52 +00:00
def get_description(description_blob):
2021-03-08 16:49:10 +00:00
""" descriptions can be a string or a dict """
2020-03-28 04:28:52 +00:00
if isinstance(description_blob, dict):
2021-03-08 16:49:10 +00:00
return description_blob.get("value")
return description_blob
2020-03-28 04:28:52 +00:00
2020-03-30 20:15:49 +00:00
2020-05-10 23:41:24 +00:00
def get_openlibrary_key(key):
2021-03-08 16:49:10 +00:00
""" convert /books/OL27320736M into OL27320736M """
return key.split("/")[-1]
2020-05-10 23:41:24 +00:00
2020-03-30 20:15:49 +00:00
def get_languages(language_blob):
2021-03-08 16:49:10 +00:00
""" /language/eng -> English """
2020-03-30 20:15:49 +00:00
langs = []
for lang in language_blob:
2021-03-08 16:49:10 +00:00
langs.append(languages.get(lang.get("key", ""), None))
2020-03-30 20:15:49 +00:00
return langs
def pick_default_edition(options):
2021-03-08 16:49:10 +00:00
""" favor physical copies with covers in english """
2020-04-22 13:53:22 +00:00
if not options:
return None
if len(options) == 1:
return options[0]
2021-03-08 16:49:10 +00:00
options = [e for e in options if e.get("covers")] or options
options = [
e for e in options if "/languages/eng" in str(e.get("languages"))
] or options
formats = ["paperback", "hardcover", "mass market paperback"]
options = [
e for e in options if str(e.get("physical_format")).lower() in formats
] or options
options = [e for e in options if e.get("isbn_13")] or options
options = [e for e in options if e.get("ocaid")] or options
return options[0]