2020-06-02 17:24:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::ActivityPresenter < ActiveModelSerializers::Model
|
2021-07-16 06:38:50 +00:00
|
|
|
attributes :id, :type, :actor, :published, :expiry, :to, :cc, :virtual_object
|
2020-06-02 17:24:53 +00:00
|
|
|
|
|
|
|
class << self
|
2020-11-10 16:35:31 +00:00
|
|
|
def from_status(status, use_bearcap: 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)
|
2021-07-16 06:38:50 +00:00
|
|
|
presenter.expiry = status.expiry
|
2020-06-02 17:24:53 +00:00
|
|
|
|
|
|
|
presenter.virtual_object = begin
|
|
|
|
if status.reblog?
|
|
|
|
if status.account == status.proper.account && status.proper.private_visibility? && status.local?
|
|
|
|
status.proper
|
|
|
|
else
|
|
|
|
ActivityPub::TagManager.instance.uri_for(status.proper)
|
|
|
|
end
|
2020-11-10 16:35:31 +00:00
|
|
|
elsif status.limited_visibility? && use_bearcap
|
2020-09-05 07:33:17 +00:00
|
|
|
"bear:?#{{ u: ActivityPub::TagManager.instance.uri_for(status.proper), t: status.capability_tokens.first.token }.to_query}"
|
2020-06-02 17:24:53 +00:00
|
|
|
else
|
|
|
|
status.proper
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def from_encrypted_message(encrypted_message)
|
|
|
|
new.tap do |presenter|
|
|
|
|
presenter.id = ActivityPub::TagManager.instance.generate_uri_for(nil)
|
|
|
|
presenter.type = 'Create'
|
|
|
|
presenter.actor = ActivityPub::TagManager.instance.uri_for(encrypted_message.source_account)
|
|
|
|
presenter.published = Time.now.utc
|
|
|
|
presenter.to = ActivityPub::TagManager.instance.uri_for(encrypted_message.target_account)
|
|
|
|
presenter.virtual_object = encrypted_message
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|