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