2017-07-17 10:57:04 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::FollowSerializer < ActiveModel::Serializer
|
2018-01-03 18:08:57 +01:00
|
|
|
attributes :type, :actor
|
|
|
|
attribute :id, if: :dereferencable?
|
2017-07-17 10:57:04 +02:00
|
|
|
attribute :virtual_object, key: :object
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def id
|
2018-01-03 18:08:57 +01:00
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2017-07-17 10:57:04 +02: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
|
2018-01-03 18:08:57 +01:00
|
|
|
|
|
|
|
def dereferencable?
|
|
|
|
object.respond_to?(:object_type)
|
|
|
|
end
|
2017-07-17 10:57:04 +02:00
|
|
|
end
|