1_settings.rb 8.81 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)
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}/"
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
23 24 25 26
      end
    end

    def build_gitlab_url
27
      custom_port = gitlab_on_standard_port? ? nil : ":#{gitlab.port}"
28 29 30
      [ gitlab.protocol,
        "://",
        gitlab.host,
31 32
        custom_port,
        gitlab.relative_url_root
33 34
      ].join('')
    end
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
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
86

Valery Sizov's avatar
Valery Sizov committed
87

88
Settings['omniauth'] ||= Settingslogic.new({})
89
Settings.omniauth['enabled']      = false if Settings.omniauth['enabled'].nil?
90 91
Settings.omniauth['providers']  ||= []

92 93
Settings['issues_tracker']  ||= {}

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

137 138 139
#
# Gravatar
#
140
Settings['gravatar'] ||= Settingslogic.new({})
141
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
142 143
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'
144

145 146 147 148
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
149
Settings.gitlab_shell['path']         ||= Settings.gitlab['user_home'] + '/gitlab-shell/'
150
Settings.gitlab_shell['hooks_path']   ||= Settings.gitlab['user_home'] + '/gitlab-shell/hooks/'
151 152
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?
153
Settings.gitlab_shell['repos_path']   ||= Settings.gitlab['user_home'] + '/repositories/'
154
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
155 156 157 158
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)
159

160 161 162
#
# Backup
#
163
Settings['backup'] ||= Settingslogic.new({})
164 165
Settings.backup['keep_time']  ||= 0
Settings.backup['path']         = File.expand_path(Settings.backup['path'] || "tmp/backups/", Rails.root)
166
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
167 168 169 170
# 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
171

172 173 174
#
# Git
#
175
Settings['git'] ||= Settingslogic.new({})
176
Settings.git['max_size']  ||= 20971520 # 20.megabytes
177
Settings.git['bin_path']  ||= '/usr/bin/git'
178
Settings.git['timeout']   ||= 10
179

180
Settings['satellites'] ||= Settingslogic.new({})
Riyad Preukschas's avatar
Riyad Preukschas committed
181
Settings.satellites['path'] = File.expand_path(Settings.satellites['path'] || "tmp/repo_satellites/", Rails.root)
182
Settings.satellites['timeout'] ||= 30
183 184 185 186 187

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

189 190 191 192 193
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
194
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
195
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
196 197 198 199
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

200 201 202 203 204
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
205
  Settings.gitlab['default_can_create_group'] = true
206 207
  Settings.gitlab['default_can_create_team']  = false
end