2017-08-13 00:44:41 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
class ActivityPub::DistributionWorker < ActivityPub::RawDistributionWorker
|
|
|
|
# Distribute a new status or an edit of a status to all the places
|
|
|
|
# where the status is supposed to go or where it was interacted with
|
2017-08-13 00:44:41 +02:00
|
|
|
def perform(status_id)
|
|
|
|
@status = Status.find(status_id)
|
|
|
|
@account = @status.account
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
distribute!
|
2017-08-13 00:44:41 +02:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
protected
|
2018-07-13 02:16:06 +02:00
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
def inboxes
|
2022-01-19 22:37:27 +01:00
|
|
|
@inboxes ||= StatusReachFinder.new(@status).inboxes
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2018-12-30 09:48:59 +01:00
|
|
|
def payload
|
2022-01-19 22:37:27 +01:00
|
|
|
@payload ||= Oj.dump(serialize_payload(activity, ActivityPub::ActivitySerializer, signer: @account))
|
|
|
|
end
|
|
|
|
|
|
|
|
def activity
|
|
|
|
ActivityPub::ActivityPresenter.from_status(@status)
|
2018-12-30 09:48:59 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
def options
|
2022-01-28 00:43:56 +01:00
|
|
|
{ 'synchronize_followers' => @status.private_visibility? }
|
2018-07-13 02:16:06 +02:00
|
|
|
end
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|