1_settings.rb 9.5 KB
Newer Older
1 2
require 'gitlab' # Load lib/gitlab.rb as soon as possible

3
class Settings < Settingslogic
4
  source ENV.fetch('GITLAB_CONFIG') { "#{Rails.root}/config/gitlab.yml" }
5
  namespace Rails.env
6 7

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

    private

14 15 16
    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 已提交
17
      else
18 19 20 21 22
        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 已提交
23 24 25 26
      end
    end

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

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    # 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
58 59
  end
end
R
Riyad Preukschas 已提交
60 61 62 63


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

66 67 68
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
69 70
    # We detected old LDAP configuration syntax. Update the config to make it
    # look like it was entered with the new syntax.
71
    server = Settings.ldap.except('sync_time')
72
    Settings.ldap['servers'] = {
73
      'main' => server
74
    }
75 76
  end

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

V
Valery Sizov 已提交
87

R
Riyad Preukschas 已提交
88
Settings['omniauth'] ||= Settingslogic.new({})
89
Settings.omniauth['enabled']      = false if Settings.omniauth['enabled'].nil?
90
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
91 92 93
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
Settings.omniauth['block_auto_created_users'] = true if Settings.omniauth['block_auto_created_users'].nil?
Settings.omniauth['auto_link_ldap_user'] = false if Settings.omniauth['auto_link_ldap_user'].nil?
94

R
Riyad Preukschas 已提交
95 96
Settings.omniauth['providers']  ||= []

97 98
Settings['issues_tracker']  ||= {}

99 100 101
#
# GitLab
#
R
Riyad Preukschas 已提交
102
Settings['gitlab'] ||= Settingslogic.new({})
103
Settings.gitlab['default_projects_limit'] ||= 10
104
Settings.gitlab['default_branch_protection'] ||= 2
105
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
106
Settings.gitlab['default_theme'] = Gitlab::Themes::APPLICATION_DEFAULT if Settings.gitlab['default_theme'].nil?
D
Dmitriy Zaporozhets 已提交
107
Settings.gitlab['host']       ||= 'localhost'
D
Dmitriy Zaporozhets 已提交
108
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
109
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
R
Riyad Preukschas 已提交
110
Settings.gitlab['port']       ||= Settings.gitlab.https ? 443 : 80
111
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
R
Riyad Preukschas 已提交
112
Settings.gitlab['protocol']   ||= Settings.gitlab.https ? "https" : "http"
113 114 115 116
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
Settings.gitlab['email_from'] ||= "gitlab@#{Settings.gitlab.host}"
Settings.gitlab['email_display_name'] ||= "GitLab"
Settings.gitlab['email_reply_to'] ||= "noreply@#{Settings.gitlab.host}"
D
Dmitriy Zaporozhets 已提交
117
Settings.gitlab['url']        ||= Settings.send(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
118
Settings.gitlab['user']       ||= 'git'
119 120 121 122 123
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
124
Settings.gitlab['time_zone']  ||= nil
D
Dmitriy Zaporozhets 已提交
125
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
126
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
127
Settings.gitlab['twitter_sharing_enabled'] ||= true if Settings.gitlab['twitter_sharing_enabled'].nil?
128
Settings.gitlab['restricted_visibility_levels'] = Settings.send(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
129
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
D
Douwe Maan 已提交
130
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?
131
Settings.gitlab['default_projects_features'] ||= {}
132
Settings.gitlab['webhook_timeout'] ||= 10
133
Settings.gitlab['max_attachment_size'] ||= 10
134
Settings.gitlab['session_expire_delay'] ||= 10080
135 136 137
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?
138
Settings.gitlab.default_projects_features['snippets']       = false if Settings.gitlab.default_projects_features['snippets'].nil?
139
Settings.gitlab.default_projects_features['visibility_level']    = Settings.send(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
140
Settings.gitlab['repository_downloads_path'] = File.absolute_path(Settings.gitlab['repository_downloads_path'] || 'tmp/repositories', Rails.root)
141
Settings.gitlab['restricted_signup_domains'] ||= []
R
Riyad Preukschas 已提交
142

143 144 145
#
# Gravatar
#
R
Riyad Preukschas 已提交
146
Settings['gravatar'] ||= Settingslogic.new({})
147
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
148 149
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 已提交
150

151 152 153 154
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
155
Settings.gitlab_shell['path']         ||= Settings.gitlab['user_home'] + '/gitlab-shell/'
156
Settings.gitlab_shell['hooks_path']   ||= Settings.gitlab['user_home'] + '/gitlab-shell/hooks/'
157
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
158 159
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?
160
Settings.gitlab_shell['repos_path']   ||= Settings.gitlab['user_home'] + '/repositories/'
D
Dmitriy Zaporozhets 已提交
161
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
162 163 164 165
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 已提交
166

167 168 169
#
# Backup
#
R
Riyad Preukschas 已提交
170
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
171 172
Settings.backup['keep_time']  ||= 0
Settings.backup['path']         = File.expand_path(Settings.backup['path'] || "tmp/backups/", Rails.root)
173
Settings.backup['archive_permissions']          ||= 0600
174
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
175 176 177 178
# 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
179
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
R
Riyad Preukschas 已提交
180

181 182 183
#
# Git
#
R
Riyad Preukschas 已提交
184
Settings['git'] ||= Settingslogic.new({})
185
Settings.git['max_size']  ||= 20971520 # 20.megabytes
D
Dmitriy Zaporozhets 已提交
186
Settings.git['bin_path']  ||= '/usr/bin/git'
187
Settings.git['timeout']   ||= 10
188

R
Riyad Preukschas 已提交
189
Settings['satellites'] ||= Settingslogic.new({})
R
Riyad Preukschas 已提交
190
Settings.satellites['path'] = File.expand_path(Settings.satellites['path'] || "tmp/repo_satellites/", Rails.root)
191
Settings.satellites['timeout'] ||= 30
192 193 194 195 196

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

198 199 200 201 202
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
203
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
204
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
205 206 207 208
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

209 210 211 212 213
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
214
  Settings.gitlab['default_can_create_group'] = true
215 216
  Settings.gitlab['default_can_create_team']  = false
end