2017-07-15 01:01:39 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class ActivityPub::ActivitySerializer < ActivityPub::Serializer
|
2017-09-18 18:30:11 +00:00
|
|
|
attributes :id, :type, :actor, :published, :to, :cc
|
2017-07-15 01:01:39 +00:00
|
|
|
|
2019-02-28 20:35:16 +00:00
|
|
|
has_one :proper, key: :object, serializer: ActivityPub::NoteSerializer, if: :serialize_object?
|
|
|
|
attribute :proper_uri, key: :object, unless: :serialize_object?
|
2017-10-14 12:42:09 +00:00
|
|
|
attribute :atom_uri, if: :announce?
|
2017-07-15 01:01:39 +00:00
|
|
|
|
|
|
|
def id
|
2017-10-08 12:41:59 +00:00
|
|
|
ActivityPub::TagManager.instance.activity_uri_for(object)
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2017-08-26 17:55:10 +00:00
|
|
|
announce? ? 'Announce' : 'Create'
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
2017-09-18 18:30:11 +00:00
|
|
|
def published
|
|
|
|
object.created_at.iso8601
|
|
|
|
end
|
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
def to
|
|
|
|
ActivityPub::TagManager.instance.to(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cc
|
|
|
|
ActivityPub::TagManager.instance.cc(object)
|
|
|
|
end
|
2017-08-26 17:55:10 +00:00
|
|
|
|
2017-10-08 12:41:59 +00:00
|
|
|
def proper_uri
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.proper)
|
|
|
|
end
|
|
|
|
|
2017-10-14 12:42:09 +00:00
|
|
|
def atom_uri
|
|
|
|
OStatus::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
2017-08-26 17:55:10 +00:00
|
|
|
def announce?
|
|
|
|
object.reblog?
|
|
|
|
end
|
2019-02-13 17:36:23 +00:00
|
|
|
|
2019-02-28 20:35:16 +00:00
|
|
|
def serialize_object?
|
|
|
|
return true unless announce?
|
|
|
|
# Serialize private self-boosts of local toots
|
|
|
|
object.account == object.proper.account && object.proper.private_visibility? && object.local?
|
2019-02-13 17:36:23 +00:00
|
|
|
end
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|