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