Add retention policy for cached content and media (#19232)
This commit is contained in:
parent
3e0999cd11
commit
5c9abdeff1
30 changed files with 559 additions and 135 deletions
34
app/lib/vacuum/feeds_vacuum.rb
Normal file
34
app/lib/vacuum/feeds_vacuum.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Vacuum::FeedsVacuum
|
||||
def perform
|
||||
vacuum_inactive_home_feeds!
|
||||
vacuum_inactive_list_feeds!
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def vacuum_inactive_home_feeds!
|
||||
inactive_users.select(:id, :account_id).find_in_batches do |users|
|
||||
feed_manager.clean_feeds!(:home, users.map(&:account_id))
|
||||
end
|
||||
end
|
||||
|
||||
def vacuum_inactive_list_feeds!
|
||||
inactive_users_lists.select(:id).find_in_batches do |lists|
|
||||
feed_manager.clean_feeds!(:list, 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
|
Loading…
Add table
Add a link
Reference in a new issue