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