2017-07-17 18:57:04 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 01:55:23 +11:00
|
|
|
class ActivityPub::FollowSerializer < ActivityPub::Serializer
|
2018-01-08 20:57:52 +11:00
|
|
|
attributes :id, :type, :actor
|
2017-07-17 18:57:04 +10:00
|
|
|
attribute :virtual_object, key: :object
|
|
|
|
|
2017-08-09 05:52:15 +10:00
|
|
|
def id
|
2018-05-06 07:07:51 +10:00
|
|
|
ActivityPub::TagManager.instance.uri_for(object) || [ActivityPub::TagManager.instance.uri_for(object.account), '#follows/', object.id].join
|
2017-08-09 05:52:15 +10:00
|
|
|
end
|
|
|
|
|
2017-07-17 18:57:04 +10:00
|
|
|
def type
|
|
|
|
'Follow'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def virtual_object
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.target_account)
|
|
|
|
end
|
|
|
|
end
|