2017-08-13 00:44:41 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::DistributionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'push'
|
|
|
|
|
|
|
|
def perform(status_id)
|
|
|
|
@status = Status.find(status_id)
|
|
|
|
@account = @status.account
|
|
|
|
|
|
|
|
return if skip_distribution?
|
|
|
|
|
|
|
|
ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
|
2017-08-26 13:47:38 +02:00
|
|
|
[signed_payload, @account.id, inbox_url]
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
2018-07-13 02:16:06 +02:00
|
|
|
|
|
|
|
relay! if relayable?
|
2017-08-13 00:44:41 +02:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def skip_distribution?
|
|
|
|
@status.direct_visibility?
|
|
|
|
end
|
|
|
|
|
2018-07-13 02:16:06 +02:00
|
|
|
def relayable?
|
|
|
|
@status.public_visibility?
|
|
|
|
end
|
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
def inboxes
|
|
|
|
@inboxes ||= @account.followers.inboxes
|
|
|
|
end
|
|
|
|
|
2017-08-26 13:47:38 +02:00
|
|
|
def signed_payload
|
|
|
|
@signed_payload ||= Oj.dump(ActivityPub::LinkedDataSignature.new(payload).sign!(@account))
|
|
|
|
end
|
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
def payload
|
|
|
|
@payload ||= ActiveModelSerializers::SerializableResource.new(
|
|
|
|
@status,
|
|
|
|
serializer: ActivityPub::ActivitySerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
2017-08-26 13:47:38 +02:00
|
|
|
).as_json
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
2018-07-13 02:16:06 +02:00
|
|
|
|
|
|
|
def relay!
|
|
|
|
ActivityPub::DeliveryWorker.push_bulk(Relay.enabled.pluck(:inbox_url)) do |inbox_url|
|
|
|
|
[signed_payload, @account.id, inbox_url]
|
|
|
|
end
|
|
|
|
end
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|