闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
616 B

  1. # frozen_string_literal: true
  2. class Pubsubhubbub::DistributionWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'push'
  5. def perform(stream_entry_id)
  6. stream_entry = StreamEntry.find(stream_entry_id)
  7. return if stream_entry.hidden?
  8. account = stream_entry.account
  9. payload = AtomSerializer.render(AtomSerializer.new.feed(account, [stream_entry]))
  10. Subscription.where(account: account).active.select('id, callback_url').find_each do |subscription|
  11. Pubsubhubbub::DeliveryWorker.perform_async(subscription.id, payload)
  12. end
  13. rescue ActiveRecord::RecordNotFound
  14. true
  15. end
  16. end