bookwyrm-mastodon/bookwyrm/activitypub/ordered_collection.py

77 lines
1.7 KiB
Python
Raw Normal View History

2021-03-08 11:49:10 -05:00
""" defines activitypub collections (lists) """
2021-02-02 12:37:46 -05:00
from dataclasses import dataclass, field
from typing import List
from .base_activity import ActivityObject
@dataclass(init=False)
class OrderedCollection(ActivityObject):
2021-03-08 11:49:10 -05:00
""" structure of an ordered collection activity """
totalItems: int
first: str
2021-02-02 12:37:46 -05:00
last: str = None
name: str = None
owner: str = None
2021-03-08 11:49:10 -05:00
type: str = "OrderedCollection"
@dataclass(init=False)
class OrderedCollectionPrivate(OrderedCollection):
2021-03-08 11:49:10 -05:00
""" an ordered collection with privacy settings """
2021-02-02 12:37:46 -05:00
to: List[str] = field(default_factory=lambda: [])
cc: List[str] = field(default_factory=lambda: [])
2021-03-08 11:49:10 -05:00
@dataclass(init=False)
class Shelf(OrderedCollectionPrivate):
2021-03-08 11:49:10 -05:00
""" structure of an ordered collection activity """
type: str = "Shelf"
@dataclass(init=False)
class BookList(OrderedCollectionPrivate):
2021-03-08 11:49:10 -05:00
""" structure of an ordered collection activity """
summary: str = None
2021-03-08 11:49:10 -05:00
curation: str = "closed"
type: str = "BookList"
@dataclass(init=False)
class OrderedCollectionPage(ActivityObject):
2021-03-08 11:49:10 -05:00
""" structure of an ordered collection activity """
partOf: str
orderedItems: List
2021-02-17 16:33:48 -05:00
next: str = None
prev: str = None
2021-03-08 11:49:10 -05:00
type: str = "OrderedCollectionPage"
2021-04-08 17:16:34 -04:00
@dataclass(init=False)
class CollectionItem(ActivityObject):
""" an item in a collection """
actor: str
type: str = "CollectionItem"
@dataclass(init=False)
class ListItem(CollectionItem):
""" a book on a list """
book: str
notes: str = None
approved: bool = True
order: int = None
type: str = "ListItem"
@dataclass(init=False)
class ShelfItem(CollectionItem):
""" a book on a list """
book: str
type: str = "ShelfItem"