moviewyrm/bookwyrm/models/book.py

225 lines
8.9 KiB
Python
Raw Normal View History

2020-02-15 22:38:46 +00:00
''' database schema for books and shelves '''
2020-02-11 23:17:21 +00:00
from django.db import models
from django.utils import timezone
from django.utils.http import http_date
from model_utils.managers import InheritanceManager
2020-02-17 03:17:11 +00:00
from bookwyrm import activitypub
from bookwyrm.settings import DOMAIN
from bookwyrm.utils.fields import ArrayField
2020-02-15 22:38:46 +00:00
from .base_model import ActivityMapping, ActivitypubMixin, FedireadsModel
class Book(ActivitypubMixin, FedireadsModel):
2020-03-07 06:56:44 +00:00
''' a generic book, which can mean either an edition or a work '''
# these identifiers apply to both works and editions
2020-03-28 22:06:16 +00:00
openlibrary_key = models.CharField(max_length=255, blank=True, null=True)
librarything_key = models.CharField(max_length=255, blank=True, null=True)
goodreads_key = models.CharField(max_length=255, blank=True, null=True)
2020-02-11 23:17:21 +00:00
2020-03-07 06:56:44 +00:00
# info about where the data comes from and where/if to sync
sync = models.BooleanField(default=True)
2020-03-28 22:06:16 +00:00
sync_cover = models.BooleanField(default=True)
2020-03-30 00:40:51 +00:00
last_sync_date = models.DateTimeField(default=timezone.now)
connector = models.ForeignKey(
'Connector', on_delete=models.PROTECT, null=True)
2020-02-11 23:17:21 +00:00
2020-03-07 06:56:44 +00:00
# TODO: edit history
2020-02-11 23:17:21 +00:00
2020-03-07 06:56:44 +00:00
# book/work metadata
title = models.CharField(max_length=255)
2020-03-28 22:06:16 +00:00
sort_title = models.CharField(max_length=255, blank=True, null=True)
subtitle = models.CharField(max_length=255, blank=True, null=True)
2020-03-07 06:56:44 +00:00
description = models.TextField(blank=True, null=True)
2020-03-30 20:15:49 +00:00
languages = ArrayField(
models.CharField(max_length=255), blank=True, default=list
)
2020-03-07 06:56:44 +00:00
series = models.CharField(max_length=255, blank=True, null=True)
series_number = models.CharField(max_length=255, blank=True, null=True)
2020-03-28 04:28:52 +00:00
subjects = ArrayField(
models.CharField(max_length=255), blank=True, default=list
)
subject_places = ArrayField(
models.CharField(max_length=255), blank=True, default=list
)
2020-03-07 06:56:44 +00:00
# TODO: include an annotation about the type of authorship (ie, translator)
2020-02-11 23:17:21 +00:00
authors = models.ManyToManyField('Author')
2020-04-29 17:09:14 +00:00
# preformatted authorship string for search and easier display
author_text = models.CharField(max_length=255, blank=True, null=True)
2020-02-11 23:17:21 +00:00
cover = models.ImageField(upload_to='covers/', blank=True, null=True)
2020-03-28 22:06:16 +00:00
first_published_date = models.DateTimeField(blank=True, null=True)
published_date = models.DateTimeField(blank=True, null=True)
objects = InheritanceManager()
2020-03-07 06:56:44 +00:00
@property
def ap_authors(self):
2020-09-17 20:09:11 +00:00
''' the activitypub serialization should be a list of author ids '''
return [a.remote_id for a in self.authors.all()]
activity_mappings = [
ActivityMapping('id', 'remote_id'),
ActivityMapping('authors', 'ap_authors'),
ActivityMapping(
'first_published_date',
'first_published_date',
activity_formatter=lambda d: http_date(d.timestamp()) if d else None
),
ActivityMapping(
'published_date',
'published_date',
activity_formatter=lambda d: http_date(d.timestamp()) if d else None
),
ActivityMapping('title', 'title'),
ActivityMapping('sort_title', 'sort_title'),
ActivityMapping('subtitle', 'subtitle'),
ActivityMapping('description', 'description'),
ActivityMapping('languages', 'languages'),
ActivityMapping('series', 'series'),
ActivityMapping('series_number', 'series_number'),
ActivityMapping('subjects', 'subjects'),
ActivityMapping('subject_places', 'subject_places'),
ActivityMapping('openlibrary_key', 'openlibrary_key'),
ActivityMapping('librarything_key', 'librarything_key'),
ActivityMapping('goodreads_key', 'goodreads_key'),
ActivityMapping('work', 'parent_work'),
ActivityMapping('isbn_10', 'isbn_10'),
ActivityMapping('isbn_13', 'isbn_13'),
ActivityMapping('oclc_number', 'oclc_number'),
ActivityMapping('asin', 'asin'),
ActivityMapping('pages', 'pages'),
ActivityMapping('physical_format', 'physical_format'),
ActivityMapping('publishers', 'publishers'),
ActivityMapping('lccn', 'lccn'),
ActivityMapping('editions', 'editions_path'),
]
def save(self, *args, **kwargs):
''' can't be abstract for query reasons, but you shouldn't USE it '''
if not isinstance(self, Edition) and not isinstance(self, Work):
raise ValueError('Books should be added as Editions or Works')
super().save(*args, **kwargs)
def get_remote_id(self):
''' editions and works both use "book" instead of model_name '''
return 'https://%s/book/%d' % (DOMAIN, self.id)
@property
def local_id(self):
''' when a book is ingested from an outside source, it becomes local to
an instance, so it needs a local url for federation. but it still needs
the remote_id for easier deduplication and, if appropriate, to sync with
the remote canonical copy '''
return 'https://%s/book/%d' % (DOMAIN, self.id)
def __repr__(self):
2020-03-28 04:28:52 +00:00
return "<{} key={!r} title={!r}>".format(
self.__class__,
self.openlibrary_key,
self.title,
)
2020-03-07 06:56:44 +00:00
class Work(Book):
''' a work (an abstract concept of a book that manifests in an edition) '''
# library of congress catalog control number
2020-03-28 22:06:16 +00:00
lccn = models.CharField(max_length=255, blank=True, null=True)
2020-03-07 06:56:44 +00:00
@property
def editions_path(self):
2020-09-17 20:09:11 +00:00
''' it'd be nice to serialize the edition instead but, recursion '''
return self.remote_id + '/editions'
2020-03-30 22:03:21 +00:00
@property
def default_edition(self):
2020-09-17 20:09:11 +00:00
''' best-guess attempt at picking the default edition for this work '''
2020-03-30 22:03:21 +00:00
ed = Edition.objects.filter(parent_work=self, default=True).first()
if not ed:
ed = Edition.objects.filter(parent_work=self).first()
return ed
activity_serializer = activitypub.Work
2020-03-07 06:56:44 +00:00
class Edition(Book):
''' an edition of a book '''
2020-04-29 17:09:14 +00:00
# default -> this is what gets displayed for a work
2020-03-30 20:15:49 +00:00
default = models.BooleanField(default=False)
2020-05-04 01:56:29 +00:00
2020-04-29 17:09:14 +00:00
# these identifiers only apply to editions, not works
isbn_10 = models.CharField(max_length=255, blank=True, null=True)
isbn_13 = models.CharField(max_length=255, blank=True, null=True)
2020-03-28 22:06:16 +00:00
oclc_number = models.CharField(max_length=255, blank=True, null=True)
2020-04-29 17:09:14 +00:00
asin = models.CharField(max_length=255, blank=True, null=True)
2020-03-28 22:06:16 +00:00
pages = models.IntegerField(blank=True, null=True)
physical_format = models.CharField(max_length=255, blank=True, null=True)
2020-03-28 04:28:52 +00:00
publishers = ArrayField(
models.CharField(max_length=255), blank=True, default=list
)
shelves = models.ManyToManyField(
'Shelf',
symmetrical=False,
through='ShelfBook',
through_fields=('book', 'shelf')
)
parent_work = models.ForeignKey('Work', on_delete=models.PROTECT, null=True)
2020-02-17 03:17:11 +00:00
activity_serializer = activitypub.Edition
2020-02-11 23:17:21 +00:00
class Author(ActivitypubMixin, FedireadsModel):
2020-02-15 22:38:46 +00:00
''' copy of an author from OL '''
2020-03-28 22:06:16 +00:00
openlibrary_key = models.CharField(max_length=255, blank=True, null=True)
2020-05-04 01:56:29 +00:00
sync = models.BooleanField(default=True)
last_sync_date = models.DateTimeField(default=timezone.now)
2020-03-07 06:56:44 +00:00
wikipedia_link = models.CharField(max_length=255, blank=True, null=True)
# idk probably other keys would be useful here?
2020-03-28 22:06:16 +00:00
born = models.DateTimeField(blank=True, null=True)
died = models.DateTimeField(blank=True, null=True)
2020-03-07 06:56:44 +00:00
name = models.CharField(max_length=255)
2020-03-28 22:06:16 +00:00
last_name = models.CharField(max_length=255, blank=True, null=True)
first_name = models.CharField(max_length=255, blank=True, null=True)
aliases = ArrayField(
models.CharField(max_length=255), blank=True, default=list
)
2020-03-07 06:56:44 +00:00
bio = models.TextField(null=True, blank=True)
2020-05-10 04:52:13 +00:00
@property
def local_id(self):
''' when a book is ingested from an outside source, it becomes local to
an instance, so it needs a local url for federation. but it still needs
the remote_id for easier deduplication and, if appropriate, to sync with
the remote canonical copy (ditto here for author)'''
return 'https://%s/book/%d' % (DOMAIN, self.id)
2020-06-17 22:16:19 +00:00
@property
def display_name(self):
''' Helper to return a displayable name'''
if self.name:
return self.name
2020-06-17 22:16:19 +00:00
# don't want to return a spurious space if all of these are None
if self.first_name and self.last_name:
2020-06-17 22:16:19 +00:00
return self.first_name + ' ' + self.last_name
return self.last_name or self.first_name
activity_mappings = [
ActivityMapping('id', 'remote_id'),
ActivityMapping('url', 'remote_id'),
ActivityMapping('name', 'display_name'),
ActivityMapping('born', 'born'),
ActivityMapping('died', 'died'),
ActivityMapping('aliases', 'aliases'),
ActivityMapping('bio', 'bio'),
ActivityMapping('openlibrary_key', 'openlibrary_key'),
ActivityMapping('wikipedia_link', 'wikipedia_link'),
]
activity_serializer = activitypub.Author