forked from mirrors/bookwyrm
29 lines
852 B
Python
29 lines
852 B
Python
''' media that is posted in the app '''
|
|
from django.db import models
|
|
|
|
from bookwyrm import activitypub
|
|
from .base_model import ActivitypubMixin
|
|
from .base_model import BookWyrmModel
|
|
from . import fields
|
|
|
|
|
|
class Attachment(ActivitypubMixin, BookWyrmModel):
|
|
''' an image (or, in the future, video etc) associated with a status '''
|
|
status = fields.ForeignKey(
|
|
'Status',
|
|
on_delete=models.CASCADE,
|
|
related_name='attachments',
|
|
null=True
|
|
)
|
|
reverse_unfurl = True
|
|
class Meta:
|
|
''' one day we'll have other types of attachments besides images '''
|
|
abstract = True
|
|
|
|
|
|
class Image(Attachment):
|
|
''' an image attachment '''
|
|
image = fields.ImageField(upload_to='status/', null=True, blank=True)
|
|
caption = fields.TextField(null=True, blank=True)
|
|
|
|
activity_serializer = activitypub.Image
|