2017-05-21 03:42:58 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::FeedCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
2019-02-03 05:11:38 +11:00
|
|
|
include Redisable
|
2017-05-21 03:42:58 +10:00
|
|
|
|
2021-03-15 21:17:43 +11:00
|
|
|
sidekiq_options retry: 0
|
2018-08-19 23:48:29 +10:00
|
|
|
|
2017-05-21 03:42:58 +10:00
|
|
|
def perform
|
2017-12-06 09:20:27 +11:00
|
|
|
clean_home_feeds!
|
|
|
|
clean_list_feeds!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def clean_home_feeds!
|
2020-12-23 09:57:46 +11:00
|
|
|
feed_manager.clean_feeds!(:home, inactive_account_ids)
|
2017-12-06 09:20:27 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def clean_list_feeds!
|
2020-12-23 09:57:46 +11:00
|
|
|
feed_manager.clean_feeds!(:list, inactive_list_ids)
|
2017-05-21 03:42:58 +10:00
|
|
|
end
|
|
|
|
|
2017-12-06 09:20:27 +11:00
|
|
|
def inactive_account_ids
|
|
|
|
@inactive_account_ids ||= User.confirmed.inactive.pluck(:account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def inactive_list_ids
|
|
|
|
List.where(account_id: inactive_account_ids).pluck(:id)
|
|
|
|
end
|
2017-05-21 03:42:58 +10:00
|
|
|
|
2017-12-06 09:20:27 +11:00
|
|
|
def feed_manager
|
|
|
|
FeedManager.instance
|
2017-05-21 03:42:58 +10:00
|
|
|
end
|
|
|
|
end
|