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

repo_restorer.rb « import_export « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0e5cfcfd3efb1f04f2ea66fd47608a2932c5c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Gitlab
  module ImportExport
    class RepoRestorer
      include Gitlab::ImportExport::CommandLineUtil
      include Gitlab::ShellAdapter

      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)

        git_clone_bundle(repo_path: @project.repository.path_to_repo, bundle_path: @path_to_bundle)
      rescue => e
        @shared.error(e)
        false
      end
    end
  end
end