Re-structures link models

This commit is contained in:
Mouse Reeve
2021-12-15 16:23:21 -08:00
parent af8cb51325
commit 86b294afd7
7 changed files with 32 additions and 27 deletions

View File

@ -1,4 +1,7 @@
""" outlink data """
from django.db import models
from bookwyrm import activitypub
from .activitypub_mixin import ActivitypubMixin
from .base_model import BookWyrmModel
from . import fields
@ -7,9 +10,12 @@ from . import fields
class Link(ActivitypubMixin, BookWyrmModel):
"""a link to a website"""
url = fields.URLField(max_length=255)
url = fields.URLField(max_length=255, activitypub_field="href")
name = fields.CharField(max_length=255)
activity_serializer = activitypub.Link
reverse_unfurl = True
def save(self, *args, **kwargs):
"""create a link"""
# this is never broadcast, the owning model broadcasts an update
@ -21,4 +27,7 @@ class Link(ActivitypubMixin, BookWyrmModel):
class FileLink(Link):
"""a link to a file"""
filetype = fields.CharField(max_length=5)
book = fields.ForeignKey(
"Book", on_delete=models.CASCADE, related_name="file_links", null=True
)
filetype = fields.CharField(max_length=5, activitypub_field="mediaType")