1_settings.rb 26.7 KB
Newer Older
1 2
# rubocop:disable GitlabSecurity/PublicSend

3
require_dependency Rails.root.join('lib/gitlab') # Load Gitlab as soon as possible
4

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

  class << self
10 11
    def gitlab_on_standard_port?
      on_standard_port?(gitlab)
R
Riyad Preukschas 已提交
12
    end
13

14 15
    def host_without_www(url)
      host(url).sub('www.', '')
16
    end
R
Riyad Preukschas 已提交
17

V
Valery Sizov 已提交
18
    def build_gitlab_ci_url
D
Douwe Maan 已提交
19 20 21 22 23 24
      custom_port =
        if on_standard_port?(gitlab)
          nil
        else
          ":#{gitlab.port}"
        end
D
Douwe Maan 已提交
25

26 27 28 29 30 31
      [
        gitlab.protocol,
        "://",
        gitlab.host,
        custom_port,
        gitlab.relative_url_root
V
Valery Sizov 已提交
32 33
      ].join('')
    end
R
Riyad Preukschas 已提交
34

35 36 37 38
    def build_pages_url
      base_url(pages).join('')
    end

39
    def build_gitlab_shell_ssh_path_prefix
40 41
      user_host = "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}"

42
      if gitlab_shell.ssh_port != 22
43
        "ssh://#{user_host}:#{gitlab_shell.ssh_port}/"
R
Riyad Preukschas 已提交
44
      else
45
        if gitlab_shell.ssh_host.include? ':'
46
          "[#{user_host}]:"
47
        else
48
          "#{user_host}:"
49
        end
R
Riyad Preukschas 已提交
50 51 52
      end
    end

53
    def build_base_gitlab_url
54
      base_url(gitlab).join('')
55 56
    end

R
Riyad Preukschas 已提交
57
    def build_gitlab_url
58
      (base_url(gitlab) + [gitlab.relative_url_root]).join('')
R
Riyad Preukschas 已提交
59
    end
D
Dmitriy Zaporozhets 已提交
60

61 62 63
    # check that values in `current` (string or integer) is a contant in `modul`.
    def verify_constant_array(modul, current, default)
      values = default || []
64
      unless current.nil?
65 66 67 68 69 70
        values = []
        current.each do |constant|
          values.push(verify_constant(modul, constant, nil))
        end
        values.delete_if { |value| value.nil? }
      end
71

72 73 74 75 76
      values
    end

    # check that `current` (string or integer) is a contant in `modul`.
    def verify_constant(modul, current, default)
77
      constant = modul.constants.find { |name| modul.const_get(name) == current }
78 79 80 81
      value = constant.nil? ? default : modul.const_get(constant)
      if current.is_a? String
        value = modul.const_get(current.upcase) rescue default
      end
82

83 84
      value
    end
85

86 87 88 89
    def absolute(path)
      File.expand_path(path, Rails.root)
    end

90 91
    private

92 93
    def base_url(config)
      custom_port = on_standard_port?(config) ? nil : ":#{config.port}"
94

95 96 97 98 99
      [
        config.protocol,
        "://",
        config.host,
        custom_port
100 101
      ]
    end
102

103 104 105 106
    def on_standard_port?(config)
      config.port.to_i == (config.https ? 443 : 80)
    end

107 108 109 110 111 112
    # Extract the host part of the given +url+.
    def host(url)
      url = url.downcase
      url = "http://#{url}" unless url.start_with?('http')

      # Get rid of the path so that we don't even have to encode it
113
      url_without_path = url.sub(%r{(https?://[^/]+)/?.*}, '\1')
114 115 116

      URI.parse(url_without_path).host
    end
S
Sean McGivern 已提交
117

118 119 120 121
    # Runs every minute in a random ten-minute period on Sundays, to balance the
    # load on the server receiving these pings. The usage ping is safe to run
    # multiple times because of a 24 hour exclusive lock.
    def cron_for_usage_ping
S
Sean McGivern 已提交
122
      hour = rand(24)
123
      minute = rand(6)
S
Sean McGivern 已提交
124

125
      "#{minute}0-#{minute}9 #{hour} * * 0"
S
Sean McGivern 已提交
126
    end
127 128
  end
end
R
Riyad Preukschas 已提交
129 130 131

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

134 135 136
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
137 138
    # We detected old LDAP configuration syntax. Update the config to make it
    # look like it was entered with the new syntax.
139
    server = Settings.ldap.except('sync_time')
140
    Settings.ldap['servers'] = {
141
      'main' => server
142
    }
143 144
  end

145
  Settings.ldap['servers'].each do |key, server|
M
Michael Kozono 已提交
146 147
    server = Settingslogic.new(server)

148
    server['label'] ||= 'LDAP'
149
    server['timeout'] ||= 10.seconds
150
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
151 152
    server['allow_username_or_email_login'] = false if server['allow_username_or_email_login'].nil?
    server['active_directory'] = true if server['active_directory'].nil?
D
Douwe Maan 已提交
153
    server['attributes'] = {} if server['attributes'].nil?
154
    server['lowercase_usernames'] = false if server['lowercase_usernames'].nil?
155
    server['provider_name'] ||= "ldap#{key}".downcase
156
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
157 158 159 160 161

    # For backwards compatibility
    server['encryption'] ||= server['method']
    server['encryption'] = 'simple_tls' if server['encryption'] == 'ssl'
    server['encryption'] = 'start_tls' if server['encryption'] == 'tls'
M
Michael Kozono 已提交
162

163 164 165 166 167
    # Certificate verification was added in 9.4.2, and defaulted to false for
    # backwards-compatibility.
    #
    # Since GitLab 10.0, verify_certificates defaults to true for security.
    server['verify_certificates'] = true if server['verify_certificates'].nil?
M
Michael Kozono 已提交
168 169

    Settings.ldap['servers'][key] = server
170 171
  end
end
R
Riyad Preukschas 已提交
172 173

Settings['omniauth'] ||= Settingslogic.new({})
174
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
175
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
176
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
177
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
178 179
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?
180
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
181 182 183 184 185 186 187 188 189 190 191 192 193 194

Settings.omniauth['sync_profile_from_provider'] = false if Settings.omniauth['sync_profile_from_provider'].nil?
Settings.omniauth['sync_profile_attributes'] = ['email'] if Settings.omniauth['sync_profile_attributes'].nil?

# Handle backwards compatibility with merge request 11268
if Settings.omniauth['sync_email_from_provider']
  if Settings.omniauth['sync_profile_from_provider'].is_a?(Array)
    Settings.omniauth['sync_profile_from_provider'] |= [Settings.omniauth['sync_email_from_provider']]
  elsif !Settings.omniauth['sync_profile_from_provider']
    Settings.omniauth['sync_profile_from_provider'] = [Settings.omniauth['sync_email_from_provider']]
  end

  Settings.omniauth['sync_profile_attributes'] |= ['email'] unless Settings.omniauth['sync_profile_attributes'] == true
end
195

196
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
197 198 199 200
Settings.omniauth['cas3'] ||= Settingslogic.new({})
Settings.omniauth.cas3['session_duration'] ||= 8.hours
Settings.omniauth['session_tickets'] ||= Settingslogic.new({})
Settings.omniauth.session_tickets['cas3'] = 'ticket'
R
Riyad Preukschas 已提交
201

202 203 204
# Fill out omniauth-gitlab settings. It is needed for easy set up GHE or GH by just specifying url.

github_default_url = "https://github.com"
205
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
206 207 208 209 210 211 212 213 214 215

if github_settings
  # For compatibility with old config files (before 7.8)
  # where people dont have url in github settings
  if github_settings['url'].blank?
    github_settings['url'] = github_default_url
  end

  github_settings["args"] ||= Settingslogic.new({})

D
Douwe Maan 已提交
216 217 218 219 220 221 222 223 224 225
  github_settings["args"]["client_options"] =
    if github_settings["url"].include?(github_default_url)
      OmniAuth::Strategies::GitHub.default_options[:client_options]
    else
      {
        "site"          => File.join(github_settings["url"], "api/v3"),
        "authorize_url" => File.join(github_settings["url"], "login/oauth/authorize"),
        "token_url"     => File.join(github_settings["url"], "login/oauth/access_token")
      }
    end
226
end
227

228
Settings['shared'] ||= Settingslogic.new({})
229
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
230

231
Settings['issues_tracker'] ||= {}
232

233 234 235
#
# GitLab
#
R
Riyad Preukschas 已提交
236
Settings['gitlab'] ||= Settingslogic.new({})
237
Settings.gitlab['default_projects_limit'] ||= 100000
238
Settings.gitlab['default_branch_protection'] ||= 2
239
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
R
Rubén Dávila 已提交
240
Settings.gitlab['default_theme'] = Gitlab::Themes::APPLICATION_DEFAULT if Settings.gitlab['default_theme'].nil?
241
Settings.gitlab['host']       ||= ENV['GITLAB_HOST'] || 'localhost'
D
Dmitriy Zaporozhets 已提交
242
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
243
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
244
Settings.gitlab['port']       ||= ENV['GITLAB_PORT'] || (Settings.gitlab.https ? 443 : 80)
245
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
246
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
247
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
248 249 250
Settings.gitlab['email_from'] ||= ENV['GITLAB_EMAIL_FROM'] || "gitlab@#{Settings.gitlab.host}"
Settings.gitlab['email_display_name'] ||= ENV['GITLAB_EMAIL_DISPLAY_NAME'] || 'GitLab'
Settings.gitlab['email_reply_to'] ||= ENV['GITLAB_EMAIL_REPLY_TO'] || "noreply@#{Settings.gitlab.host}"
F
Fu Xu 已提交
251
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
252 253
Settings.gitlab['base_url']   ||= Settings.__send__(:build_base_gitlab_url)
Settings.gitlab['url']        ||= Settings.__send__(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
254
Settings.gitlab['user']       ||= 'git'
255 256 257 258 259
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
260
Settings.gitlab['time_zone'] ||= nil
D
Dmitriy Zaporozhets 已提交
261
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
262
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
263
Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
264
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
265
Settings.gitlab['issue_closing_pattern'] = '((?:[Cc]los(?:e[sd]?|ing)|[Ff]ix(?:e[sd]|ing)?|[Rr]esolv(?:e[sd]?|ing)|[Ii]mplement(?:s|ed|ing)?)(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?: *,? +and +| *, *)?)|([A-Z][A-Z0-9_]+-\d+))+)' if Settings.gitlab['issue_closing_pattern'].nil?
266
Settings.gitlab['default_projects_features'] ||= {}
267
Settings.gitlab['webhook_timeout'] ||= 10
268
Settings.gitlab['max_attachment_size'] ||= 10
269
Settings.gitlab['session_expire_delay'] ||= 10080
270 271 272
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?
273
Settings.gitlab.default_projects_features['snippets']           = true if Settings.gitlab.default_projects_features['snippets'].nil?
274 275
Settings.gitlab.default_projects_features['builds']             = true if Settings.gitlab.default_projects_features['builds'].nil?
Settings.gitlab.default_projects_features['container_registry'] = true if Settings.gitlab.default_projects_features['container_registry'].nil?
276
Settings.gitlab.default_projects_features['visibility_level']   = Settings.__send__(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
277
Settings.gitlab['domain_whitelist'] ||= []
278
Settings.gitlab['import_sources'] ||= Gitlab::ImportSources.values
279
Settings.gitlab['trusted_proxies'] ||= []
280
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
281
Settings.gitlab['usage_ping_enabled'] = true if Settings.gitlab['usage_ping_enabled'].nil?
R
Riyad Preukschas 已提交
282

V
Valery Sizov 已提交
283 284 285 286
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
287 288 289
Settings.gitlab_ci['shared_runners_enabled'] = true if Settings.gitlab_ci['shared_runners_enabled'].nil?
Settings.gitlab_ci['all_broken_builds']     = true if Settings.gitlab_ci['all_broken_builds'].nil?
Settings.gitlab_ci['add_pusher']            = false if Settings.gitlab_ci['add_pusher'].nil?
290
Settings.gitlab_ci['builds_path']           = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
291
Settings.gitlab_ci['url']                 ||= Settings.__send__(:build_gitlab_ci_url)
V
Valery Sizov 已提交
292

D
Douwe Maan 已提交
293 294 295
#
# Reply by email
#
296
Settings['incoming_email'] ||= Settingslogic.new({})
297
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
298

K
Kamil Trzcinski 已提交
299 300 301 302 303
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
304 305 306 307
Settings.artifacts['storage_path'] = Settings.absolute(Settings.artifacts.values_at('path', 'storage_path').compact.first || File.join(Settings.shared['path'], "artifacts"))
# Settings.artifact['path'] is deprecated, use `storage_path` instead
Settings.artifacts['path']         = Settings.artifacts['storage_path']
Settings.artifacts['max_size'] ||= 100 # in megabytes
K
Kamil Trzcinski 已提交
308

309
Settings.artifacts['object_store'] ||= Settingslogic.new({})
310 311 312
Settings.artifacts['object_store']['enabled'] = false if Settings.artifacts['object_store']['enabled'].nil?
Settings.artifacts['object_store']['remote_directory'] ||= nil
Settings.artifacts['object_store']['background_upload'] = true if Settings.artifacts['object_store']['background_upload'].nil?
313 314
# Convert upload connection settings to use string keys, to make Fog happy
Settings.artifacts['object_store']['connection']&.deep_stringify_keys!
315

316 317 318 319
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
320 321
Settings.registry['enabled']       ||= false
Settings.registry['host']          ||= "example.com"
322
Settings.registry['port']          ||= nil
323 324 325
Settings.registry['api_url']       ||= "http://localhost:5000/"
Settings.registry['key']           ||= nil
Settings.registry['issuer']        ||= nil
K
Kamil Trzcinski 已提交
326
Settings.registry['host_port']     ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
327
Settings.registry['path']            = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
328

329
#
K
Kamil Trzcinski 已提交
330
# Pages
331
#
K
Kamil Trzcinski 已提交
332
Settings['pages'] ||= Settingslogic.new({})
Z
Zeger-Jan van de Weg 已提交
333 334 335 336 337 338 339 340 341
Settings.pages['enabled']           = false if Settings.pages['enabled'].nil?
Settings.pages['path']              = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
Settings.pages['https']             = false if Settings.pages['https'].nil?
Settings.pages['host']              ||= "example.com"
Settings.pages['port']              ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol']          ||= Settings.pages.https ? "https" : "http"
Settings.pages['url']               ||= Settings.__send__(:build_pages_url)
Settings.pages['external_http']     ||= false unless Settings.pages['external_http'].present?
Settings.pages['external_https']    ||= false unless Settings.pages['external_https'].present?
Z
Zeger-Jan van de Weg 已提交
342
Settings.pages['artifacts_server']  ||= Settings.pages['enabled'] if Settings.pages['artifacts_server'].nil?
K
Kamil Trzcinski 已提交
343

M
Marin Jankovski 已提交
344 345 346 347
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
348
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
349
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
350
Settings.lfs['object_store'] ||= Settingslogic.new({})
351 352 353
Settings.lfs['object_store']['enabled'] = false if Settings.lfs['object_store']['enabled'].nil?
Settings.lfs['object_store']['remote_directory'] ||= nil
Settings.lfs['object_store']['background_upload'] = true if Settings.lfs['object_store']['background_upload'].nil?
354 355 356
# Convert upload connection settings to use string keys, to make Fog happy
Settings.lfs['object_store']['connection']&.deep_stringify_keys!

357 358 359 360 361 362 363
#
# Uploads
#
Settings['uploads'] ||= Settingslogic.new({})
Settings.uploads['storage_path'] = Settings.absolute(Settings.uploads['storage_path'] || 'public')
Settings.uploads['base_dir'] = Settings.uploads['base_dir'] || 'uploads/-/system'
Settings.uploads['object_store'] ||= Settingslogic.new({})
364 365 366
Settings.uploads['object_store']['enabled'] = false if Settings.uploads['object_store']['enabled'].nil?
Settings.uploads['object_store']['remote_directory'] ||= 'uploads'
Settings.uploads['object_store']['background_upload'] = true if Settings.uploads['object_store']['background_upload'].nil?
367 368 369
# Convert upload connection settings to use string keys, to make Fog happy
Settings.uploads['object_store']['connection']&.deep_stringify_keys!

K
Kamil Trzcinski 已提交
370 371 372 373
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
374 375
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
376

377 378 379
#
# Gravatar
#
R
Riyad Preukschas 已提交
380
Settings['gravatar'] ||= Settingslogic.new({})
381
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
382
Settings.gravatar['plain_url']  ||= 'https://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
383
Settings.gravatar['ssl_url']    ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
384
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
385

386 387 388 389
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
390 391 392
Settings.cron_jobs['stuck_ci_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_ci_jobs_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['stuck_ci_jobs_worker']['job_class'] = 'StuckCiJobsWorker'
393
Settings.cron_jobs['pipeline_schedule_worker'] ||= Settingslogic.new({})
394
Settings.cron_jobs['pipeline_schedule_worker']['cron'] ||= '19 * * * *'
395
Settings.cron_jobs['pipeline_schedule_worker']['job_class'] = 'PipelineScheduleWorker'
396
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
397
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
398
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
J
Jacob Vosmaer 已提交
399 400
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
401
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
J
Jacob Vosmaer 已提交
402
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
403
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
404
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
405 406 407
Settings.cron_jobs['repository_archive_cache_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_archive_cache_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['repository_archive_cache_worker']['job_class'] = 'RepositoryArchiveCacheWorker'
408 409 410
Settings.cron_jobs['import_export_project_cleanup_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['import_export_project_cleanup_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['import_export_project_cleanup_worker']['job_class'] = 'ImportExportProjectCleanupWorker'
411 412 413
Settings.cron_jobs['requests_profiles_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['requests_profiles_worker']['cron'] ||= '0 0 * * *'
Settings.cron_jobs['requests_profiles_worker']['job_class'] = 'RequestsProfilesWorker'
414 415 416
Settings.cron_jobs['remove_expired_members_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_members_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_members_worker']['job_class'] = 'RemoveExpiredMembersWorker'
D
Douwe Maan 已提交
417 418 419
Settings.cron_jobs['remove_expired_group_links_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_group_links_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_group_links_worker']['job_class'] = 'RemoveExpiredGroupLinksWorker'
420
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
421
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
422
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
423

Y
Yorick Peterse 已提交
424 425 426
Settings.cron_jobs['trending_projects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['trending_projects_worker']['cron'] = '0 1 * * *'
Settings.cron_jobs['trending_projects_worker']['job_class'] = 'TrendingProjectsWorker'
427 428 429
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['cron'] ||= '20 0 * * *'
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['job_class'] = 'RemoveUnreferencedLfsObjectsWorker'
430 431 432
Settings.cron_jobs['stuck_import_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_import_jobs_worker']['cron'] ||= '15 * * * *'
Settings.cron_jobs['stuck_import_jobs_worker']['job_class'] = 'StuckImportJobsWorker'
S
Sean McGivern 已提交
433
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
434
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_for_usage_ping)
S
Sean McGivern 已提交
435
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
Y
Yorick Peterse 已提交
436

437 438 439 440
Settings.cron_jobs['schedule_update_user_activity_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['schedule_update_user_activity_worker']['cron'] ||= '30 0 * * *'
Settings.cron_jobs['schedule_update_user_activity_worker']['job_class'] = 'ScheduleUpdateUserActivityWorker'

A
Alexander Randa 已提交
441 442 443 444
Settings.cron_jobs['remove_old_web_hook_logs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_old_web_hook_logs_worker']['cron'] ||= '40 0 * * *'
Settings.cron_jobs['remove_old_web_hook_logs_worker']['job_class'] = 'RemoveOldWebHookLogsWorker'

445 446 447 448
Settings.cron_jobs['stuck_merge_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_merge_jobs_worker']['cron'] ||= '0 */2 * * *'
Settings.cron_jobs['stuck_merge_jobs_worker']['job_class'] = 'StuckMergeJobsWorker'

449 450 451 452
Settings.cron_jobs['pages_domain_verification_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['pages_domain_verification_cron_worker']['cron'] ||= '*/15 * * * *'
Settings.cron_jobs['pages_domain_verification_cron_worker']['job_class'] = 'PagesDomainVerificationCronWorker'

453 454 455 456
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
457 458
Settings.gitlab_shell['path']           = Settings.absolute(Settings.gitlab_shell['path'] || Settings.gitlab['user_home'] + '/gitlab-shell/')
Settings.gitlab_shell['hooks_path']     = Settings.absolute(Settings.gitlab_shell['hooks_path'] || Settings.gitlab['user_home'] + '/gitlab-shell/hooks/')
459
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
460 461
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?
D
Dmitriy Zaporozhets 已提交
462
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
463 464 465
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
466
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
467
Settings.gitlab_shell['git_timeout'] ||= 10800
R
Riyad Preukschas 已提交
468

469 470 471 472 473 474
#
# Workhorse
#
Settings['workhorse'] ||= Settingslogic.new({})
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')

475 476 477 478 479
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
480 481 482 483 484 485 486
unless Settings.repositories.storages['default']
  Settings.repositories.storages['default'] ||= {}
  # We set the path only if the default storage doesn't exist, in case it exists
  # but follows the pre-9.0 configuration structure. `6_validations.rb` initializer
  # will validate all storages and throw a relevant error to the user if necessary.
  Settings.repositories.storages['default']['path'] ||= Settings.gitlab['user_home'] + '/repositories/'
end
487

488 489 490
Settings.repositories.storages.each do |key, storage|
  storage = Settingslogic.new(storage)

491 492
  # Expand relative paths
  storage['path'] = Settings.absolute(storage['path'])
493 494

  Settings.repositories.storages[key] = storage
495 496
end

497 498 499 500 501 502 503
#
# The repository_downloads_path is used to remove outdated repository
# archives, if someone has it configured incorrectly, and it points
# to the path where repositories are stored this can cause some
# data-integrity issue. In this case, we sets it to the default
# repository_downloads_path value.
#
504
repositories_storages          = Settings.repositories.storages.values
505
repository_downloads_path      = Settings.gitlab['repository_downloads_path'].to_s.gsub(%r{/$}, '')
506 507
repository_downloads_full_path = File.expand_path(repository_downloads_path, Settings.gitlab['user_home'])

508
if repository_downloads_path.blank? || repositories_storages.any? { |rs| [repository_downloads_path, repository_downloads_full_path].include?(rs['path'].gsub(%r{/$}, '')) }
509 510 511
  Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
end

512 513 514
#
# Backup
#
R
Riyad Preukschas 已提交
515
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
516
Settings.backup['keep_time']  ||= 0
V
Valery Sizov 已提交
517
Settings.backup['pg_schema']    = nil
518
Settings.backup['path']         = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
519
Settings.backup['archive_permissions'] ||= 0600
520
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
521
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
522
Settings.backup['upload']['encryption'] ||= nil
523
Settings.backup['upload']['storage_class'] ||= nil
R
Riyad Preukschas 已提交
524

525 526 527
#
# Git
#
R
Riyad Preukschas 已提交
528
Settings['git'] ||= Settingslogic.new({})
529
Settings.git['bin_path'] ||= '/usr/bin/git'
530

531 532 533
# Important: keep the satellites.path setting until GitLab 9.0 at
# least. This setting is fed to 'rm -rf' in
# db/migrate/20151023144219_remove_satellites.rb
R
Riyad Preukschas 已提交
534
Settings['satellites'] ||= Settingslogic.new({})
535
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
536 537 538 539 540

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

542 543 544 545 546
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
547
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
548
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
549 550 551 552
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

553 554 555 556 557
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})

558 559 560 561 562 563 564 565 566
#
# Webpack settings
#
Settings['webpack'] ||= Settingslogic.new({})
Settings.webpack['dev_server'] ||= Settingslogic.new({})
Settings.webpack.dev_server['enabled'] ||= false
Settings.webpack.dev_server['host']    ||= 'localhost'
Settings.webpack.dev_server['port']    ||= 3808

567
#
568
# Monitoring settings
569
#
570
Settings['monitoring'] ||= Settingslogic.new({})
P
Pawel Chojnacki 已提交
571
Settings.monitoring['ip_whitelist'] ||= ['127.0.0.1/8']
572
Settings.monitoring['unicorn_sampler_interval'] ||= 10
P
Pawel Chojnacki 已提交
573
Settings.monitoring['ruby_sampler_interval'] ||= 60
574 575 576 577
Settings.monitoring['sidekiq_exporter'] ||= Settingslogic.new({})
Settings.monitoring.sidekiq_exporter['enabled'] ||= false
Settings.monitoring.sidekiq_exporter['address'] ||= 'localhost'
Settings.monitoring.sidekiq_exporter['port'] ||= 3807
578

579 580 581 582 583
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
584
  Settings.gitlab['default_can_create_group'] = true
585
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
586
end
587 588

# Force a refresh of application settings at startup
589
ApplicationSetting.expire