logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 116b8a63633cfdff83582f1cc40559c2e3c2ae80
parent: ad892dbc0c377d82b2cae349f189a41708a1e6af
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Thu, 17 Aug 2017 22:15:37 +0200

Fix #4607 - Accept/reject activities use FollowRequest, which has inverse relations (#4616)


Diffstat:

Mapp/serializers/activitypub/accept_follow_serializer.rb2+-
Aapp/serializers/activitypub/inverse_follow_serializer.rb22++++++++++++++++++++++
Mapp/serializers/activitypub/reject_follow_serializer.rb2+-
3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/app/serializers/activitypub/accept_follow_serializer.rb b/app/serializers/activitypub/accept_follow_serializer.rb @@ -3,7 +3,7 @@ class ActivityPub::AcceptFollowSerializer < ActiveModel::Serializer attributes :id, :type, :actor - has_one :object, serializer: ActivityPub::FollowSerializer + has_one :object, serializer: ActivityPub::InverseFollowSerializer def id [ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join diff --git a/app/serializers/activitypub/inverse_follow_serializer.rb b/app/serializers/activitypub/inverse_follow_serializer.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +class ActivityPub::InverseFollowSerializer < ActiveModel::Serializer + attributes :id, :type, :actor + attribute :virtual_object, key: :object + + def id + [ActivityPub::TagManager.instance.uri_for(object.target_account), '#follows/', object.id].join + end + + def type + 'Follow' + end + + def actor + ActivityPub::TagManager.instance.uri_for(object.target_account) + end + + def virtual_object + ActivityPub::TagManager.instance.uri_for(object.account) + end +end diff --git a/app/serializers/activitypub/reject_follow_serializer.rb b/app/serializers/activitypub/reject_follow_serializer.rb @@ -3,7 +3,7 @@ class ActivityPub::RejectFollowSerializer < ActiveModel::Serializer attributes :id, :type, :actor - has_one :object, serializer: ActivityPub::FollowSerializer + has_one :object, serializer: ActivityPub::InverseFollowSerializer def id [ActivityPub::TagManager.instance.uri_for(object.target_account), '#rejects/follows/', object.id].join