summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/lfs_saver.rb
blob: bb7a070fe15b22764cbf3d60ac081cc82c96f711 (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
module Gitlab
  module ImportExport
    class LfsSaver
      include Gitlab::ImportExport::CommandLineUtil

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

      def save
        return true if @project.lfs_objects.empty?

        @project.lfs_objects.each do |lfs_object|
          save_lfs_object(lfs_object)
        end

        true
      rescue => e
        @shared.error(e)

        false
      end

      private

      def save_lfs_object(lfs_object)
        if lfs_object.local_store?
          copy_file_for_lfs_object(lfs_object)
        else
          raise NotImplementedError.new "Exporting files from object storage is not yet supported"
        end
      end

      def copy_file_for_lfs_object(lfs_object)
        copy_files(lfs_object.file.path, destination_path_for_object(lfs_object))
      end

      def destination_path_for_object(lfs_object)
        File.join(lfs_export_path, lfs_object.oid)
      end

      def lfs_export_path
        File.join(@shared.export_path, 'lfs-objects')
      end
    end
  end
end