Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exported_relations_merger.rb « project « import_export « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dda3d00d608218a7d92250aa061dca8deb9466cf (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true

module Gitlab
  module ImportExport
    module Project
      class ExportedRelationsMerger
        include Gitlab::ImportExport::CommandLineUtil

        def initialize(export_job:, shared:)
          @export_job = export_job
          @shared = shared
        end

        def save
          Dir.mktmpdir do |dirpath|
            export_job.relation_exports.each do |relation_export|
              relation = relation_export.relation
              upload = relation_export.upload
              filename = upload.export_file.filename

              tar_gz_full_path = File.join(dirpath, filename)
              decompress_path = File.join(dirpath, relation)
              Gitlab::Utils.check_path_traversal!(tar_gz_full_path)
              Gitlab::Utils.check_path_traversal!(decompress_path)

              # Download tar.gz
              download_or_copy_upload(
                upload.export_file, tar_gz_full_path, size_limit: relation_export.upload.export_file.size
              )

              # Decompress tar.gz
              mkdir_p(decompress_path)
              untar_zxf(dir: decompress_path, archive: tar_gz_full_path)
              File.delete(tar_gz_full_path)

              # Merge decompressed files into export_path
              RecursiveMergeFolders.merge(decompress_path, shared.export_path)
              FileUtils.rm_r(decompress_path)
            rescue StandardError => e
              shared.error(e)
              false
            end
          end

          shared.errors.empty?
        end

        private

        attr_reader :shared, :export_job

        delegate :project, to: :export_job
      end
    end
  end
end