summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/repo_restorer.rb
blob: 91167a9c4fb3f6a49ba7403906ee0a077dd5cf28 (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
# frozen_string_literal: true

module Gitlab
  module ImportExport
    class RepoRestorer
      include Gitlab::ImportExport::CommandLineUtil

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

      def restore
        return true unless File.exist?(@path_to_bundle)

        @project.repository.create_from_bundle(@path_to_bundle)
      rescue => e
        @shared.error(e)
        false
      end
    end
  end
end