2017-05-05 02:23:01 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::SubscribeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-07-10 18:04:23 +02:00
|
|
|
sidekiq_options queue: 'push', retry: 10, unique: :until_executed
|
|
|
|
|
|
|
|
sidekiq_retry_in do |count|
|
|
|
|
case count
|
|
|
|
when 0
|
|
|
|
30.minutes.seconds
|
|
|
|
when 1
|
|
|
|
2.hours.seconds
|
|
|
|
when 2
|
|
|
|
12.hours.seconds
|
|
|
|
else
|
|
|
|
24.hours.seconds * (count - 2)
|
|
|
|
end
|
|
|
|
end
|
2017-05-05 02:23:01 +02:00
|
|
|
|
|
|
|
def perform(account_id)
|
|
|
|
account = Account.find(account_id)
|
2017-05-06 13:05:03 +02:00
|
|
|
logger.debug "PuSH re-subscribing to #{account.acct}"
|
2017-05-05 02:23:01 +02:00
|
|
|
::SubscribeService.new.call(account)
|
|
|
|
end
|
|
|
|
end
|