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

git_config_check.rb « app « system_check « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f0c792eb35dc4306826b9df1bb98f3aa63d65ed (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
49
50
module SystemCheck
  module App
    class GitConfigCheck < SystemCheck::BaseCheck
      OPTIONS = {
        'core.autocrlf' => 'input'
      }.freeze

      set_name 'Git configured with autocrlf=input?'

      def check?
        correct_options = OPTIONS.map do |name, value|
          run_command(%W(#{Gitlab.config.git.bin_path} config --global --get #{name})).try(:squish) == value
        end

        correct_options.all?
      end

      def repair!
        auto_fix_git_config(OPTIONS)
      end

      def show_error
        try_fixing_it(
          sudo_gitlab("\"#{Gitlab.config.git.bin_path}\" config --global core.autocrlf \"#{OPTIONS['core.autocrlf']}\"")
        )
        for_more_information(
          see_installation_guide_section 'GitLab'
        )
      end

      private

      # Tries to configure git itself
      #
      # Returns true if all subcommands were successfull (according to their exit code)
      # Returns false if any or all subcommands failed.
      def auto_fix_git_config(options)
        if !@warned_user_not_gitlab
          command_success = options.map do |name, value|
            system(*%W(#{Gitlab.config.git.bin_path} config --global #{name} #{value}))
          end

          command_success.all?
        else
          false
        end
      end
    end
  end
end