bookwyrm/bookwyrm/models/attachment.py

33 lines
904 B
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" media that is posted in the app """
from django.db import models
from bookwyrm import activitypub
from .activitypub_mixin import ActivitypubMixin
2020-11-30 22:24:31 +00:00
from .base_model import BookWyrmModel
from . import fields
class Attachment(ActivitypubMixin, BookWyrmModel):
2021-03-08 16:49:10 +00:00
""" an image (or, in the future, video etc) associated with a status """
status = models.ForeignKey(
2021-03-08 16:49:10 +00:00
"Status", on_delete=models.CASCADE, related_name="attachments", null=True
)
2020-11-30 22:24:31 +00:00
reverse_unfurl = True
2021-03-08 16:49:10 +00:00
class Meta:
2021-03-08 16:49:10 +00:00
""" one day we'll have other types of attachments besides images """
abstract = True
class Image(Attachment):
2021-03-08 16:49:10 +00:00
""" an image attachment """
image = fields.ImageField(
2021-03-08 16:49:10 +00:00
upload_to="status/", null=True, blank=True, activitypub_field="url"
)
caption = fields.TextField(null=True, blank=True, activitypub_field="name")
activity_serializer = activitypub.Image