summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/repo_saver.rb
blob: 898cd7898ba123ca1057b6f269470ebf780b4752 (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
# frozen_string_literal: true

module Gitlab
  module ImportExport
    class RepoSaver
      include Gitlab::ImportExport::CommandLineUtil

      attr_reader :project, :repository, :shared

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

      def save
        return true unless repository_exists? # it's ok to have no repo

        bundle_to_disk
      end

      private

      def repository_exists?
        repository.exists? && !repository.empty?
      end

      def bundle_full_path
        File.join(shared.export_path, ImportExport.project_bundle_filename)
      end

      def bundle_to_disk
        mkdir_p(shared.export_path)
        repository.bundle_to_disk(bundle_full_path)
      rescue => e
        shared.error(e)
        false
      end
    end
  end
end