2020-06-02 17:24:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::ActivityPresenter < ActiveModelSerializers::Model
|
|
|
|
attributes :id, :type, :actor, :published, :to, :cc, :virtual_object
|
|
|
|
|
|
|
|
class << self
|
2022-02-11 13:52:07 +00:00
|
|
|
def from_status(status, allow_inlining: true)
|
2020-06-02 17:24:53 +00:00
|
|
|
new.tap do |presenter|
|
|
|
|
presenter.id = ActivityPub::TagManager.instance.activity_uri_for(status)
|
|
|
|
presenter.type = status.reblog? ? 'Announce' : 'Create'
|
|
|
|
presenter.actor = ActivityPub::TagManager.instance.uri_for(status.account)
|
|
|
|
presenter.published = status.created_at
|
|
|
|
presenter.to = ActivityPub::TagManager.instance.to(status)
|
|
|
|
presenter.cc = ActivityPub::TagManager.instance.cc(status)
|
|
|
|
|
|
|
|
presenter.virtual_object = begin
|
|
|
|
if status.reblog?
|
2022-02-11 13:52:07 +00:00
|
|
|
if allow_inlining && status.account == status.proper.account && status.proper.private_visibility? && status.local?
|
2020-06-02 17:24:53 +00:00
|
|
|
status.proper
|
|
|
|
else
|
|
|
|
ActivityPub::TagManager.instance.uri_for(status.proper)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
status.proper
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|