about summary refs log tree commit diff
path: root/app/lib/vacuum/feeds_vacuum.rb
blob: b0246bc0d2eff39e6471ac38f7853a89971162af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

class Vacuum::FeedsVacuum
  def perform
    vacuum_inactive_home_feeds!
    vacuum_inactive_list_feeds!
    vacuum_inactive_direct_feeds!
  end

  private

  def vacuum_inactive_home_feeds!
    inactive_users.select(:id, :account_id).in_batches do |users|
      feed_manager.clean_feeds!(:home, users.pluck(:account_id))
    end
  end

  def vacuum_inactive_list_feeds!
    inactive_users_lists.select(:id).in_batches do |lists|
      feed_manager.clean_feeds!(:list, lists.ids)
    end
  end

  def vacuum_inactive_direct_feeds!
    inactive_users_lists.select(:id).find_in_batches do |lists|
      feed_manager.clean_feeds!(:direct, lists.map(&:id))
    end
  end

  def inactive_users
    User.confirmed.inactive
  end

  def inactive_users_lists
    List.where(account_id: inactive_users.select(:account_id))
  end

  def feed_manager
    FeedManager.instance
  end
end