1_settings.rb 8.5 KB
Newer Older
1
class Settings < Settingslogic
2
  source ENV.fetch('GITLAB_CONFIG') { "#{Rails.root}/config/gitlab.yml" }
3
  namespace Rails.env
4 5

  class << self
6 7
    def gitlab_on_standard_port?
      gitlab.port.to_i == (gitlab.https ? 443 : 80)
R
Riyad Preukschas 已提交
8 9 10 11
    end

    private

12 13 14
    def build_gitlab_shell_ssh_path_prefix
      if gitlab_shell.ssh_port != 22
        "ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/"
R
Riyad Preukschas 已提交
15
      else
16 17 18 19 20
        if gitlab_shell.ssh_host.include? ':'
          "[#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}]:"
        else
          "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:"
        end
R
Riyad Preukschas 已提交
21 22 23 24
      end
    end

    def build_gitlab_url
25
      custom_port = gitlab_on_standard_port? ? nil : ":#{gitlab.port}"
R
Riyad Preukschas 已提交
26 27 28
      [ gitlab.protocol,
        "://",
        gitlab.host,
29 30
        custom_port,
        gitlab.relative_url_root
R
Riyad Preukschas 已提交
31 32
      ].join('')
    end
D
Dmitriy Zaporozhets 已提交
33

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    # check that values in `current` (string or integer) is a contant in `modul`.
    def verify_constant_array(modul, current, default)
      values = default || []
      if !current.nil?
        values = []
        current.each do |constant|
          values.push(verify_constant(modul, constant, nil))
        end
        values.delete_if { |value| value.nil? }
      end
      values
    end

    # check that `current` (string or integer) is a contant in `modul`.
    def verify_constant(modul, current, default)
      constant = modul.constants.find{ |name| modul.const_get(name) == current }
      value = constant.nil? ? default : modul.const_get(constant)
      if current.is_a? String
        value = modul.const_get(current.upcase) rescue default
      end
      value
    end
56 57
  end
end
R
Riyad Preukschas 已提交
58 59 60 61


# Default settings
Settings['ldap'] ||= Settingslogic.new({})
62
Settings.ldap['enabled'] = false if Settings.ldap['enabled'].nil?
63

64 65 66 67
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
    server = Settings.ldap.except('sync_time')
68 69 70 71
    server['provider_name'] = 'ldap'
    Settings.ldap['servers'] = {
      'ldap' => server
    }
72 73
  end

74
  Settings.ldap['servers'].each do |key, server|
75
    server['label'] ||= 'LDAP'
76 77
    server['allow_username_or_email_login'] = false if server['allow_username_or_email_login'].nil?
    server['active_directory'] = true if server['active_directory'].nil?
78
    server['provider_name'] ||= "ldap#{key}".downcase
79 80 81
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
  end
end
R
Riyad Preukschas 已提交
82 83

Settings['omniauth'] ||= Settingslogic.new({})
84
Settings.omniauth['enabled']      = false if Settings.omniauth['enabled'].nil?
R
Riyad Preukschas 已提交
85 86
Settings.omniauth['providers']  ||= []

87 88
Settings['issues_tracker']  ||= {}

89 90 91
#
# GitLab
#
R
Riyad Preukschas 已提交
92
Settings['gitlab'] ||= Settingslogic.new({})
93
Settings.gitlab['default_projects_limit'] ||= 10
94
Settings.gitlab['default_branch_protection'] ||= 2
95
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
I
Izaak Alpert 已提交
96
Settings.gitlab['default_theme'] = Gitlab::Theme::MARS if Settings.gitlab['default_theme'].nil?
D
Dmitriy Zaporozhets 已提交
97
Settings.gitlab['host']       ||= 'localhost'
D
Dmitriy Zaporozhets 已提交
98
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
99
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
R
Riyad Preukschas 已提交
100
Settings.gitlab['port']       ||= Settings.gitlab.https ? 443 : 80
101
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
R
Riyad Preukschas 已提交
102
Settings.gitlab['protocol']   ||= Settings.gitlab.https ? "https" : "http"
103
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
D
Dmitriy Zaporozhets 已提交
104
Settings.gitlab['email_from'] ||= "gitlab@#{Settings.gitlab.host}"
105
Settings.gitlab['email_display_name'] ||= "GitLab"
106
Settings.gitlab['email_reply_to'] ||= "noreply@#{Settings.gitlab.host}"
D
Dmitriy Zaporozhets 已提交
107
Settings.gitlab['url']        ||= Settings.send(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
108
Settings.gitlab['user']       ||= 'git'
109 110 111 112 113
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
114
Settings.gitlab['time_zone']  ||= nil
D
Dmitriy Zaporozhets 已提交
115
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
116
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
117
Settings.gitlab['twitter_sharing_enabled'] ||= true if Settings.gitlab['twitter_sharing_enabled'].nil?
118
Settings.gitlab['restricted_visibility_levels'] = Settings.send(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
119
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
D
Douwe Maan 已提交
120
Settings.gitlab['issue_closing_pattern'] = '((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing)) +(?:(?:issues? +)?#\d+(?:(?:, *| +and +)?))+)' if Settings.gitlab['issue_closing_pattern'].nil?
121
Settings.gitlab['default_projects_features'] ||= {}
122
Settings.gitlab['webhook_timeout'] ||= 10
123
Settings.gitlab['max_attachment_size'] ||= 10
124 125 126
Settings.gitlab.default_projects_features['issues']         = true if Settings.gitlab.default_projects_features['issues'].nil?
Settings.gitlab.default_projects_features['merge_requests'] = true if Settings.gitlab.default_projects_features['merge_requests'].nil?
Settings.gitlab.default_projects_features['wiki']           = true if Settings.gitlab.default_projects_features['wiki'].nil?
127
Settings.gitlab.default_projects_features['snippets']       = false if Settings.gitlab.default_projects_features['snippets'].nil?
128
Settings.gitlab.default_projects_features['visibility_level']    = Settings.send(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
129
Settings.gitlab['repository_downloads_path'] = File.absolute_path(Settings.gitlab['repository_downloads_path'] || 'tmp/repositories', Rails.root)
R
Riyad Preukschas 已提交
130

131 132 133
#
# Gravatar
#
R
Riyad Preukschas 已提交
134
Settings['gravatar'] ||= Settingslogic.new({})
135
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
136 137
Settings.gravatar['plain_url']  ||= 'http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
Settings.gravatar['ssl_url']    ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
R
Riyad Preukschas 已提交
138

139 140 141 142
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
143
Settings.gitlab_shell['path']         ||= Settings.gitlab['user_home'] + '/gitlab-shell/'
144
Settings.gitlab_shell['hooks_path']   ||= Settings.gitlab['user_home'] + '/gitlab-shell/hooks/'
145 146
Settings.gitlab_shell['receive_pack']   = true if Settings.gitlab_shell['receive_pack'].nil?
Settings.gitlab_shell['upload_pack']    = true if Settings.gitlab_shell['upload_pack'].nil?
147
Settings.gitlab_shell['repos_path']   ||= Settings.gitlab['user_home'] + '/repositories/'
D
Dmitriy Zaporozhets 已提交
148
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
149 150 151 152
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.send(:build_gitlab_shell_ssh_path_prefix)
R
Riyad Preukschas 已提交
153

154 155 156
#
# Backup
#
R
Riyad Preukschas 已提交
157
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
158 159
Settings.backup['keep_time']  ||= 0
Settings.backup['path']         = File.expand_path(Settings.backup['path'] || "tmp/backups/", Rails.root)
160
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
161 162 163 164
# Convert upload connection settings to use symbol keys, to make Fog happy
if Settings.backup['upload']['connection']
  Settings.backup['upload']['connection'] = Hash[Settings.backup['upload']['connection'].map { |k, v| [k.to_sym, v] }]
end
R
Riyad Preukschas 已提交
165

166 167 168
#
# Git
#
R
Riyad Preukschas 已提交
169
Settings['git'] ||= Settingslogic.new({})
170
Settings.git['max_size']  ||= 20971520 # 20.megabytes
D
Dmitriy Zaporozhets 已提交
171
Settings.git['bin_path']  ||= '/usr/bin/git'
172
Settings.git['timeout']   ||= 10
173

R
Riyad Preukschas 已提交
174
Settings['satellites'] ||= Settingslogic.new({})
R
Riyad Preukschas 已提交
175
Settings.satellites['path'] = File.expand_path(Settings.satellites['path'] || "tmp/repo_satellites/", Rails.root)
176
Settings.satellites['timeout'] ||= 30
177 178 179 180 181

#
# Extra customization
#
Settings['extra'] ||= Settingslogic.new({})
182

183 184 185 186 187
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
188
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
189
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
190 191 192 193
Settings.rack_attack.git_basic_auth['maxretry'] ||= 10
Settings.rack_attack.git_basic_auth['findtime'] ||= 1.minute
Settings.rack_attack.git_basic_auth['bantime'] ||= 1.hour

194 195 196 197 198
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
199
  Settings.gitlab['default_can_create_group'] = true
200 201
  Settings.gitlab['default_can_create_team']  = false
end