summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/saver.rb
blob: 634e58e6039935f80ef348d14d97e3c6e8a66be9 (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
38
39
module Gitlab
  module ImportExport
    class Saver
      include Gitlab::ImportExport::CommandLineUtil

      def self.save(*args)
        new(*args).save
      end

      def initialize(storage_path:)
        @storage_path = storage_path
      end

      def save
        if compress_and_save
          remove_storage_path
          Rails.logger.info("Saved project export #{archive_file}")
          archive_file
        else
          false
        end
      end

      private

      def compress_and_save
        tar_czf(archive: archive_file, dir: @storage_path)
      end

      def remove_storage_path
        FileUtils.rm_rf(@storage_path)
      end

      def archive_file
        @archive_file ||= File.join(@storage_path, '..', "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_project_export.tar.gz")
      end
    end
  end
end