2018-04-27 19:10:02 +00:00
|
|
|
import logging
|
2018-03-31 13:47:21 +00:00
|
|
|
import urllib.parse
|
2019-05-14 08:59:49 +00:00
|
|
|
import uuid
|
2018-03-31 13:47:21 +00:00
|
|
|
|
2018-04-06 15:58:43 +00:00
|
|
|
from django.core.paginator import Paginator
|
2019-11-27 11:26:12 +00:00
|
|
|
from django.db import transaction
|
|
|
|
|
2018-03-31 13:47:21 +00:00
|
|
|
from rest_framework import serializers
|
2018-03-30 16:02:50 +00:00
|
|
|
|
2020-01-14 13:00:08 +00:00
|
|
|
from funkwhale_api.common import utils as common_utils
|
2019-11-27 11:26:12 +00:00
|
|
|
from funkwhale_api.common import models as common_models
|
2019-04-11 08:17:10 +00:00
|
|
|
from funkwhale_api.music import licenses
|
2018-05-23 19:50:23 +00:00
|
|
|
from funkwhale_api.music import models as music_models
|
2019-04-11 08:17:10 +00:00
|
|
|
from funkwhale_api.music import tasks as music_tasks
|
2019-07-10 17:41:00 +00:00
|
|
|
from funkwhale_api.tags import models as tags_models
|
2018-03-28 22:00:47 +00:00
|
|
|
|
2019-04-11 09:25:17 +00:00
|
|
|
from . import activity, actors, contexts, jsonld, models, tasks, utils
|
2018-03-28 22:00:47 +00:00
|
|
|
|
2018-04-27 19:10:02 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-04-07 15:18:54 +00:00
|
|
|
|
2020-01-23 10:09:52 +00:00
|
|
|
class TruncatedCharField(serializers.CharField):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.truncate_length = kwargs.pop("truncate_length")
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def to_internal_value(self, v):
|
|
|
|
v = super().to_internal_value(v)
|
|
|
|
if v:
|
|
|
|
v = v[: self.truncate_length]
|
|
|
|
return v
|
|
|
|
|
|
|
|
|
2020-02-04 13:24:20 +00:00
|
|
|
class MediaSerializer(jsonld.JsonLdSerializer):
|
2018-09-23 12:38:42 +00:00
|
|
|
mediaType = serializers.CharField()
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.allowed_mimetypes = kwargs.pop("allowed_mimetypes", [])
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def validate_mediaType(self, v):
|
|
|
|
if not self.allowed_mimetypes:
|
|
|
|
# no restrictions
|
|
|
|
return v
|
|
|
|
for mt in self.allowed_mimetypes:
|
|
|
|
if mt.endswith("/*"):
|
|
|
|
if v.startswith(mt.replace("*", "")):
|
|
|
|
return v
|
|
|
|
else:
|
|
|
|
if v == mt:
|
|
|
|
return v
|
|
|
|
raise serializers.ValidationError(
|
|
|
|
"Invalid mimetype {}. Allowed: {}".format(v, self.allowed_mimetypes)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-02-04 13:24:20 +00:00
|
|
|
class LinkSerializer(MediaSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.Link])
|
|
|
|
href = serializers.URLField(max_length=500)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {
|
|
|
|
"href": jsonld.first_id(contexts.AS.href),
|
|
|
|
"mediaType": jsonld.first_val(contexts.AS.mediaType),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class ImageSerializer(MediaSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.Image, contexts.AS.Link])
|
|
|
|
href = serializers.URLField(max_length=500, required=False)
|
|
|
|
url = serializers.URLField(max_length=500, required=False)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {
|
|
|
|
"url": jsonld.first_id(contexts.AS.url),
|
|
|
|
"href": jsonld.first_id(contexts.AS.href),
|
|
|
|
"mediaType": jsonld.first_val(contexts.AS.mediaType),
|
|
|
|
}
|
|
|
|
|
|
|
|
def validate(self, data):
|
|
|
|
validated_data = super().validate(data)
|
|
|
|
if "url" not in validated_data:
|
|
|
|
try:
|
|
|
|
validated_data["url"] = validated_data["href"]
|
|
|
|
except KeyError:
|
|
|
|
if self.required:
|
|
|
|
raise serializers.ValidationError(
|
|
|
|
"You need to provide a url or href"
|
|
|
|
)
|
|
|
|
|
|
|
|
return validated_data
|
|
|
|
|
|
|
|
|
2020-02-07 09:48:17 +00:00
|
|
|
class URLSerializer(jsonld.JsonLdSerializer):
|
|
|
|
href = serializers.URLField(max_length=500)
|
|
|
|
mediaType = serializers.CharField(required=False)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {
|
|
|
|
"href": jsonld.first_id(contexts.AS.href, aliases=[jsonld.raw("@id")]),
|
|
|
|
"mediaType": jsonld.first_val(contexts.AS.mediaType),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class EndpointsSerializer(jsonld.JsonLdSerializer):
|
|
|
|
sharedInbox = serializers.URLField(max_length=500, required=False)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {"sharedInbox": jsonld.first_id(contexts.AS.sharedInbox)}
|
|
|
|
|
|
|
|
|
|
|
|
class PublicKeySerializer(jsonld.JsonLdSerializer):
|
|
|
|
publicKeyPem = serializers.CharField(trim_whitespace=False)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {"publicKeyPem": jsonld.first_val(contexts.SEC.publicKeyPem)}
|
|
|
|
|
|
|
|
|
2020-02-07 09:48:17 +00:00
|
|
|
def get_by_media_type(urls, media_type):
|
|
|
|
for url in urls:
|
|
|
|
if url.get("mediaType", "text/html") == media_type:
|
|
|
|
return url
|
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class ActorSerializer(jsonld.JsonLdSerializer):
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
2019-12-09 12:59:54 +00:00
|
|
|
outbox = serializers.URLField(max_length=500, required=False)
|
|
|
|
inbox = serializers.URLField(max_length=500, required=False)
|
2020-02-07 09:48:17 +00:00
|
|
|
url = serializers.ListField(
|
|
|
|
child=URLSerializer(jsonld_expand=False), required=False, min_length=0
|
|
|
|
)
|
2019-03-05 14:15:37 +00:00
|
|
|
type = serializers.ChoiceField(
|
|
|
|
choices=[getattr(contexts.AS, c[0]) for c in models.TYPE_CHOICES]
|
|
|
|
)
|
2018-04-12 17:30:39 +00:00
|
|
|
preferredUsername = serializers.CharField()
|
|
|
|
manuallyApprovesFollowers = serializers.NullBooleanField(required=False)
|
|
|
|
name = serializers.CharField(required=False, max_length=200)
|
2020-01-23 10:09:52 +00:00
|
|
|
summary = TruncatedCharField(
|
|
|
|
truncate_length=common_models.CONTENT_TEXT_MAX_LENGTH,
|
|
|
|
required=False,
|
|
|
|
allow_null=True,
|
|
|
|
)
|
2019-12-09 12:59:54 +00:00
|
|
|
followers = serializers.URLField(max_length=500, required=False)
|
2018-05-21 17:04:28 +00:00
|
|
|
following = serializers.URLField(max_length=500, required=False, allow_null=True)
|
2019-03-05 14:15:37 +00:00
|
|
|
publicKey = PublicKeySerializer(required=False)
|
|
|
|
endpoints = EndpointsSerializer(required=False)
|
2020-02-04 13:24:20 +00:00
|
|
|
icon = ImageSerializer(
|
2020-01-23 15:38:04 +00:00
|
|
|
allowed_mimetypes=["image/*"], allow_null=True, required=False
|
|
|
|
)
|
2019-03-05 14:15:37 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {
|
|
|
|
"outbox": jsonld.first_id(contexts.AS.outbox),
|
|
|
|
"inbox": jsonld.first_id(contexts.LDP.inbox),
|
|
|
|
"following": jsonld.first_id(contexts.AS.following),
|
|
|
|
"followers": jsonld.first_id(contexts.AS.followers),
|
|
|
|
"preferredUsername": jsonld.first_val(contexts.AS.preferredUsername),
|
|
|
|
"summary": jsonld.first_val(contexts.AS.summary),
|
|
|
|
"name": jsonld.first_val(contexts.AS.name),
|
|
|
|
"publicKey": jsonld.first_obj(contexts.SEC.publicKey),
|
|
|
|
"manuallyApprovesFollowers": jsonld.first_val(
|
|
|
|
contexts.AS.manuallyApprovesFollowers
|
|
|
|
),
|
|
|
|
"mediaType": jsonld.first_val(contexts.AS.mediaType),
|
|
|
|
"endpoints": jsonld.first_obj(contexts.AS.endpoints),
|
2020-01-23 15:38:04 +00:00
|
|
|
"icon": jsonld.first_obj(contexts.AS.icon),
|
2020-02-07 09:48:17 +00:00
|
|
|
"url": jsonld.raw(contexts.AS.url),
|
2019-03-05 14:15:37 +00:00
|
|
|
}
|
2018-03-30 16:02:50 +00:00
|
|
|
|
2018-03-31 13:47:21 +00:00
|
|
|
def to_representation(self, instance):
|
2018-04-12 17:30:39 +00:00
|
|
|
ret = {
|
2018-09-06 18:35:02 +00:00
|
|
|
"id": instance.fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"outbox": instance.outbox_url,
|
|
|
|
"inbox": instance.inbox_url,
|
|
|
|
"preferredUsername": instance.preferred_username,
|
|
|
|
"type": instance.type,
|
2018-04-12 17:30:39 +00:00
|
|
|
}
|
|
|
|
if instance.name:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["name"] = instance.name
|
2018-04-12 17:30:39 +00:00
|
|
|
if instance.followers_url:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["followers"] = instance.followers_url
|
2018-04-12 17:30:39 +00:00
|
|
|
if instance.following_url:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["following"] = instance.following_url
|
2018-04-12 17:30:39 +00:00
|
|
|
if instance.manually_approves_followers is not None:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["manuallyApprovesFollowers"] = instance.manually_approves_followers
|
2018-04-12 17:30:39 +00:00
|
|
|
|
2020-01-23 10:09:52 +00:00
|
|
|
if instance.summary_obj_id:
|
|
|
|
ret["summary"] = instance.summary_obj.rendered
|
2020-02-07 09:48:17 +00:00
|
|
|
urls = []
|
|
|
|
if instance.url:
|
|
|
|
urls.append(
|
|
|
|
{"type": "Link", "href": instance.url, "mediaType": "text/html"}
|
|
|
|
)
|
|
|
|
|
|
|
|
channel = instance.get_channel()
|
|
|
|
if channel:
|
|
|
|
ret["url"] = [
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"href": instance.channel.get_absolute_url()
|
|
|
|
if instance.channel.artist.is_local
|
|
|
|
else instance.get_absolute_url(),
|
|
|
|
"mediaType": "text/html",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"href": instance.channel.get_rss_url(),
|
|
|
|
"mediaType": "application/rss+xml",
|
|
|
|
},
|
|
|
|
]
|
2020-02-14 13:23:45 +00:00
|
|
|
include_image(ret, channel.artist.attachment_cover, "icon")
|
2020-02-07 09:48:17 +00:00
|
|
|
else:
|
|
|
|
ret["url"] = [
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"href": instance.get_absolute_url(),
|
|
|
|
"mediaType": "text/html",
|
|
|
|
}
|
|
|
|
]
|
2020-02-14 13:23:45 +00:00
|
|
|
include_image(ret, instance.attachment_icon, "icon")
|
2020-01-23 10:09:52 +00:00
|
|
|
|
2019-07-01 12:00:32 +00:00
|
|
|
ret["@context"] = jsonld.get_default_context()
|
2018-03-31 13:47:21 +00:00
|
|
|
if instance.public_key:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["publicKey"] = {
|
2018-09-06 18:35:02 +00:00
|
|
|
"owner": instance.fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"publicKeyPem": instance.public_key,
|
2018-09-06 18:35:02 +00:00
|
|
|
"id": "{}#main-key".format(instance.fid),
|
2018-03-31 13:47:21 +00:00
|
|
|
}
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["endpoints"] = {}
|
2020-01-23 15:38:04 +00:00
|
|
|
|
2018-03-31 13:47:21 +00:00
|
|
|
if instance.shared_inbox_url:
|
2018-06-09 13:36:16 +00:00
|
|
|
ret["endpoints"]["sharedInbox"] = instance.shared_inbox_url
|
2018-03-31 13:47:21 +00:00
|
|
|
return ret
|
|
|
|
|
|
|
|
def prepare_missing_fields(self):
|
2018-04-12 17:30:39 +00:00
|
|
|
kwargs = {
|
2018-09-06 18:35:02 +00:00
|
|
|
"fid": self.validated_data["id"],
|
2019-12-09 12:59:54 +00:00
|
|
|
"outbox_url": self.validated_data.get("outbox"),
|
|
|
|
"inbox_url": self.validated_data.get("inbox"),
|
2018-06-09 13:36:16 +00:00
|
|
|
"following_url": self.validated_data.get("following"),
|
|
|
|
"followers_url": self.validated_data.get("followers"),
|
|
|
|
"type": self.validated_data["type"],
|
|
|
|
"name": self.validated_data.get("name"),
|
|
|
|
"preferred_username": self.validated_data["preferredUsername"],
|
2018-04-12 17:30:39 +00:00
|
|
|
}
|
2020-02-07 09:48:17 +00:00
|
|
|
url = get_by_media_type(self.validated_data.get("url", []), "text/html")
|
|
|
|
if url:
|
|
|
|
kwargs["url"] = url["href"]
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
maf = self.validated_data.get("manuallyApprovesFollowers")
|
2018-04-12 17:30:39 +00:00
|
|
|
if maf is not None:
|
2018-06-09 13:36:16 +00:00
|
|
|
kwargs["manually_approves_followers"] = maf
|
2018-09-06 18:35:02 +00:00
|
|
|
domain = urllib.parse.urlparse(kwargs["fid"]).netloc
|
2019-04-11 09:25:17 +00:00
|
|
|
domain, domain_created = models.Domain.objects.get_or_create(pk=domain)
|
|
|
|
if domain_created and not domain.is_local:
|
|
|
|
# first time we see the domain, we trigger nodeinfo fetching
|
|
|
|
tasks.update_domain_nodeinfo(domain_name=domain.name)
|
|
|
|
|
|
|
|
kwargs["domain"] = domain
|
2019-03-05 14:15:37 +00:00
|
|
|
for endpoint, url in self.validated_data.get("endpoints", {}).items():
|
2018-06-09 13:36:16 +00:00
|
|
|
if endpoint == "sharedInbox":
|
|
|
|
kwargs["shared_inbox_url"] = url
|
2018-03-31 13:47:21 +00:00
|
|
|
break
|
|
|
|
try:
|
2019-03-05 14:15:37 +00:00
|
|
|
kwargs["public_key"] = self.validated_data["publicKey"]["publicKeyPem"]
|
2018-03-31 13:47:21 +00:00
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
return kwargs
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
def validate_type(self, v):
|
|
|
|
return v.split("#")[-1]
|
|
|
|
|
2018-03-31 13:47:21 +00:00
|
|
|
def build(self):
|
2018-04-12 17:30:39 +00:00
|
|
|
d = self.prepare_missing_fields()
|
|
|
|
return models.Actor(**d)
|
2018-03-31 13:47:21 +00:00
|
|
|
|
|
|
|
def save(self, **kwargs):
|
2018-04-12 17:30:39 +00:00
|
|
|
d = self.prepare_missing_fields()
|
|
|
|
d.update(kwargs)
|
2020-01-23 10:09:52 +00:00
|
|
|
actor = models.Actor.objects.update_or_create(fid=d["fid"], defaults=d)[0]
|
|
|
|
common_utils.attach_content(
|
|
|
|
actor, "summary_obj", self.validated_data["summary"]
|
|
|
|
)
|
2020-01-23 15:38:04 +00:00
|
|
|
if "icon" in self.validated_data:
|
|
|
|
new_value = self.validated_data["icon"]
|
|
|
|
common_utils.attach_file(
|
|
|
|
actor,
|
|
|
|
"attachment_icon",
|
2020-02-04 13:24:20 +00:00
|
|
|
{"url": new_value["url"], "mimetype": new_value["mediaType"]}
|
2020-01-23 15:38:04 +00:00
|
|
|
if new_value
|
|
|
|
else None,
|
|
|
|
)
|
2020-01-23 10:09:52 +00:00
|
|
|
return actor
|
2018-03-31 13:47:21 +00:00
|
|
|
|
2020-01-23 10:09:52 +00:00
|
|
|
def validate(self, data):
|
|
|
|
validated_data = super().validate(data)
|
|
|
|
if "summary" in data:
|
|
|
|
validated_data["summary"] = {
|
|
|
|
"content_type": "text/html",
|
|
|
|
"text": data["summary"],
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
validated_data["summary"] = None
|
|
|
|
return validated_data
|
2018-03-31 16:41:15 +00:00
|
|
|
|
|
|
|
|
2018-04-10 21:17:51 +00:00
|
|
|
class APIActorSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = models.Actor
|
|
|
|
fields = [
|
2018-09-06 18:35:02 +00:00
|
|
|
"fid",
|
2018-06-09 13:36:16 +00:00
|
|
|
"url",
|
|
|
|
"creation_date",
|
|
|
|
"summary",
|
|
|
|
"preferred_username",
|
|
|
|
"name",
|
|
|
|
"last_fetch_date",
|
|
|
|
"domain",
|
|
|
|
"type",
|
|
|
|
"manually_approves_followers",
|
2018-09-06 18:35:02 +00:00
|
|
|
"full_username",
|
2019-11-27 14:28:21 +00:00
|
|
|
"is_local",
|
2018-04-10 21:17:51 +00:00
|
|
|
]
|
2018-04-11 19:58:41 +00:00
|
|
|
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
class BaseActivitySerializer(serializers.Serializer):
|
|
|
|
id = serializers.URLField(max_length=500, required=False)
|
|
|
|
type = serializers.CharField(max_length=100)
|
|
|
|
actor = serializers.URLField(max_length=500)
|
2018-06-09 13:36:16 +00:00
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def validate_actor(self, v):
|
|
|
|
expected = self.context.get("actor")
|
|
|
|
if expected and expected.fid != v:
|
|
|
|
raise serializers.ValidationError("Invalid actor")
|
|
|
|
if expected:
|
|
|
|
# avoid a DB lookup
|
|
|
|
return expected
|
2018-04-14 16:50:37 +00:00
|
|
|
try:
|
2018-09-06 18:35:02 +00:00
|
|
|
return models.Actor.objects.get(fid=v)
|
|
|
|
except models.Actor.DoesNotExist:
|
|
|
|
raise serializers.ValidationError("Actor not found")
|
2018-04-14 16:50:37 +00:00
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def create(self, validated_data):
|
|
|
|
return models.Activity.objects.create(
|
|
|
|
fid=validated_data.get("id"),
|
|
|
|
actor=validated_data["actor"],
|
|
|
|
payload=self.initial_data,
|
2018-09-13 15:18:23 +00:00
|
|
|
type=validated_data["type"],
|
2018-09-06 18:35:02 +00:00
|
|
|
)
|
2018-04-10 20:47:13 +00:00
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def validate(self, data):
|
|
|
|
data["recipients"] = self.validate_recipients(self.initial_data)
|
|
|
|
return super().validate(data)
|
2018-04-10 20:47:13 +00:00
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def validate_recipients(self, payload):
|
|
|
|
"""
|
|
|
|
Ensure we have at least a to/cc field with valid actors
|
|
|
|
"""
|
|
|
|
to = payload.get("to", [])
|
|
|
|
cc = payload.get("cc", [])
|
2018-04-10 20:47:13 +00:00
|
|
|
|
2019-12-09 12:59:54 +00:00
|
|
|
if not to and not cc and not self.context.get("recipients"):
|
2018-09-06 18:35:02 +00:00
|
|
|
raise serializers.ValidationError(
|
|
|
|
"We cannot handle an activity with no recipient"
|
2018-04-10 20:47:13 +00:00
|
|
|
)
|
|
|
|
|
2018-04-12 18:38:06 +00:00
|
|
|
|
2018-04-10 19:25:35 +00:00
|
|
|
class FollowSerializer(serializers.Serializer):
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
object = serializers.URLField(max_length=500)
|
|
|
|
actor = serializers.URLField(max_length=500)
|
2018-06-09 13:36:16 +00:00
|
|
|
type = serializers.ChoiceField(choices=["Follow"])
|
2018-04-03 21:24:51 +00:00
|
|
|
|
2018-04-10 19:25:35 +00:00
|
|
|
def validate_object(self, v):
|
2018-06-09 13:36:16 +00:00
|
|
|
expected = self.context.get("follow_target")
|
2018-09-06 18:35:02 +00:00
|
|
|
if self.parent:
|
|
|
|
# it's probably an accept, so everything is inverted, the actor
|
|
|
|
# the recipient does not matter
|
|
|
|
recipient = None
|
|
|
|
else:
|
|
|
|
recipient = self.context.get("recipient")
|
|
|
|
if expected and expected.fid != v:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Invalid target")
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-09-06 18:35:02 +00:00
|
|
|
obj = models.Actor.objects.get(fid=v)
|
|
|
|
if recipient and recipient.fid != obj.fid:
|
|
|
|
raise serializers.ValidationError("Invalid target")
|
|
|
|
return obj
|
2018-04-10 19:25:35 +00:00
|
|
|
except models.Actor.DoesNotExist:
|
2018-09-06 18:35:02 +00:00
|
|
|
pass
|
|
|
|
try:
|
|
|
|
qs = music_models.Library.objects.filter(fid=v)
|
|
|
|
if recipient:
|
|
|
|
qs = qs.filter(actor=recipient)
|
|
|
|
return qs.get()
|
|
|
|
except music_models.Library.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
raise serializers.ValidationError("Target not found")
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def validate_actor(self, v):
|
2018-06-09 13:36:16 +00:00
|
|
|
expected = self.context.get("follow_actor")
|
2018-09-06 18:35:02 +00:00
|
|
|
if expected and expected.fid != v:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Invalid actor")
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-09-06 18:35:02 +00:00
|
|
|
return models.Actor.objects.get(fid=v)
|
2018-04-10 19:25:35 +00:00
|
|
|
except models.Actor.DoesNotExist:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Actor not found")
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def save(self, **kwargs):
|
2018-09-06 18:35:02 +00:00
|
|
|
target = self.validated_data["object"]
|
|
|
|
|
|
|
|
if target._meta.label == "music.Library":
|
|
|
|
follow_class = models.LibraryFollow
|
|
|
|
else:
|
|
|
|
follow_class = models.Follow
|
|
|
|
defaults = kwargs
|
|
|
|
defaults["fid"] = self.validated_data["id"]
|
2019-05-14 08:59:49 +00:00
|
|
|
approved = kwargs.pop("approved", None)
|
|
|
|
follow, created = follow_class.objects.update_or_create(
|
2018-06-09 13:36:16 +00:00
|
|
|
actor=self.validated_data["actor"],
|
|
|
|
target=self.validated_data["object"],
|
2018-09-06 18:35:02 +00:00
|
|
|
defaults=defaults,
|
2019-05-14 08:59:49 +00:00
|
|
|
)
|
|
|
|
if not created:
|
|
|
|
# We likely received a new follow when we had an existing one in database
|
|
|
|
# this can happen when two instances are out of sync, e.g because some
|
|
|
|
# messages are not delivered properly. In this case, we don't change
|
|
|
|
# the follow approved status and return the follow as is.
|
|
|
|
# We set a new UUID to ensure the follow urls are updated properly
|
|
|
|
# cf #830
|
|
|
|
follow.uuid = uuid.uuid4()
|
|
|
|
follow.save(update_fields=["uuid"])
|
|
|
|
return follow
|
|
|
|
|
|
|
|
# it's a brand new follow, we use the approved value stored earlier
|
|
|
|
if approved != follow.approved:
|
|
|
|
follow.approved = approved
|
|
|
|
follow.save(update_fields=["approved"])
|
|
|
|
|
|
|
|
return follow
|
2018-04-03 21:24:51 +00:00
|
|
|
|
|
|
|
def to_representation(self, instance):
|
2018-04-10 19:25:35 +00:00
|
|
|
return {
|
2019-07-01 12:00:32 +00:00
|
|
|
"@context": jsonld.get_default_context(),
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": instance.actor.fid,
|
|
|
|
"id": instance.get_federation_id(),
|
|
|
|
"object": instance.target.fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"type": "Follow",
|
2018-04-10 19:25:35 +00:00
|
|
|
}
|
2018-04-03 21:24:51 +00:00
|
|
|
|
|
|
|
|
2018-04-10 20:47:13 +00:00
|
|
|
class APIFollowSerializer(serializers.ModelSerializer):
|
2018-04-10 21:17:51 +00:00
|
|
|
actor = APIActorSerializer()
|
|
|
|
target = APIActorSerializer()
|
|
|
|
|
2018-04-10 20:47:13 +00:00
|
|
|
class Meta:
|
|
|
|
model = models.Follow
|
|
|
|
fields = [
|
2018-06-09 13:36:16 +00:00
|
|
|
"uuid",
|
|
|
|
"id",
|
|
|
|
"approved",
|
|
|
|
"creation_date",
|
|
|
|
"modification_date",
|
|
|
|
"actor",
|
|
|
|
"target",
|
2018-04-10 20:47:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2018-04-10 19:25:35 +00:00
|
|
|
class AcceptFollowSerializer(serializers.Serializer):
|
2018-09-06 18:35:02 +00:00
|
|
|
id = serializers.URLField(max_length=500, required=False)
|
2018-05-21 17:04:28 +00:00
|
|
|
actor = serializers.URLField(max_length=500)
|
2018-04-10 19:25:35 +00:00
|
|
|
object = FollowSerializer()
|
2018-06-09 13:36:16 +00:00
|
|
|
type = serializers.ChoiceField(choices=["Accept"])
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def validate_actor(self, v):
|
2018-09-06 18:35:02 +00:00
|
|
|
expected = self.context.get("actor")
|
|
|
|
if expected and expected.fid != v:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Invalid actor")
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-09-06 18:35:02 +00:00
|
|
|
return models.Actor.objects.get(fid=v)
|
2018-04-10 19:25:35 +00:00
|
|
|
except models.Actor.DoesNotExist:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Actor not found")
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def validate(self, validated_data):
|
2018-09-06 18:35:02 +00:00
|
|
|
# we ensure the accept actor actually match the follow target / library owner
|
|
|
|
target = validated_data["object"]["object"]
|
|
|
|
|
|
|
|
if target._meta.label == "music.Library":
|
|
|
|
expected = target.actor
|
|
|
|
follow_class = models.LibraryFollow
|
|
|
|
else:
|
|
|
|
expected = target
|
|
|
|
follow_class = models.Follow
|
|
|
|
if validated_data["actor"] != expected:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Actor mismatch")
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-06-09 13:36:16 +00:00
|
|
|
validated_data["follow"] = (
|
2018-09-06 18:35:02 +00:00
|
|
|
follow_class.objects.filter(
|
|
|
|
target=target, actor=validated_data["object"]["actor"]
|
2018-06-09 13:36:16 +00:00
|
|
|
)
|
|
|
|
.exclude(approved=True)
|
2018-09-06 18:35:02 +00:00
|
|
|
.select_related()
|
2018-06-09 13:36:16 +00:00
|
|
|
.get()
|
|
|
|
)
|
2018-09-06 18:35:02 +00:00
|
|
|
except follow_class.DoesNotExist:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("No follow to accept")
|
2018-04-10 19:25:35 +00:00
|
|
|
return validated_data
|
|
|
|
|
|
|
|
def to_representation(self, instance):
|
2018-09-06 18:35:02 +00:00
|
|
|
if instance.target._meta.label == "music.Library":
|
|
|
|
actor = instance.target.actor
|
|
|
|
else:
|
|
|
|
actor = instance.target
|
|
|
|
|
2018-04-10 19:25:35 +00:00
|
|
|
return {
|
2019-07-01 12:00:32 +00:00
|
|
|
"@context": jsonld.get_default_context(),
|
2018-09-06 18:35:02 +00:00
|
|
|
"id": instance.get_federation_id() + "/accept",
|
2018-04-10 19:25:35 +00:00
|
|
|
"type": "Accept",
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": actor.fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"object": FollowSerializer(instance).data,
|
2018-04-10 19:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def save(self):
|
2018-09-06 18:35:02 +00:00
|
|
|
follow = self.validated_data["follow"]
|
|
|
|
follow.approved = True
|
|
|
|
follow.save()
|
|
|
|
if follow.target._meta.label == "music.Library":
|
2018-09-24 18:44:22 +00:00
|
|
|
follow.target.schedule_scan(actor=follow.actor)
|
2018-09-06 18:35:02 +00:00
|
|
|
return follow
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UndoFollowSerializer(serializers.Serializer):
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
actor = serializers.URLField(max_length=500)
|
2018-04-10 19:25:35 +00:00
|
|
|
object = FollowSerializer()
|
2018-06-09 13:36:16 +00:00
|
|
|
type = serializers.ChoiceField(choices=["Undo"])
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def validate_actor(self, v):
|
2018-09-24 18:44:22 +00:00
|
|
|
expected = self.context.get("actor")
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
if expected and expected.fid != v:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Invalid actor")
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-09-06 18:35:02 +00:00
|
|
|
return models.Actor.objects.get(fid=v)
|
2018-04-10 19:25:35 +00:00
|
|
|
except models.Actor.DoesNotExist:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Actor not found")
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
def validate(self, validated_data):
|
|
|
|
# we ensure the accept actor actually match the follow actor
|
2018-06-09 13:36:16 +00:00
|
|
|
if validated_data["actor"] != validated_data["object"]["actor"]:
|
|
|
|
raise serializers.ValidationError("Actor mismatch")
|
2018-09-24 18:44:22 +00:00
|
|
|
|
|
|
|
target = validated_data["object"]["object"]
|
|
|
|
|
|
|
|
if target._meta.label == "music.Library":
|
|
|
|
follow_class = models.LibraryFollow
|
|
|
|
else:
|
|
|
|
follow_class = models.Follow
|
|
|
|
|
2018-04-10 19:25:35 +00:00
|
|
|
try:
|
2018-09-24 18:44:22 +00:00
|
|
|
validated_data["follow"] = follow_class.objects.filter(
|
|
|
|
actor=validated_data["actor"], target=target
|
2018-04-10 19:25:35 +00:00
|
|
|
).get()
|
2018-09-24 18:44:22 +00:00
|
|
|
except follow_class.DoesNotExist:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("No follow to remove")
|
2018-04-10 19:25:35 +00:00
|
|
|
return validated_data
|
|
|
|
|
|
|
|
def to_representation(self, instance):
|
|
|
|
return {
|
2019-07-01 12:00:32 +00:00
|
|
|
"@context": jsonld.get_default_context(),
|
2018-09-06 18:35:02 +00:00
|
|
|
"id": instance.get_federation_id() + "/undo",
|
2018-04-10 19:25:35 +00:00
|
|
|
"type": "Undo",
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": instance.actor.fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"object": FollowSerializer(instance).data,
|
2018-04-10 19:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def save(self):
|
2018-06-09 13:36:16 +00:00
|
|
|
return self.validated_data["follow"].delete()
|
2018-04-10 19:25:35 +00:00
|
|
|
|
|
|
|
|
2018-04-08 08:42:10 +00:00
|
|
|
class ActorWebfingerSerializer(serializers.Serializer):
|
|
|
|
subject = serializers.CharField()
|
2018-05-21 17:04:28 +00:00
|
|
|
aliases = serializers.ListField(child=serializers.URLField(max_length=500))
|
2018-04-08 08:42:10 +00:00
|
|
|
links = serializers.ListField()
|
2018-05-21 17:04:28 +00:00
|
|
|
actor_url = serializers.URLField(max_length=500, required=False)
|
2018-04-08 08:42:10 +00:00
|
|
|
|
|
|
|
def validate(self, validated_data):
|
2018-06-09 13:36:16 +00:00
|
|
|
validated_data["actor_url"] = None
|
|
|
|
for l in validated_data["links"]:
|
2018-04-08 08:42:10 +00:00
|
|
|
try:
|
2018-06-09 13:36:16 +00:00
|
|
|
if not l["rel"] == "self":
|
2018-04-08 08:42:10 +00:00
|
|
|
continue
|
2018-06-09 13:36:16 +00:00
|
|
|
if not l["type"] == "application/activity+json":
|
2018-04-08 08:42:10 +00:00
|
|
|
continue
|
2018-06-09 13:36:16 +00:00
|
|
|
validated_data["actor_url"] = l["href"]
|
2018-04-08 08:42:10 +00:00
|
|
|
break
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2018-06-09 13:36:16 +00:00
|
|
|
if validated_data["actor_url"] is None:
|
|
|
|
raise serializers.ValidationError("No valid actor url found")
|
2018-04-08 08:42:10 +00:00
|
|
|
return validated_data
|
2018-03-31 13:47:21 +00:00
|
|
|
|
|
|
|
def to_representation(self, instance):
|
|
|
|
data = {}
|
2018-06-09 13:36:16 +00:00
|
|
|
data["subject"] = "acct:{}".format(instance.webfinger_subject)
|
|
|
|
data["links"] = [
|
2018-09-06 18:35:02 +00:00
|
|
|
{"rel": "self", "href": instance.fid, "type": "application/activity+json"}
|
2018-03-31 13:47:21 +00:00
|
|
|
]
|
2018-09-06 18:35:02 +00:00
|
|
|
data["aliases"] = [instance.fid]
|
2018-03-31 13:47:21 +00:00
|
|
|
return data
|
2018-04-01 20:11:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ActivitySerializer(serializers.Serializer):
|
2018-05-21 17:04:28 +00:00
|
|
|
actor = serializers.URLField(max_length=500)
|
|
|
|
id = serializers.URLField(max_length=500, required=False)
|
2018-06-09 13:36:16 +00:00
|
|
|
type = serializers.ChoiceField(choices=[(c, c) for c in activity.ACTIVITY_TYPES])
|
2018-09-22 12:29:30 +00:00
|
|
|
object = serializers.JSONField(required=False)
|
|
|
|
target = serializers.JSONField(required=False)
|
2018-04-01 20:11:46 +00:00
|
|
|
|
|
|
|
def validate_object(self, value):
|
|
|
|
try:
|
2018-06-09 13:36:16 +00:00
|
|
|
type = value["type"]
|
2018-04-01 20:11:46 +00:00
|
|
|
except KeyError:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Missing object type")
|
2018-04-03 17:48:50 +00:00
|
|
|
except TypeError:
|
|
|
|
# probably a URL
|
|
|
|
return value
|
2018-04-01 20:11:46 +00:00
|
|
|
try:
|
|
|
|
object_serializer = OBJECT_SERIALIZERS[type]
|
|
|
|
except KeyError:
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Unsupported type {}".format(type))
|
2018-04-01 20:11:46 +00:00
|
|
|
|
|
|
|
serializer = object_serializer(data=value)
|
|
|
|
serializer.is_valid(raise_exception=True)
|
|
|
|
return serializer.data
|
|
|
|
|
|
|
|
def validate_actor(self, value):
|
2018-06-09 13:36:16 +00:00
|
|
|
request_actor = self.context.get("actor")
|
2018-09-06 18:35:02 +00:00
|
|
|
if request_actor and request_actor.fid != value:
|
2018-04-01 20:11:46 +00:00
|
|
|
raise serializers.ValidationError(
|
2018-06-09 13:36:16 +00:00
|
|
|
"The actor making the request do not match" " the activity actor"
|
2018-04-01 20:11:46 +00:00
|
|
|
)
|
|
|
|
return value
|
|
|
|
|
2018-04-16 19:59:13 +00:00
|
|
|
def to_representation(self, conf):
|
|
|
|
d = {}
|
|
|
|
d.update(conf)
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
if self.context.get("include_ap_context", True):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-04-16 19:59:13 +00:00
|
|
|
return d
|
|
|
|
|
2018-04-01 20:11:46 +00:00
|
|
|
|
|
|
|
class ObjectSerializer(serializers.Serializer):
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
url = serializers.URLField(max_length=500, required=False, allow_null=True)
|
2018-06-09 13:36:16 +00:00
|
|
|
type = serializers.ChoiceField(choices=[(c, c) for c in activity.OBJECT_TYPES])
|
|
|
|
content = serializers.CharField(required=False, allow_null=True)
|
|
|
|
summary = serializers.CharField(required=False, allow_null=True)
|
|
|
|
name = serializers.CharField(required=False, allow_null=True)
|
|
|
|
published = serializers.DateTimeField(required=False, allow_null=True)
|
|
|
|
updated = serializers.DateTimeField(required=False, allow_null=True)
|
2018-04-01 20:11:46 +00:00
|
|
|
to = serializers.ListField(
|
2018-06-09 13:36:16 +00:00
|
|
|
child=serializers.URLField(max_length=500), required=False, allow_null=True
|
|
|
|
)
|
2018-04-01 20:11:46 +00:00
|
|
|
cc = serializers.ListField(
|
2018-06-09 13:36:16 +00:00
|
|
|
child=serializers.URLField(max_length=500), required=False, allow_null=True
|
|
|
|
)
|
2018-04-01 20:11:46 +00:00
|
|
|
bto = serializers.ListField(
|
2018-06-09 13:36:16 +00:00
|
|
|
child=serializers.URLField(max_length=500), required=False, allow_null=True
|
|
|
|
)
|
2018-04-01 20:11:46 +00:00
|
|
|
bcc = serializers.ListField(
|
2018-06-09 13:36:16 +00:00
|
|
|
child=serializers.URLField(max_length=500), required=False, allow_null=True
|
|
|
|
)
|
|
|
|
|
2018-04-01 20:11:46 +00:00
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
OBJECT_SERIALIZERS = {t: ObjectSerializer for t in activity.OBJECT_TYPES}
|
2018-04-06 15:58:43 +00:00
|
|
|
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def get_additional_fields(data):
|
|
|
|
UNSET = object()
|
|
|
|
additional_fields = {}
|
|
|
|
for field in ["name", "summary"]:
|
|
|
|
v = data.get(field, UNSET)
|
|
|
|
if v == UNSET:
|
|
|
|
continue
|
|
|
|
additional_fields[field] = v
|
|
|
|
|
|
|
|
return additional_fields
|
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
PAGINATED_COLLECTION_JSONLD_MAPPING = {
|
|
|
|
"totalItems": jsonld.first_val(contexts.AS.totalItems),
|
|
|
|
"actor": jsonld.first_id(contexts.AS.actor),
|
2019-04-24 12:36:39 +00:00
|
|
|
"attributedTo": jsonld.first_id(contexts.AS.attributedTo),
|
2019-03-05 14:15:37 +00:00
|
|
|
"first": jsonld.first_id(contexts.AS.first),
|
|
|
|
"last": jsonld.first_id(contexts.AS.last),
|
|
|
|
"partOf": jsonld.first_id(contexts.AS.partOf),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PaginatedCollectionSerializer(jsonld.JsonLdSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.Collection])
|
2018-04-07 15:18:54 +00:00
|
|
|
totalItems = serializers.IntegerField(min_value=0)
|
2019-04-24 12:36:39 +00:00
|
|
|
actor = serializers.URLField(max_length=500, required=False)
|
|
|
|
attributedTo = serializers.URLField(max_length=500, required=False)
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
first = serializers.URLField(max_length=500)
|
|
|
|
last = serializers.URLField(max_length=500)
|
2018-04-06 15:58:43 +00:00
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = PAGINATED_COLLECTION_JSONLD_MAPPING
|
|
|
|
|
2019-04-24 12:36:39 +00:00
|
|
|
def validate(self, validated_data):
|
|
|
|
d = super().validate(validated_data)
|
|
|
|
actor = d.get("actor")
|
|
|
|
attributed_to = d.get("attributedTo")
|
|
|
|
if not actor and not attributed_to:
|
|
|
|
raise serializers.ValidationError(
|
|
|
|
"You need to provide at least actor or attributedTo"
|
|
|
|
)
|
|
|
|
|
|
|
|
d["attributedTo"] = attributed_to or actor
|
|
|
|
return d
|
|
|
|
|
2018-04-06 15:58:43 +00:00
|
|
|
def to_representation(self, conf):
|
2018-06-09 13:36:16 +00:00
|
|
|
paginator = Paginator(conf["items"], conf.get("page_size", 20))
|
2020-01-14 13:00:08 +00:00
|
|
|
first = common_utils.set_query_parameter(conf["id"], page=1)
|
2018-04-06 15:58:43 +00:00
|
|
|
current = first
|
2020-01-14 13:00:08 +00:00
|
|
|
last = common_utils.set_query_parameter(conf["id"], page=paginator.num_pages)
|
2018-04-06 15:58:43 +00:00
|
|
|
d = {
|
2018-06-09 13:36:16 +00:00
|
|
|
"id": conf["id"],
|
2019-04-24 12:36:39 +00:00
|
|
|
# XXX Stable release: remove the obsolete actor field
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": conf["actor"].fid,
|
2019-04-24 12:36:39 +00:00
|
|
|
"attributedTo": conf["actor"].fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"totalItems": paginator.count,
|
2018-09-06 18:35:02 +00:00
|
|
|
"type": conf.get("type", "Collection"),
|
2018-06-09 13:36:16 +00:00
|
|
|
"current": current,
|
|
|
|
"first": first,
|
|
|
|
"last": last,
|
2018-04-06 15:58:43 +00:00
|
|
|
}
|
2018-09-06 18:35:02 +00:00
|
|
|
d.update(get_additional_fields(conf))
|
2018-06-09 13:36:16 +00:00
|
|
|
if self.context.get("include_ap_context", True):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-04-06 15:58:43 +00:00
|
|
|
return d
|
|
|
|
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
class LibrarySerializer(PaginatedCollectionSerializer):
|
2019-03-05 14:15:37 +00:00
|
|
|
type = serializers.ChoiceField(
|
|
|
|
choices=[contexts.AS.Collection, contexts.FW.Library]
|
|
|
|
)
|
2018-09-06 18:35:02 +00:00
|
|
|
name = serializers.CharField()
|
|
|
|
summary = serializers.CharField(allow_blank=True, allow_null=True, required=False)
|
2018-09-22 12:29:30 +00:00
|
|
|
followers = serializers.URLField(max_length=500)
|
2018-09-06 18:35:02 +00:00
|
|
|
audience = serializers.ChoiceField(
|
2019-03-05 14:15:37 +00:00
|
|
|
choices=["", "./", None, "https://www.w3.org/ns/activitystreams#Public"],
|
2018-09-06 18:35:02 +00:00
|
|
|
required=False,
|
|
|
|
allow_null=True,
|
|
|
|
allow_blank=True,
|
|
|
|
)
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
2020-01-14 13:00:08 +00:00
|
|
|
jsonld_mapping = common_utils.concat_dicts(
|
2019-03-05 14:15:37 +00:00
|
|
|
PAGINATED_COLLECTION_JSONLD_MAPPING,
|
|
|
|
{
|
|
|
|
"name": jsonld.first_val(contexts.AS.name),
|
|
|
|
"summary": jsonld.first_val(contexts.AS.summary),
|
|
|
|
"audience": jsonld.first_id(contexts.AS.audience),
|
|
|
|
"followers": jsonld.first_id(contexts.AS.followers),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def to_representation(self, library):
|
|
|
|
conf = {
|
|
|
|
"id": library.fid,
|
|
|
|
"name": library.name,
|
|
|
|
"summary": library.description,
|
|
|
|
"page_size": 100,
|
2019-04-24 12:36:39 +00:00
|
|
|
# XXX Stable release: remove the obsolete actor field
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": library.actor,
|
2019-04-24 12:36:39 +00:00
|
|
|
"attributedTo": library.actor,
|
2018-09-24 18:44:22 +00:00
|
|
|
"items": library.uploads.for_federation(),
|
2018-09-06 18:35:02 +00:00
|
|
|
"type": "Library",
|
|
|
|
}
|
|
|
|
r = super().to_representation(conf)
|
|
|
|
r["audience"] = (
|
2019-03-05 14:15:37 +00:00
|
|
|
contexts.AS.Public if library.privacy_level == "everyone" else ""
|
2018-09-06 18:35:02 +00:00
|
|
|
)
|
2018-09-22 12:29:30 +00:00
|
|
|
r["followers"] = library.followers_url
|
2018-09-06 18:35:02 +00:00
|
|
|
return r
|
|
|
|
|
|
|
|
def create(self, validated_data):
|
2019-01-09 16:52:14 +00:00
|
|
|
actor = utils.retrieve_ap_object(
|
2019-04-24 12:36:39 +00:00
|
|
|
validated_data["attributedTo"],
|
2019-03-15 11:08:45 +00:00
|
|
|
actor=self.context.get("fetch_actor"),
|
2018-09-06 18:35:02 +00:00
|
|
|
queryset=models.Actor,
|
|
|
|
serializer_class=ActorSerializer,
|
|
|
|
)
|
2019-03-05 14:15:37 +00:00
|
|
|
privacy = {"": "me", "./": "me", None: "me", contexts.AS.Public: "everyone"}
|
2018-09-06 18:35:02 +00:00
|
|
|
library, created = music_models.Library.objects.update_or_create(
|
|
|
|
fid=validated_data["id"],
|
|
|
|
actor=actor,
|
|
|
|
defaults={
|
2018-09-22 12:29:30 +00:00
|
|
|
"uploads_count": validated_data["totalItems"],
|
2018-09-06 18:35:02 +00:00
|
|
|
"name": validated_data["name"],
|
2019-03-19 16:53:17 +00:00
|
|
|
"description": validated_data.get("summary"),
|
2018-09-22 12:29:30 +00:00
|
|
|
"followers_url": validated_data["followers"],
|
2019-03-05 14:15:37 +00:00
|
|
|
"privacy_level": privacy[validated_data["audience"]],
|
2018-09-06 18:35:02 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
return library
|
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class CollectionPageSerializer(jsonld.JsonLdSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.CollectionPage])
|
2018-04-07 15:18:54 +00:00
|
|
|
totalItems = serializers.IntegerField(min_value=0)
|
|
|
|
items = serializers.ListField()
|
2019-04-24 12:36:39 +00:00
|
|
|
actor = serializers.URLField(max_length=500, required=False)
|
|
|
|
attributedTo = serializers.URLField(max_length=500, required=False)
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
first = serializers.URLField(max_length=500)
|
|
|
|
last = serializers.URLField(max_length=500)
|
|
|
|
next = serializers.URLField(max_length=500, required=False)
|
|
|
|
prev = serializers.URLField(max_length=500, required=False)
|
|
|
|
partOf = serializers.URLField(max_length=500)
|
2018-04-06 15:58:43 +00:00
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {
|
|
|
|
"totalItems": jsonld.first_val(contexts.AS.totalItems),
|
|
|
|
"items": jsonld.raw(contexts.AS.items),
|
|
|
|
"actor": jsonld.first_id(contexts.AS.actor),
|
2019-04-24 12:36:39 +00:00
|
|
|
"attributedTo": jsonld.first_id(contexts.AS.attributedTo),
|
2019-03-05 14:15:37 +00:00
|
|
|
"first": jsonld.first_id(contexts.AS.first),
|
|
|
|
"last": jsonld.first_id(contexts.AS.last),
|
|
|
|
"next": jsonld.first_id(contexts.AS.next),
|
2019-04-11 08:17:10 +00:00
|
|
|
"prev": jsonld.first_id(contexts.AS.prev),
|
2019-03-05 14:15:37 +00:00
|
|
|
"partOf": jsonld.first_id(contexts.AS.partOf),
|
|
|
|
}
|
|
|
|
|
2018-04-11 21:13:33 +00:00
|
|
|
def validate_items(self, v):
|
2018-06-09 13:36:16 +00:00
|
|
|
item_serializer = self.context.get("item_serializer")
|
2018-04-11 21:13:33 +00:00
|
|
|
if not item_serializer:
|
|
|
|
return v
|
|
|
|
raw_items = [item_serializer(data=i, context=self.context) for i in v]
|
2018-04-17 20:58:43 +00:00
|
|
|
valid_items = []
|
2018-04-11 21:13:33 +00:00
|
|
|
for i in raw_items:
|
2018-09-24 18:44:22 +00:00
|
|
|
try:
|
|
|
|
i.is_valid(raise_exception=True)
|
2018-04-17 20:58:43 +00:00
|
|
|
valid_items.append(i)
|
2018-09-24 18:44:22 +00:00
|
|
|
except serializers.ValidationError:
|
2018-06-09 13:36:16 +00:00
|
|
|
logger.debug("Invalid item %s: %s", i.data, i.errors)
|
2018-04-11 21:13:33 +00:00
|
|
|
|
2018-04-17 20:58:43 +00:00
|
|
|
return valid_items
|
2018-04-11 21:13:33 +00:00
|
|
|
|
2018-04-06 15:58:43 +00:00
|
|
|
def to_representation(self, conf):
|
2018-06-09 13:36:16 +00:00
|
|
|
page = conf["page"]
|
2020-01-14 13:00:08 +00:00
|
|
|
first = common_utils.set_query_parameter(conf["id"], page=1)
|
|
|
|
last = common_utils.set_query_parameter(
|
2018-06-09 13:36:16 +00:00
|
|
|
conf["id"], page=page.paginator.num_pages
|
|
|
|
)
|
2020-01-14 13:00:08 +00:00
|
|
|
id = common_utils.set_query_parameter(conf["id"], page=page.number)
|
2018-04-06 15:58:43 +00:00
|
|
|
d = {
|
2018-06-09 13:36:16 +00:00
|
|
|
"id": id,
|
|
|
|
"partOf": conf["id"],
|
2019-04-24 12:36:39 +00:00
|
|
|
# XXX Stable release: remove the obsolete actor field
|
2018-09-06 18:35:02 +00:00
|
|
|
"actor": conf["actor"].fid,
|
2019-04-24 12:36:39 +00:00
|
|
|
"attributedTo": conf["actor"].fid,
|
2018-06-09 13:36:16 +00:00
|
|
|
"totalItems": page.paginator.count,
|
|
|
|
"type": "CollectionPage",
|
|
|
|
"first": first,
|
|
|
|
"last": last,
|
|
|
|
"items": [
|
|
|
|
conf["item_serializer"](
|
|
|
|
i, context={"actor": conf["actor"], "include_ap_context": False}
|
2018-04-06 15:58:43 +00:00
|
|
|
).data
|
|
|
|
for i in page.object_list
|
2018-06-09 13:36:16 +00:00
|
|
|
],
|
2018-04-06 15:58:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if page.has_previous():
|
2020-01-14 13:00:08 +00:00
|
|
|
d["prev"] = common_utils.set_query_parameter(
|
2018-06-09 13:36:16 +00:00
|
|
|
conf["id"], page=page.previous_page_number()
|
|
|
|
)
|
2018-04-06 15:58:43 +00:00
|
|
|
|
2018-04-07 16:37:40 +00:00
|
|
|
if page.has_next():
|
2020-01-14 13:00:08 +00:00
|
|
|
d["next"] = common_utils.set_query_parameter(
|
2018-06-09 13:36:16 +00:00
|
|
|
conf["id"], page=page.next_page_number()
|
|
|
|
)
|
2018-09-06 18:35:02 +00:00
|
|
|
d.update(get_additional_fields(conf))
|
2018-06-09 13:36:16 +00:00
|
|
|
if self.context.get("include_ap_context", True):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-04-06 15:58:43 +00:00
|
|
|
return d
|
2018-04-07 09:29:40 +00:00
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
MUSIC_ENTITY_JSONLD_MAPPING = {
|
|
|
|
"name": jsonld.first_val(contexts.AS.name),
|
|
|
|
"published": jsonld.first_val(contexts.AS.published),
|
|
|
|
"musicbrainzId": jsonld.first_val(contexts.FW.musicbrainzId),
|
2019-04-11 08:17:10 +00:00
|
|
|
"attributedTo": jsonld.first_id(contexts.AS.attributedTo),
|
2019-07-22 07:39:40 +00:00
|
|
|
"tags": jsonld.raw(contexts.AS.tag),
|
2020-01-14 13:00:08 +00:00
|
|
|
"mediaType": jsonld.first_val(contexts.AS.mediaType),
|
|
|
|
"content": jsonld.first_val(contexts.AS.content),
|
2019-03-05 14:15:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-10 17:41:00 +00:00
|
|
|
class TagSerializer(jsonld.JsonLdSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.Hashtag])
|
|
|
|
name = serializers.CharField(max_length=100)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {"name": jsonld.first_val(contexts.AS.name)}
|
|
|
|
|
|
|
|
def validate_name(self, value):
|
|
|
|
if value.startswith("#"):
|
|
|
|
# remove trailing #
|
|
|
|
value = value[1:]
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
2019-12-09 12:59:54 +00:00
|
|
|
def repr_tag(tag_name):
|
|
|
|
return {"type": "Hashtag", "name": "#{}".format(tag_name)}
|
|
|
|
|
|
|
|
|
2020-01-14 13:00:08 +00:00
|
|
|
def include_content(repr, content_obj):
|
|
|
|
if not content_obj:
|
|
|
|
return
|
|
|
|
|
|
|
|
repr["content"] = common_utils.render_html(
|
|
|
|
content_obj.text, content_obj.content_type
|
|
|
|
)
|
|
|
|
repr["mediaType"] = "text/html"
|
|
|
|
|
|
|
|
|
2020-01-23 15:38:04 +00:00
|
|
|
def include_image(repr, attachment, field="image"):
|
2020-01-17 15:27:11 +00:00
|
|
|
if attachment:
|
2020-01-23 15:38:04 +00:00
|
|
|
repr[field] = {
|
2020-01-17 15:27:11 +00:00
|
|
|
"type": "Image",
|
2020-02-04 13:24:20 +00:00
|
|
|
"url": attachment.download_url_original,
|
2020-01-17 15:27:11 +00:00
|
|
|
"mediaType": attachment.mimetype or "image/jpeg",
|
|
|
|
}
|
|
|
|
else:
|
2020-01-23 15:38:04 +00:00
|
|
|
repr[field] = None
|
2020-01-17 15:27:11 +00:00
|
|
|
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class MusicEntitySerializer(jsonld.JsonLdSerializer):
|
2018-09-22 12:29:30 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
|
|
|
published = serializers.DateTimeField()
|
|
|
|
musicbrainzId = serializers.UUIDField(allow_null=True, required=False)
|
|
|
|
name = serializers.CharField(max_length=1000)
|
2019-04-11 08:17:10 +00:00
|
|
|
attributedTo = serializers.URLField(max_length=500, allow_null=True, required=False)
|
|
|
|
updateable_fields = []
|
2019-07-22 07:39:40 +00:00
|
|
|
tags = serializers.ListField(
|
|
|
|
child=TagSerializer(), min_length=0, required=False, allow_null=True
|
|
|
|
)
|
2020-01-14 13:00:08 +00:00
|
|
|
mediaType = serializers.ChoiceField(
|
|
|
|
choices=common_models.CONTENT_TEXT_SUPPORTED_TYPES,
|
|
|
|
default="text/html",
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
content = TruncatedCharField(
|
|
|
|
truncate_length=common_models.CONTENT_TEXT_MAX_LENGTH,
|
|
|
|
required=False,
|
|
|
|
allow_null=True,
|
|
|
|
)
|
2019-04-11 08:17:10 +00:00
|
|
|
|
2019-11-27 11:26:12 +00:00
|
|
|
@transaction.atomic
|
2019-04-11 08:17:10 +00:00
|
|
|
def update(self, instance, validated_data):
|
|
|
|
attributed_to_fid = validated_data.get("attributedTo")
|
|
|
|
if attributed_to_fid:
|
|
|
|
validated_data["attributedTo"] = actors.get_actor(attributed_to_fid)
|
2020-01-14 13:00:08 +00:00
|
|
|
updated_fields = common_utils.get_updated_fields(
|
2019-04-11 08:17:10 +00:00
|
|
|
self.updateable_fields, validated_data, instance
|
|
|
|
)
|
2019-11-27 11:26:12 +00:00
|
|
|
updated_fields = self.validate_updated_data(instance, updated_fields)
|
|
|
|
|
2019-04-11 08:17:10 +00:00
|
|
|
if updated_fields:
|
2019-07-10 17:41:00 +00:00
|
|
|
music_tasks.update_library_entity(instance, updated_fields)
|
2019-04-11 08:17:10 +00:00
|
|
|
|
2019-07-10 17:41:00 +00:00
|
|
|
tags = [t["name"] for t in validated_data.get("tags", []) or []]
|
|
|
|
tags_models.set_tags(instance, *tags)
|
2020-01-14 13:00:08 +00:00
|
|
|
common_utils.attach_content(
|
|
|
|
instance, "description", validated_data.get("description")
|
|
|
|
)
|
2019-04-11 08:17:10 +00:00
|
|
|
return instance
|
2018-09-22 12:29:30 +00:00
|
|
|
|
2019-07-22 07:39:40 +00:00
|
|
|
def get_tags_repr(self, instance):
|
|
|
|
return [
|
2019-12-09 12:59:54 +00:00
|
|
|
repr_tag(item.tag.name)
|
2019-11-25 08:49:06 +00:00
|
|
|
for item in sorted(instance.tagged_items.all(), key=lambda i: i.tag.name)
|
2019-07-22 07:39:40 +00:00
|
|
|
]
|
|
|
|
|
2019-11-27 11:26:12 +00:00
|
|
|
def validate_updated_data(self, instance, validated_data):
|
2020-01-17 15:27:11 +00:00
|
|
|
try:
|
|
|
|
attachment_cover = validated_data.pop("attachment_cover")
|
|
|
|
except KeyError:
|
|
|
|
return validated_data
|
|
|
|
|
|
|
|
if (
|
|
|
|
instance.attachment_cover
|
2020-02-04 13:24:20 +00:00
|
|
|
and instance.attachment_cover.url == attachment_cover["url"]
|
2020-01-17 15:27:11 +00:00
|
|
|
):
|
|
|
|
# we already have the proper attachment
|
|
|
|
return validated_data
|
|
|
|
# create the attachment by hand so it can be attached as the cover
|
|
|
|
validated_data["attachment_cover"] = common_models.Attachment.objects.create(
|
|
|
|
mimetype=attachment_cover["mediaType"],
|
2020-02-04 13:24:20 +00:00
|
|
|
url=attachment_cover["url"],
|
2020-01-17 15:27:11 +00:00
|
|
|
actor=instance.attributed_to,
|
|
|
|
)
|
2019-11-27 11:26:12 +00:00
|
|
|
return validated_data
|
|
|
|
|
2020-01-14 13:00:08 +00:00
|
|
|
def validate(self, data):
|
|
|
|
validated_data = super().validate(data)
|
|
|
|
if data.get("content"):
|
|
|
|
validated_data["description"] = {
|
|
|
|
"content_type": data["mediaType"],
|
|
|
|
"text": data["content"],
|
|
|
|
}
|
|
|
|
return validated_data
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
|
|
|
|
class ArtistSerializer(MusicEntitySerializer):
|
2020-02-04 13:24:20 +00:00
|
|
|
image = ImageSerializer(
|
2020-01-17 15:27:11 +00:00
|
|
|
allowed_mimetypes=["image/*"], allow_null=True, required=False
|
|
|
|
)
|
2019-04-11 08:17:10 +00:00
|
|
|
updateable_fields = [
|
|
|
|
("name", "name"),
|
|
|
|
("musicbrainzId", "mbid"),
|
|
|
|
("attributedTo", "attributed_to"),
|
2020-01-17 15:27:11 +00:00
|
|
|
("image", "attachment_cover"),
|
2019-04-11 08:17:10 +00:00
|
|
|
]
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
2019-04-18 12:37:17 +00:00
|
|
|
model = music_models.Artist
|
2020-01-17 15:27:11 +00:00
|
|
|
jsonld_mapping = common_utils.concat_dicts(
|
|
|
|
MUSIC_ENTITY_JSONLD_MAPPING,
|
|
|
|
{
|
|
|
|
"released": jsonld.first_val(contexts.FW.released),
|
|
|
|
"artists": jsonld.first_attr(contexts.FW.artists, "@list"),
|
|
|
|
"image": jsonld.first_obj(contexts.AS.image),
|
|
|
|
},
|
|
|
|
)
|
2019-03-05 14:15:37 +00:00
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
def to_representation(self, instance):
|
|
|
|
d = {
|
|
|
|
"type": "Artist",
|
|
|
|
"id": instance.fid,
|
|
|
|
"name": instance.name,
|
|
|
|
"published": instance.creation_date.isoformat(),
|
|
|
|
"musicbrainzId": str(instance.mbid) if instance.mbid else None,
|
2019-04-11 08:17:10 +00:00
|
|
|
"attributedTo": instance.attributed_to.fid
|
|
|
|
if instance.attributed_to
|
|
|
|
else None,
|
2019-07-22 07:39:40 +00:00
|
|
|
"tag": self.get_tags_repr(instance),
|
2018-09-22 12:29:30 +00:00
|
|
|
}
|
2020-01-14 13:00:08 +00:00
|
|
|
include_content(d, instance.description)
|
2020-01-17 15:27:11 +00:00
|
|
|
include_image(d, instance.attachment_cover)
|
2018-09-22 12:29:30 +00:00
|
|
|
if self.context.get("include_ap_context", self.parent is None):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-09-22 12:29:30 +00:00
|
|
|
return d
|
|
|
|
|
|
|
|
|
|
|
|
class AlbumSerializer(MusicEntitySerializer):
|
|
|
|
released = serializers.DateField(allow_null=True, required=False)
|
|
|
|
artists = serializers.ListField(child=ArtistSerializer(), min_length=1)
|
2020-01-17 15:27:11 +00:00
|
|
|
# XXX: 1.0 rename to image
|
2020-02-04 13:24:20 +00:00
|
|
|
cover = ImageSerializer(
|
2018-09-23 12:38:42 +00:00
|
|
|
allowed_mimetypes=["image/*"], allow_null=True, required=False
|
|
|
|
)
|
2019-04-11 08:17:10 +00:00
|
|
|
updateable_fields = [
|
|
|
|
("name", "title"),
|
|
|
|
("musicbrainzId", "mbid"),
|
|
|
|
("attributedTo", "attributed_to"),
|
|
|
|
("released", "release_date"),
|
2019-11-27 11:26:12 +00:00
|
|
|
("cover", "attachment_cover"),
|
2019-04-11 08:17:10 +00:00
|
|
|
]
|
2018-09-22 12:29:30 +00:00
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
2019-04-18 12:37:17 +00:00
|
|
|
model = music_models.Album
|
2020-01-14 13:00:08 +00:00
|
|
|
jsonld_mapping = common_utils.concat_dicts(
|
2019-03-05 14:15:37 +00:00
|
|
|
MUSIC_ENTITY_JSONLD_MAPPING,
|
|
|
|
{
|
|
|
|
"released": jsonld.first_val(contexts.FW.released),
|
|
|
|
"artists": jsonld.first_attr(contexts.FW.artists, "@list"),
|
|
|
|
"cover": jsonld.first_obj(contexts.FW.cover),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
def to_representation(self, instance):
|
|
|
|
d = {
|
|
|
|
"type": "Album",
|
|
|
|
"id": instance.fid,
|
|
|
|
"name": instance.title,
|
|
|
|
"published": instance.creation_date.isoformat(),
|
|
|
|
"musicbrainzId": str(instance.mbid) if instance.mbid else None,
|
|
|
|
"released": instance.release_date.isoformat()
|
|
|
|
if instance.release_date
|
|
|
|
else None,
|
|
|
|
"artists": [
|
|
|
|
ArtistSerializer(
|
|
|
|
instance.artist, context={"include_ap_context": False}
|
|
|
|
).data
|
|
|
|
],
|
2019-04-11 08:17:10 +00:00
|
|
|
"attributedTo": instance.attributed_to.fid
|
|
|
|
if instance.attributed_to
|
|
|
|
else None,
|
2019-07-22 07:39:40 +00:00
|
|
|
"tag": self.get_tags_repr(instance),
|
2018-09-22 12:29:30 +00:00
|
|
|
}
|
2020-01-14 13:00:08 +00:00
|
|
|
include_content(d, instance.description)
|
2019-11-25 08:49:06 +00:00
|
|
|
if instance.attachment_cover:
|
2018-09-23 12:38:42 +00:00
|
|
|
d["cover"] = {
|
|
|
|
"type": "Link",
|
2019-11-25 08:49:06 +00:00
|
|
|
"href": instance.attachment_cover.download_url_original,
|
|
|
|
"mediaType": instance.attachment_cover.mimetype or "image/jpeg",
|
2018-09-23 12:38:42 +00:00
|
|
|
}
|
2020-01-17 15:27:11 +00:00
|
|
|
include_image(d, instance.attachment_cover)
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
if self.context.get("include_ap_context", self.parent is None):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-09-22 12:29:30 +00:00
|
|
|
return d
|
2018-04-07 09:29:40 +00:00
|
|
|
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
class TrackSerializer(MusicEntitySerializer):
|
|
|
|
position = serializers.IntegerField(min_value=0, allow_null=True, required=False)
|
2018-12-06 08:53:31 +00:00
|
|
|
disc = serializers.IntegerField(min_value=1, allow_null=True, required=False)
|
2018-09-22 12:29:30 +00:00
|
|
|
artists = serializers.ListField(child=ArtistSerializer(), min_length=1)
|
|
|
|
album = AlbumSerializer()
|
2018-12-04 14:13:37 +00:00
|
|
|
license = serializers.URLField(allow_null=True, required=False)
|
|
|
|
copyright = serializers.CharField(allow_null=True, required=False)
|
2020-02-04 13:24:20 +00:00
|
|
|
image = ImageSerializer(
|
2020-01-17 15:27:11 +00:00
|
|
|
allowed_mimetypes=["image/*"], allow_null=True, required=False
|
|
|
|
)
|
2018-09-22 12:29:30 +00:00
|
|
|
|
2019-04-11 08:17:10 +00:00
|
|
|
updateable_fields = [
|
|
|
|
("name", "title"),
|
|
|
|
("musicbrainzId", "mbid"),
|
|
|
|
("attributedTo", "attributed_to"),
|
|
|
|
("disc", "disc_number"),
|
|
|
|
("position", "position"),
|
|
|
|
("copyright", "copyright"),
|
|
|
|
("license", "license"),
|
2020-01-17 15:27:11 +00:00
|
|
|
("image", "attachment_cover"),
|
2019-04-11 08:17:10 +00:00
|
|
|
]
|
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
2019-04-18 12:37:17 +00:00
|
|
|
model = music_models.Track
|
2020-01-14 13:00:08 +00:00
|
|
|
jsonld_mapping = common_utils.concat_dicts(
|
2019-03-05 14:15:37 +00:00
|
|
|
MUSIC_ENTITY_JSONLD_MAPPING,
|
|
|
|
{
|
|
|
|
"album": jsonld.first_obj(contexts.FW.album),
|
|
|
|
"artists": jsonld.first_attr(contexts.FW.artists, "@list"),
|
|
|
|
"copyright": jsonld.first_val(contexts.FW.copyright),
|
|
|
|
"disc": jsonld.first_val(contexts.FW.disc),
|
|
|
|
"license": jsonld.first_id(contexts.FW.license),
|
|
|
|
"position": jsonld.first_val(contexts.FW.position),
|
2020-01-17 15:27:11 +00:00
|
|
|
"image": jsonld.first_obj(contexts.AS.image),
|
2019-03-05 14:15:37 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
def to_representation(self, instance):
|
|
|
|
d = {
|
|
|
|
"type": "Track",
|
|
|
|
"id": instance.fid,
|
|
|
|
"name": instance.title,
|
|
|
|
"published": instance.creation_date.isoformat(),
|
|
|
|
"musicbrainzId": str(instance.mbid) if instance.mbid else None,
|
|
|
|
"position": instance.position,
|
2018-12-06 08:53:31 +00:00
|
|
|
"disc": instance.disc_number,
|
2018-12-04 14:13:37 +00:00
|
|
|
"license": instance.local_license["identifiers"][0]
|
|
|
|
if instance.local_license
|
|
|
|
else None,
|
|
|
|
"copyright": instance.copyright if instance.copyright else None,
|
2018-09-22 12:29:30 +00:00
|
|
|
"artists": [
|
|
|
|
ArtistSerializer(
|
|
|
|
instance.artist, context={"include_ap_context": False}
|
|
|
|
).data
|
|
|
|
],
|
|
|
|
"album": AlbumSerializer(
|
|
|
|
instance.album, context={"include_ap_context": False}
|
|
|
|
).data,
|
2019-04-11 08:17:10 +00:00
|
|
|
"attributedTo": instance.attributed_to.fid
|
|
|
|
if instance.attributed_to
|
|
|
|
else None,
|
2019-07-22 07:39:40 +00:00
|
|
|
"tag": self.get_tags_repr(instance),
|
2018-09-22 12:29:30 +00:00
|
|
|
}
|
2020-01-14 13:00:08 +00:00
|
|
|
include_content(d, instance.description)
|
2020-01-17 15:27:11 +00:00
|
|
|
include_image(d, instance.attachment_cover)
|
2018-09-22 12:29:30 +00:00
|
|
|
if self.context.get("include_ap_context", self.parent is None):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-09-22 12:29:30 +00:00
|
|
|
return d
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2018-09-23 12:38:42 +00:00
|
|
|
def create(self, validated_data):
|
|
|
|
from funkwhale_api.music import tasks as music_tasks
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2019-04-11 08:17:10 +00:00
|
|
|
references = {}
|
|
|
|
actors_to_fetch = set()
|
|
|
|
actors_to_fetch.add(
|
2020-01-14 13:00:08 +00:00
|
|
|
common_utils.recursive_getattr(
|
2019-04-11 08:17:10 +00:00
|
|
|
validated_data, "attributedTo", permissive=True
|
|
|
|
)
|
|
|
|
)
|
|
|
|
actors_to_fetch.add(
|
2020-01-14 13:00:08 +00:00
|
|
|
common_utils.recursive_getattr(
|
2019-04-11 08:17:10 +00:00
|
|
|
validated_data, "album.attributedTo", permissive=True
|
|
|
|
)
|
|
|
|
)
|
|
|
|
artists = (
|
2020-01-14 13:00:08 +00:00
|
|
|
common_utils.recursive_getattr(validated_data, "artists", permissive=True)
|
2019-04-11 08:17:10 +00:00
|
|
|
or []
|
|
|
|
)
|
|
|
|
album_artists = (
|
2020-01-14 13:00:08 +00:00
|
|
|
common_utils.recursive_getattr(
|
2019-04-11 08:17:10 +00:00
|
|
|
validated_data, "album.artists", permissive=True
|
|
|
|
)
|
|
|
|
or []
|
|
|
|
)
|
|
|
|
for artist in artists + album_artists:
|
|
|
|
actors_to_fetch.add(artist.get("attributedTo"))
|
|
|
|
|
|
|
|
for url in actors_to_fetch:
|
|
|
|
if not url:
|
|
|
|
continue
|
|
|
|
references[url] = actors.get_actor(url)
|
|
|
|
metadata = music_tasks.federation_audio_track_to_metadata(
|
|
|
|
validated_data, references
|
|
|
|
)
|
|
|
|
|
2018-09-23 12:38:42 +00:00
|
|
|
from_activity = self.context.get("activity")
|
|
|
|
if from_activity:
|
|
|
|
metadata["from_activity_id"] = from_activity.pk
|
2019-03-20 18:38:41 +00:00
|
|
|
track = music_tasks.get_track_from_import_metadata(metadata, update_cover=True)
|
2019-07-13 09:15:31 +00:00
|
|
|
|
2018-09-23 12:38:42 +00:00
|
|
|
return track
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2019-04-11 08:17:10 +00:00
|
|
|
def update(self, obj, validated_data):
|
|
|
|
if validated_data.get("license"):
|
|
|
|
validated_data["license"] = licenses.match(validated_data["license"])
|
|
|
|
return super().update(obj, validated_data)
|
|
|
|
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class UploadSerializer(jsonld.JsonLdSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.Audio])
|
2018-05-21 17:04:28 +00:00
|
|
|
id = serializers.URLField(max_length=500)
|
2018-09-06 18:35:02 +00:00
|
|
|
library = serializers.URLField(max_length=500)
|
2018-09-23 12:38:42 +00:00
|
|
|
url = LinkSerializer(allowed_mimetypes=["audio/*"])
|
2018-04-07 09:29:40 +00:00
|
|
|
published = serializers.DateTimeField()
|
2018-09-22 12:29:30 +00:00
|
|
|
updated = serializers.DateTimeField(required=False, allow_null=True)
|
|
|
|
bitrate = serializers.IntegerField(min_value=0)
|
|
|
|
size = serializers.IntegerField(min_value=0)
|
|
|
|
duration = serializers.IntegerField(min_value=0)
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
track = TrackSerializer(required=True)
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2019-03-05 14:15:37 +00:00
|
|
|
class Meta:
|
2019-04-18 12:37:17 +00:00
|
|
|
model = music_models.Upload
|
2019-03-05 14:15:37 +00:00
|
|
|
jsonld_mapping = {
|
|
|
|
"track": jsonld.first_obj(contexts.FW.track),
|
|
|
|
"library": jsonld.first_id(contexts.FW.library),
|
|
|
|
"url": jsonld.first_obj(contexts.AS.url),
|
|
|
|
"published": jsonld.first_val(contexts.AS.published),
|
|
|
|
"updated": jsonld.first_val(contexts.AS.updated),
|
|
|
|
"duration": jsonld.first_val(contexts.AS.duration),
|
|
|
|
"bitrate": jsonld.first_val(contexts.FW.bitrate),
|
|
|
|
"size": jsonld.first_val(contexts.FW.size),
|
|
|
|
}
|
|
|
|
|
2018-04-07 09:29:40 +00:00
|
|
|
def validate_url(self, v):
|
|
|
|
try:
|
2018-06-09 15:41:59 +00:00
|
|
|
v["href"]
|
2018-04-07 09:29:40 +00:00
|
|
|
except (KeyError, TypeError):
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Missing href")
|
2018-04-07 09:29:40 +00:00
|
|
|
|
|
|
|
try:
|
2018-06-09 13:36:16 +00:00
|
|
|
media_type = v["mediaType"]
|
2018-04-07 09:29:40 +00:00
|
|
|
except (KeyError, TypeError):
|
2018-06-09 13:36:16 +00:00
|
|
|
raise serializers.ValidationError("Missing mediaType")
|
2018-04-07 09:29:40 +00:00
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
if not media_type or not media_type.startswith("audio/"):
|
|
|
|
raise serializers.ValidationError("Invalid mediaType")
|
2018-04-07 09:29:40 +00:00
|
|
|
|
|
|
|
return v
|
|
|
|
|
2018-09-06 18:35:02 +00:00
|
|
|
def validate_library(self, v):
|
|
|
|
lb = self.context.get("library")
|
|
|
|
if lb:
|
|
|
|
if lb.fid != v:
|
|
|
|
raise serializers.ValidationError("Invalid library")
|
|
|
|
return lb
|
2018-09-22 12:29:30 +00:00
|
|
|
|
|
|
|
actor = self.context.get("actor")
|
|
|
|
kwargs = {}
|
|
|
|
if actor:
|
|
|
|
kwargs["actor"] = actor
|
2018-09-06 18:35:02 +00:00
|
|
|
try:
|
2018-09-22 12:29:30 +00:00
|
|
|
return music_models.Library.objects.get(fid=v, **kwargs)
|
2018-09-06 18:35:02 +00:00
|
|
|
except music_models.Library.DoesNotExist:
|
|
|
|
raise serializers.ValidationError("Invalid library")
|
|
|
|
|
2018-04-07 09:29:40 +00:00
|
|
|
def create(self, validated_data):
|
2018-09-22 12:29:30 +00:00
|
|
|
try:
|
|
|
|
return music_models.Upload.objects.get(fid=validated_data["id"])
|
|
|
|
except music_models.Upload.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
track = TrackSerializer(
|
|
|
|
context={"activity": self.context.get("activity")}
|
|
|
|
).create(validated_data["track"])
|
|
|
|
|
|
|
|
data = {
|
|
|
|
"fid": validated_data["id"],
|
2018-09-06 18:35:02 +00:00
|
|
|
"mimetype": validated_data["url"]["mediaType"],
|
|
|
|
"source": validated_data["url"]["href"],
|
|
|
|
"creation_date": validated_data["published"],
|
2018-06-09 13:36:16 +00:00
|
|
|
"modification_date": validated_data.get("updated"),
|
2018-09-22 12:29:30 +00:00
|
|
|
"track": track,
|
|
|
|
"duration": validated_data["duration"],
|
|
|
|
"size": validated_data["size"],
|
|
|
|
"bitrate": validated_data["bitrate"],
|
|
|
|
"library": validated_data["library"],
|
|
|
|
"from_activity": self.context.get("activity"),
|
|
|
|
"import_status": "finished",
|
2018-04-07 09:29:40 +00:00
|
|
|
}
|
2018-09-22 12:29:30 +00:00
|
|
|
return music_models.Upload.objects.create(**data)
|
2018-04-07 09:29:40 +00:00
|
|
|
|
|
|
|
def to_representation(self, instance):
|
|
|
|
track = instance.track
|
|
|
|
d = {
|
2018-06-09 13:36:16 +00:00
|
|
|
"type": "Audio",
|
2018-09-06 18:35:02 +00:00
|
|
|
"id": instance.get_federation_id(),
|
2018-09-22 12:29:30 +00:00
|
|
|
"library": instance.library.fid,
|
|
|
|
"name": track.full_name,
|
2018-06-09 13:36:16 +00:00
|
|
|
"published": instance.creation_date.isoformat(),
|
2018-09-22 12:29:30 +00:00
|
|
|
"bitrate": instance.bitrate,
|
|
|
|
"size": instance.size,
|
|
|
|
"duration": instance.duration,
|
2019-12-09 13:13:28 +00:00
|
|
|
"url": [
|
|
|
|
{
|
2019-12-09 15:37:04 +00:00
|
|
|
"href": utils.full_url(instance.listen_url_no_download),
|
2019-12-09 13:13:28 +00:00
|
|
|
"type": "Link",
|
|
|
|
"mediaType": instance.mimetype,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"mediaType": "text/html",
|
|
|
|
"href": utils.full_url(instance.track.get_absolute_url()),
|
|
|
|
},
|
|
|
|
],
|
2018-09-22 12:29:30 +00:00
|
|
|
"track": TrackSerializer(track, context={"include_ap_context": False}).data,
|
2019-12-09 15:17:08 +00:00
|
|
|
"to": contexts.AS.Public
|
|
|
|
if instance.library.privacy_level == "everyone"
|
|
|
|
else "",
|
|
|
|
"attributedTo": instance.library.actor.fid,
|
2018-04-07 09:29:40 +00:00
|
|
|
}
|
2018-09-06 18:35:02 +00:00
|
|
|
if instance.modification_date:
|
|
|
|
d["updated"] = instance.modification_date.isoformat()
|
|
|
|
|
2018-09-22 12:29:30 +00:00
|
|
|
if self.context.get("include_ap_context", self.parent is None):
|
2019-07-01 12:00:32 +00:00
|
|
|
d["@context"] = jsonld.get_default_context()
|
2018-04-07 09:29:40 +00:00
|
|
|
return d
|
|
|
|
|
|
|
|
|
2019-09-21 14:20:49 +00:00
|
|
|
class ActorDeleteSerializer(jsonld.JsonLdSerializer):
|
|
|
|
fid = serializers.URLField(max_length=500)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = {"fid": jsonld.first_id(contexts.AS.object)}
|
|
|
|
|
|
|
|
|
2018-12-27 16:42:43 +00:00
|
|
|
class NodeInfoLinkSerializer(serializers.Serializer):
|
|
|
|
href = serializers.URLField()
|
|
|
|
rel = serializers.URLField()
|
|
|
|
|
|
|
|
|
|
|
|
class NodeInfoSerializer(serializers.Serializer):
|
2018-12-27 19:39:03 +00:00
|
|
|
links = serializers.ListField(child=NodeInfoLinkSerializer(), min_length=1)
|
2019-12-09 12:59:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ChannelOutboxSerializer(PaginatedCollectionSerializer):
|
|
|
|
type = serializers.ChoiceField(choices=[contexts.AS.OrderedCollection])
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
jsonld_mapping = PAGINATED_COLLECTION_JSONLD_MAPPING
|
|
|
|
|
|
|
|
def to_representation(self, channel):
|
|
|
|
conf = {
|
|
|
|
"id": channel.actor.outbox_url,
|
|
|
|
"page_size": 100,
|
|
|
|
"attributedTo": channel.actor,
|
|
|
|
"actor": channel.actor,
|
|
|
|
"items": channel.library.uploads.for_federation()
|
|
|
|
.order_by("-creation_date")
|
|
|
|
.filter(track__artist=channel.artist),
|
|
|
|
"type": "OrderedCollection",
|
|
|
|
}
|
|
|
|
r = super().to_representation(conf)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
|
|
|
class ChannelUploadSerializer(serializers.Serializer):
|
|
|
|
def to_representation(self, upload):
|
|
|
|
data = {
|
|
|
|
"id": upload.fid,
|
|
|
|
"type": "Audio",
|
|
|
|
"name": upload.track.full_name,
|
|
|
|
"attributedTo": upload.library.channel.actor.fid,
|
|
|
|
"published": upload.creation_date.isoformat(),
|
|
|
|
"to": contexts.AS.Public
|
|
|
|
if upload.library.privacy_level == "everyone"
|
|
|
|
else "",
|
|
|
|
"url": [
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"mimeType": upload.mimetype,
|
2019-12-09 15:37:04 +00:00
|
|
|
"href": utils.full_url(upload.listen_url_no_download),
|
2019-12-09 12:59:54 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "Link",
|
|
|
|
"mimeType": "text/html",
|
|
|
|
"href": utils.full_url(upload.track.get_absolute_url()),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
2020-01-14 13:00:08 +00:00
|
|
|
include_content(data, upload.track.description)
|
2019-12-09 12:59:54 +00:00
|
|
|
tags = [item.tag.name for item in upload.get_all_tagged_items()]
|
|
|
|
if tags:
|
|
|
|
data["tag"] = [repr_tag(name) for name in tags]
|
|
|
|
data["summary"] = " ".join(["#{}".format(name) for name in tags])
|
|
|
|
|
|
|
|
if self.context.get("include_ap_context", True):
|
|
|
|
data["@context"] = jsonld.get_default_context()
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
class ChannelCreateUploadSerializer(serializers.Serializer):
|
|
|
|
def to_representation(self, upload):
|
|
|
|
return {
|
|
|
|
"@context": jsonld.get_default_context(),
|
|
|
|
"type": "Create",
|
|
|
|
"actor": upload.library.channel.actor.fid,
|
|
|
|
"object": ChannelUploadSerializer(
|
|
|
|
upload, context={"include_ap_context": False}
|
|
|
|
).data,
|
|
|
|
}
|