2021-03-08 11:49:10 -05:00
|
|
|
""" note serializer and children thereof """
|
2020-09-17 16:02:52 -04:00
|
|
|
from dataclasses import dataclass, field
|
|
|
|
from typing import Dict, List
|
2021-02-16 12:35:00 -05:00
|
|
|
from django.apps import apps
|
2020-09-17 16:02:52 -04:00
|
|
|
|
2020-11-27 20:58:21 -05:00
|
|
|
from .base_activity import ActivityObject, Link
|
2021-04-15 19:35:04 -04:00
|
|
|
from .image import Document
|
2020-09-17 16:02:52 -04:00
|
|
|
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2020-10-08 15:32:45 -04:00
|
|
|
@dataclass(init=False)
|
|
|
|
class Tombstone(ActivityObject):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""the placeholder for a deleted status"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
|
|
|
type: str = "Tombstone"
|
2020-10-08 15:32:45 -04:00
|
|
|
|
2021-03-08 12:54:02 -05:00
|
|
|
def to_model(self, *args, **kwargs): # pylint: disable=unused-argument
|
2021-04-26 12:15:42 -04:00
|
|
|
"""this should never really get serialized, just searched for"""
|
2021-03-08 12:54:02 -05:00
|
|
|
model = apps.get_model("bookwyrm.Status")
|
2021-02-16 12:35:00 -05:00
|
|
|
return model.find_existing_by_remote_id(self.id)
|
|
|
|
|
2020-10-08 15:32:45 -04:00
|
|
|
|
2021-06-18 17:29:24 -04:00
|
|
|
# pylint: disable=invalid-name
|
2020-09-17 16:02:52 -04:00
|
|
|
@dataclass(init=False)
|
|
|
|
class Note(ActivityObject):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""Note activity"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2020-09-17 16:02:52 -04:00
|
|
|
published: str
|
|
|
|
attributedTo: str
|
2021-03-08 11:49:10 -05:00
|
|
|
content: str = ""
|
2020-11-30 17:24:31 -05:00
|
|
|
to: List[str] = field(default_factory=lambda: [])
|
|
|
|
cc: List[str] = field(default_factory=lambda: [])
|
|
|
|
replies: Dict = field(default_factory=lambda: {})
|
2021-08-28 14:16:39 -04:00
|
|
|
inReplyTo: str = None
|
|
|
|
summary: str = None
|
2020-11-25 13:44:49 -05:00
|
|
|
tag: List[Link] = field(default_factory=lambda: [])
|
2021-04-15 19:35:04 -04:00
|
|
|
attachment: List[Document] = field(default_factory=lambda: [])
|
2020-09-17 16:02:52 -04:00
|
|
|
sensitive: bool = False
|
2021-10-15 11:56:07 -04:00
|
|
|
updated: str = None
|
2021-03-08 11:49:10 -05:00
|
|
|
type: str = "Note"
|
2020-09-17 16:02:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass(init=False)
|
|
|
|
class Article(Note):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""what's an article except a note with more fields"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2020-09-17 16:02:52 -04:00
|
|
|
name: str
|
2021-03-08 11:49:10 -05:00
|
|
|
type: str = "Article"
|
2020-09-17 16:02:52 -04:00
|
|
|
|
|
|
|
|
2020-09-28 20:26:15 -04:00
|
|
|
@dataclass(init=False)
|
|
|
|
class GeneratedNote(Note):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""just a re-typed note"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
|
|
|
type: str = "GeneratedNote"
|
2020-09-28 20:26:15 -04:00
|
|
|
|
|
|
|
|
2021-06-18 17:29:24 -04:00
|
|
|
# pylint: disable=invalid-name
|
2020-09-17 16:02:52 -04:00
|
|
|
@dataclass(init=False)
|
|
|
|
class Comment(Note):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""like a note but with a book"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2020-09-17 16:02:52 -04:00
|
|
|
inReplyToBook: str
|
2021-08-16 16:59:15 -04:00
|
|
|
readingStatus: str = None
|
|
|
|
progress: int = None
|
|
|
|
progressMode: str = None
|
2021-03-08 11:49:10 -05:00
|
|
|
type: str = "Comment"
|
2020-09-17 16:02:52 -04:00
|
|
|
|
|
|
|
|
2021-01-01 14:05:49 -05:00
|
|
|
@dataclass(init=False)
|
|
|
|
class Quotation(Comment):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""a quote and commentary on a book"""
|
2021-03-08 12:48:25 -05:00
|
|
|
|
2021-01-01 14:05:49 -05:00
|
|
|
quote: str
|
2021-09-05 19:00:40 -04:00
|
|
|
position: int = None
|
|
|
|
positionMode: str = None
|
2021-03-08 12:48:25 -05:00
|
|
|
type: str = "Quotation"
|
2021-01-01 14:05:49 -05:00
|
|
|
|
|
|
|
|
2020-09-17 16:02:52 -04:00
|
|
|
@dataclass(init=False)
|
|
|
|
class Review(Comment):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""a full book review"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2020-12-17 16:21:21 -05:00
|
|
|
name: str = None
|
2020-12-16 23:10:50 -05:00
|
|
|
rating: int = None
|
2021-03-08 11:49:10 -05:00
|
|
|
type: str = "Review"
|
2020-09-17 16:02:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass(init=False)
|
2021-01-01 14:05:49 -05:00
|
|
|
class Rating(Comment):
|
2021-04-26 12:15:42 -04:00
|
|
|
"""just a star rating"""
|
2021-03-08 11:49:10 -05:00
|
|
|
|
2021-02-25 13:17:24 -05:00
|
|
|
rating: int
|
2021-01-01 14:05:49 -05:00
|
|
|
content: str = None
|
2021-04-29 18:16:51 -04:00
|
|
|
name: str = None # not used, but the model inherits from Review
|
2021-03-08 12:48:25 -05:00
|
|
|
type: str = "Rating"
|