summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export/command_line_util.rb
blob: 78664f076eb7ca08fe5cb2178686d74d426c11c7 (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
    module CommandLineUtil
      def tar_czf(archive:, dir:)
        tar_with_options(archive: archive, dir: dir, options: 'czf')
      end

      def untar_zxf(archive:, dir:)
        untar_with_options(archive: archive, dir: dir, options: 'zxf')
      end

      def git_bundle(repo_path:, bundle_path:)
        execute(%W(#{git_bin_path} --git-dir=#{repo_path} bundle create #{bundle_path} --all))
      end

      def git_unbundle(repo_path:, bundle_path:)
        execute(%W(#{git_bin_path} clone --bare #{bundle_path} #{repo_path}))
      end

      private

      def tar_with_options(archive:, dir:, options:)
        execute(%W(tar -#{options} #{archive} -C #{dir} .))
      end

      def untar_with_options(archive:, dir:, options:)
        execute(%W(tar -#{options} #{archive} -C #{dir}))
      end

      def execute(cmd)
        _output, status = Gitlab::Popen.popen(cmd)
        status.zero?
      end

      def git_bin_path
        Gitlab.config.git.bin_path
      end
    end
  end
end