This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-04 17:23:01 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'sidekiq-scheduler'
|
|
|
|
|
|
|
|
class Scheduler::SubscriptionsScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform
|
2017-05-06 04:05:03 -07:00
|
|
|
logger.info 'Queueing PuSH re-subscriptions'
|
2017-05-04 17:23:01 -07:00
|
|
|
|
2017-05-06 04:05:03 -07:00
|
|
|
expiring_accounts.pluck(:id).each do |id|
|
2017-05-04 17:23:01 -07:00
|
|
|
Pubsubhubbub::SubscribeWorker.perform_async(id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def expiring_accounts
|
|
|
|
Account.expiring(1.day.from_now).partitioned
|
|
|
|
end
|
|
|
|
end
|