bookwyrm/bookwyrm/activitypub/person.py

46 lines
1 KiB
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" actor serializer """
2023-11-09 00:00:10 +00:00
from dataclasses import dataclass
from typing import Dict
2020-11-30 18:32:13 +00:00
from .base_activity import ActivityObject
2021-04-17 18:47:48 +00:00
from .image import Image
2020-11-30 18:32:13 +00:00
2021-06-18 21:29:24 +00:00
# pylint: disable=invalid-name
2020-11-30 18:32:13 +00:00
@dataclass(init=False)
class PublicKey(ActivityObject):
2021-04-26 16:15:42 +00:00
"""public key block"""
2021-03-08 16:49:10 +00:00
2020-11-30 18:32:13 +00:00
owner: str
publicKeyPem: str
2021-03-08 16:49:10 +00:00
type: str = "PublicKey"
2020-11-30 18:32:13 +00:00
2021-12-16 01:10:59 +00:00
def serialize(self, **kwargs):
"""remove fields"""
omit = ("type", "@context")
return super().serialize(omit=omit)
2020-11-30 18:32:13 +00:00
2021-06-18 21:29:24 +00:00
# pylint: disable=invalid-name
@dataclass(init=False)
class Person(ActivityObject):
2021-04-26 16:15:42 +00:00
"""actor activitypub json"""
2021-03-08 16:49:10 +00:00
preferredUsername: str
inbox: str
publicKey: PublicKey
2021-04-02 14:38:37 +00:00
followers: str = None
following: str = None
outbox: str = None
endpoints: Dict = None
name: str = None
summary: str = None
icon: Image = None
2020-10-31 20:06:22 +00:00
bookwyrmUser: bool = False
manuallyApprovesFollowers: str = False
discoverable: str = False
2022-02-28 19:48:49 +00:00
hideFollows: str = False
movedTo: str = None
alsoKnownAs: dict[str] = None
2021-03-08 16:49:10 +00:00
type: str = "Person"