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