1_settings.rb 24.8 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 71 72 73 74 75
        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)
76
      constant = modul.constants.find { |name| modul.const_get(name) == current }
77 78 79 80 81 82
      value = constant.nil? ? default : modul.const_get(constant)
      if current.is_a? String
        value = modul.const_get(current.upcase) rescue default
      end
      value
    end
83

84 85 86 87
    def absolute(path)
      File.expand_path(path, Rails.root)
    end

88 89
    private

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

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

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

105 106 107 108 109 110 111 112 113 114
    # 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
      url_without_path = url.sub(%r{(https?://[^\/]+)/?.*}, '\1')

      URI.parse(url_without_path).host
    end
S
Sean McGivern 已提交
115 116 117 118 119 120 121 122

    # Random cron time every Sunday to load balance usage pings
    def cron_random_weekly_time
      hour = rand(24)
      minute = rand(60)

      "#{minute} #{hour} * * 0"
    end
123 124
  end
end
R
Riyad Preukschas 已提交
125 126 127

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

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

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

144
    server['label'] ||= 'LDAP'
145
    server['timeout'] ||= 10.seconds
146
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
147 148
    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 已提交
149
    server['attributes'] = {} if server['attributes'].nil?
150
    server['provider_name'] ||= "ldap#{key}".downcase
151
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
152 153 154 155 156

    # 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 已提交
157

158 159 160 161 162
    # 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 已提交
163 164

    Settings.ldap['servers'][key] = server
165 166
  end
end
R
Riyad Preukschas 已提交
167 168

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

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
190

191
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
192 193 194 195
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 已提交
196

197 198 199
# 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"
200
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
201 202 203 204 205 206 207 208 209 210

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 已提交
211 212 213 214 215 216 217 218 219 220
  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
221
end
222

223
Settings['shared'] ||= Settingslogic.new({})
224
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
225

226
Settings['issues_tracker'] ||= {}
227

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

V
Valery Sizov 已提交
278 279 280 281
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
282 283 284
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?
285
Settings.gitlab_ci['builds_path']           = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
286
Settings.gitlab_ci['url']                 ||= Settings.__send__(:build_gitlab_ci_url)
V
Valery Sizov 已提交
287

D
Douwe Maan 已提交
288 289 290
#
# Reply by email
#
291
Settings['incoming_email'] ||= Settingslogic.new({})
292
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
293

K
Kamil Trzcinski 已提交
294 295 296 297 298
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
299
Settings.artifacts['path']         = Settings.absolute(Settings.artifacts['path'] || File.join(Settings.shared['path'], "artifacts"))
300
Settings.artifacts['max_size']   ||= 100 # in megabytes
K
Kamil Trzcinski 已提交
301

302 303 304 305
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
306 307
Settings.registry['enabled']       ||= false
Settings.registry['host']          ||= "example.com"
308
Settings.registry['port']          ||= nil
309 310 311
Settings.registry['api_url']       ||= "http://localhost:5000/"
Settings.registry['key']           ||= nil
Settings.registry['issuer']        ||= nil
K
Kamil Trzcinski 已提交
312
Settings.registry['host_port']     ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
313
Settings.registry['path']            = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
314

315
#
K
Kamil Trzcinski 已提交
316
# Pages
317
#
K
Kamil Trzcinski 已提交
318 319
Settings['pages'] ||= Settingslogic.new({})
Settings.pages['enabled']         = false if Settings.pages['enabled'].nil?
320
Settings.pages['path']            = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
321
Settings.pages['https']           = false if Settings.pages['https'].nil?
322
Settings.pages['host']            ||= "example.com"
323 324
Settings.pages['port']            ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol']        ||= Settings.pages.https ? "https" : "http"
325
Settings.pages['url']             ||= Settings.__send__(:build_pages_url)
326 327
Settings.pages['external_http']   ||= false unless Settings.pages['external_http'].present?
Settings.pages['external_https']  ||= false unless Settings.pages['external_https'].present?
K
Kamil Trzcinski 已提交
328

M
Marin Jankovski 已提交
329 330 331 332
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
333
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
334
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
M
Marin Jankovski 已提交
335

K
Kamil Trzcinski 已提交
336 337 338 339
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
340 341
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
342

343 344 345
#
# Gravatar
#
R
Riyad Preukschas 已提交
346
Settings['gravatar'] ||= Settingslogic.new({})
347
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
348 349
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'
350
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
351

352 353 354 355
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
356 357 358
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'
359
Settings.cron_jobs['pipeline_schedule_worker'] ||= Settingslogic.new({})
360
Settings.cron_jobs['pipeline_schedule_worker']['cron'] ||= '19 * * * *'
361
Settings.cron_jobs['pipeline_schedule_worker']['job_class'] = 'PipelineScheduleWorker'
362
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
363
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
364
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
J
Jacob Vosmaer 已提交
365 366
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
367
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
J
Jacob Vosmaer 已提交
368
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
369
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
370
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
371 372 373
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'
374 375 376
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'
377 378 379
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'
380 381 382
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 已提交
383 384 385
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'
386
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
387
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
388
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
389

Y
Yorick Peterse 已提交
390 391 392
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'
393 394 395
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'
396 397 398
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 已提交
399
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
400
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_random_weekly_time)
S
Sean McGivern 已提交
401
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
Y
Yorick Peterse 已提交
402

403 404 405 406
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 已提交
407 408 409 410
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'

411 412 413 414
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'

415 416 417 418
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
419 420
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/')
421
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
422 423
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 已提交
424
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
425 426 427
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
428
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
429
Settings.gitlab_shell['git_timeout'] ||= 800
R
Riyad Preukschas 已提交
430

431 432 433 434 435 436
#
# Workhorse
#
Settings['workhorse'] ||= Settingslogic.new({})
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')

437 438 439 440 441
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
442 443 444 445 446 447 448
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
449

450 451 452
Settings.repositories.storages.each do |key, storage|
  storage = Settingslogic.new(storage)

453 454
  # Expand relative paths
  storage['path'] = Settings.absolute(storage['path'])
455 456 457 458 459 460 461 462 463 464 465
  # Set failure defaults
  storage['failure_count_threshold'] ||= 10
  storage['failure_wait_time'] ||= 30
  storage['failure_reset_time'] ||= 1800
  storage['storage_timeout'] ||= 5
  # Set turn strings into numbers
  storage['failure_count_threshold'] = storage['failure_count_threshold'].to_i
  storage['failure_wait_time'] = storage['failure_wait_time'].to_i
  storage['failure_reset_time'] = storage['failure_reset_time'].to_i
  # We might want to have a timeout shorter than 1 second.
  storage['storage_timeout'] = storage['storage_timeout'].to_f
466 467

  Settings.repositories.storages[key] = storage
468 469
end

470 471 472 473 474 475 476
#
# 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.
#
477
repositories_storages          = Settings.repositories.storages.values
478 479 480
repository_downloads_path      = Settings.gitlab['repository_downloads_path'].to_s.gsub(/\/$/, '')
repository_downloads_full_path = File.expand_path(repository_downloads_path, Settings.gitlab['user_home'])

481
if repository_downloads_path.blank? || repositories_storages.any? { |rs| [repository_downloads_path, repository_downloads_full_path].include?(rs['path'].gsub(/\/$/, '')) }
482 483 484
  Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
end

485 486 487
#
# Backup
#
R
Riyad Preukschas 已提交
488
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
489
Settings.backup['keep_time']  ||= 0
V
Valery Sizov 已提交
490
Settings.backup['pg_schema']    = nil
491
Settings.backup['path']         = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
492
Settings.backup['archive_permissions'] ||= 0600
493
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
494
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
495
Settings.backup['upload']['encryption'] ||= nil
496
Settings.backup['upload']['storage_class'] ||= nil
R
Riyad Preukschas 已提交
497

498 499 500
#
# Git
#
R
Riyad Preukschas 已提交
501
Settings['git'] ||= Settingslogic.new({})
502
Settings.git['max_size']  ||= 20971520 # 20.megabytes
D
Dmitriy Zaporozhets 已提交
503
Settings.git['bin_path']  ||= '/usr/bin/git'
504
Settings.git['timeout']   ||= 10
505

506 507 508
# 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 已提交
509
Settings['satellites'] ||= Settingslogic.new({})
510
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
511 512 513 514 515

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

517 518 519 520 521
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
522
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
523
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
524 525 526 527
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

528 529 530 531 532
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})

533 534 535 536 537 538 539 540 541
#
# 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

542
#
543
# Monitoring settings
544
#
545
Settings['monitoring'] ||= Settingslogic.new({})
P
Pawel Chojnacki 已提交
546
Settings.monitoring['ip_whitelist'] ||= ['127.0.0.1/8']
547
Settings.monitoring['unicorn_sampler_interval'] ||= 10
548 549 550 551
Settings.monitoring['sidekiq_exporter'] ||= Settingslogic.new({})
Settings.monitoring.sidekiq_exporter['enabled'] ||= false
Settings.monitoring.sidekiq_exporter['address'] ||= 'localhost'
Settings.monitoring.sidekiq_exporter['port'] ||= 3807
552

553 554 555 556 557
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
558
  Settings.gitlab['default_can_create_group'] = true
559
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
560
end
561 562

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