2023-05-02 12:08:48 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Vacuum::ImportsVacuum
|
|
|
|
def perform
|
|
|
|
clean_unconfirmed_imports!
|
|
|
|
clean_old_imports!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def clean_unconfirmed_imports!
|
2024-04-18 12:13:35 +02:00
|
|
|
BulkImport.state_unconfirmed.where('created_at <= ?', 10.minutes.ago).reorder(nil).in_batches.delete_all
|
2023-05-02 12:08:48 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def clean_old_imports!
|
|
|
|
BulkImport.where('created_at <= ?', 1.week.ago).reorder(nil).in_batches.delete_all
|
|
|
|
end
|
|
|
|
end
|