mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
e17c2e5da5
* Make Pubsubhubbub::DistributionWorker handle both single stream entry arguments, as well as arrays of stream entries * Add BatchedRemoveStatusService, make SuspendAccountService use it * Improve method names * Add test * Add more tests * Use PuSH payloads of 100 to have a clear mapping of 1000 input statuses -> 10 PuSH payloads It was nice while it lasted
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Pubsubhubbub::DistributionWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'push'
|
|
|
|
def perform(stream_entry_ids)
|
|
stream_entries = StreamEntry.where(id: stream_entry_ids).includes(:status).reject { |e| e.status&.direct_visibility? }
|
|
|
|
return if stream_entries.empty?
|
|
|
|
@account = stream_entries.first.account
|
|
@subscriptions = active_subscriptions.to_a
|
|
|
|
distribute_public!(stream_entries.reject(&:hidden?))
|
|
distribute_hidden!(stream_entries.reject { |s| !s.hidden? })
|
|
end
|
|
|
|
private
|
|
|
|
def distribute_public!(stream_entries)
|
|
return if stream_entries.empty?
|
|
|
|
@payload = AtomSerializer.render(AtomSerializer.new.feed(@account, stream_entries))
|
|
|
|
Pubsubhubbub::DeliveryWorker.push_bulk(@subscriptions) do |subscription|
|
|
[subscription.id, @payload]
|
|
end
|
|
end
|
|
|
|
def distribute_hidden!(stream_entries)
|
|
return if stream_entries.empty?
|
|
|
|
@payload = AtomSerializer.render(AtomSerializer.new.feed(@account, stream_entries))
|
|
@domains = @account.followers_domains
|
|
|
|
Pubsubhubbub::DeliveryWorker.push_bulk(@subscriptions.reject { |s| !allowed_to_receive?(s.callback_url) }) do |subscription|
|
|
[subscription.id, @payload]
|
|
end
|
|
end
|
|
|
|
def active_subscriptions
|
|
Subscription.where(account: @account).active.select('id, callback_url')
|
|
end
|
|
|
|
def allowed_to_receive?(callback_url)
|
|
@domains.include?(Addressable::URI.parse(callback_url).host)
|
|
end
|
|
end
|