summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/uploads_saver.rb
blob: 93bc626b3636b9c6c2c4aa85f516b827f8bece1d (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
module Gitlab
  module ImportExport
    class UploadsSaver

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

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

      def save
        return true unless File.directory?(uploads_path)

        copy_files(uploads_path, uploads_export_path)
      rescue => e
        @shared.error(e)
        false
      end

      private

      def copy_files(source, destination)
        FileUtils.mkdir_p(destination)
        FileUtils.copy_entry(source, destination)
        true
      end

      def uploads_export_path
        File.join(@shared.export_path, 'uploads')
      end

      def uploads_path
        File.join(Rails.root.join('public/uploads'), @project.path_with_namespace)
      end
    end
  end
end