The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

19 lines
706 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. account = stream_entry.account
  8. renderer = AccountsController.renderer.new(method: 'get', http_host: Rails.configuration.x.local_domain, https: Rails.configuration.x.use_https)
  9. payload = renderer.render(:show, assigns: { account: account, entries: [stream_entry] }, formats: [:atom])
  10. Subscription.where(account: account).active.select('id').find_each do |subscription|
  11. Pubsubhubbub::DeliveryWorker.perform_async(subscription.id, payload)
  12. end
  13. end
  14. end