2017-07-17 01:57:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::DeleteSerializer < ActivityPub::Serializer
|
|
|
|
class TombstoneSerializer < ActivityPub::Serializer
|
|
|
|
context_extensions :atom_uri
|
|
|
|
|
2017-09-02 05:01:23 -07:00
|
|
|
attributes :id, :type, :atom_uri
|
2017-08-26 07:10:35 -07:00
|
|
|
|
|
|
|
def id
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Tombstone'
|
|
|
|
end
|
|
|
|
|
|
|
|
def atom_uri
|
2017-09-19 09:08:08 -07:00
|
|
|
OStatus::TagManager.instance.uri_for(object)
|
2017-08-26 07:10:35 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-12 17:16:06 -07:00
|
|
|
attributes :id, :type, :actor, :to
|
2017-08-26 07:10:35 -07:00
|
|
|
|
|
|
|
has_one :object, serializer: TombstoneSerializer
|
2017-07-17 01:57:04 -07:00
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#delete'].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 01:57:04 -07:00
|
|
|
def type
|
|
|
|
'Delete'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
2018-07-12 17:16:06 -07:00
|
|
|
|
|
|
|
def to
|
|
|
|
[ActivityPub::TagManager::COLLECTIONS[:public]]
|
|
|
|
end
|
2017-07-17 01:57:04 -07:00
|
|
|
end
|