summaryrefslogtreecommitdiff
path: root/app/services/import_export_clean_up_service.rb
blob: 3ecb51b60d072d9929166024bb5249abc4dd9a30 (plain)
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
# frozen_string_literal: true

class ImportExportCleanUpService
  LAST_MODIFIED_TIME_IN_MINUTES = 1440

  attr_reader :mmin, :path

  def initialize(mmin = LAST_MODIFIED_TIME_IN_MINUTES)
    @mmin = mmin
    @path = Gitlab::ImportExport.storage_path
  end

  def execute
    Gitlab::Metrics.measure(:import_export_clean_up) do
      clean_up_export_object_files

      break unless File.directory?(path)

      clean_up_export_files
    end
  end

  private

  def clean_up_export_files
    Gitlab::Popen.popen(%W(find #{path} -not -path #{path} -mmin +#{mmin} -delete))
  end

  # rubocop: disable CodeReuse/ActiveRecord
  def clean_up_export_object_files
    ImportExportUpload.where('updated_at < ?', mmin.minutes.ago).each do |upload|
      upload.remove_export_file!
      upload.save!
    end
  end
  # rubocop: enable CodeReuse/ActiveRecord
end