1_settings.rb 22.0 KB
Newer Older
1
require_dependency Rails.root.join('lib/gitlab') # Load Gitlab as soon as possible
2

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?
      on_standard_port?(gitlab)
R
Riyad Preukschas 已提交
10
    end
11

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

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

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

33 34 35 36
    def build_pages_url
      base_url(pages).join('')
    end

37
    def build_gitlab_shell_ssh_path_prefix
38 39
      user_host = "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}"

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

51
    def build_base_gitlab_url
52
      base_url(gitlab).join('')
53 54
    end

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

59 60 61
    # check that values in `current` (string or integer) is a contant in `modul`.
    def verify_constant_array(modul, current, default)
      values = default || []
62
      unless current.nil?
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
        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
81

82 83 84 85
    def absolute(path)
      File.expand_path(path, Rails.root)
    end

86 87
    private

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

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

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

103 104 105 106 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
      url_without_path = url.sub(%r{(https?://[^\/]+)/?.*}, '\1')

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

    # 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
121 122
  end
end
R
Riyad Preukschas 已提交
123 124 125

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

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

139
  Settings.ldap['servers'].each do |key, server|
140
    server['label'] ||= 'LDAP'
141
    server['timeout'] ||= 10.seconds
142
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
143 144
    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 已提交
145
    server['attributes'] = {} if server['attributes'].nil?
146
    server['provider_name'] ||= "ldap#{key}".downcase
147 148 149
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
  end
end
R
Riyad Preukschas 已提交
150 151

Settings['omniauth'] ||= Settingslogic.new({})
152
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
153
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
154
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
155
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
156 157
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?
158
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
159

160
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
161 162 163 164
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 已提交
165

166 167 168
# 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"
169
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
170 171 172 173 174 175 176 177 178 179

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 已提交
180 181 182 183 184 185 186 187 188 189
  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
190
end
191

192
Settings['shared'] ||= Settingslogic.new({})
193
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
194

195
Settings['issues_tracker'] ||= {}
196

197 198 199
#
# GitLab
#
R
Riyad Preukschas 已提交
200
Settings['gitlab'] ||= Settingslogic.new({})
201
Settings.gitlab['default_projects_limit'] ||= 100000
202
Settings.gitlab['default_branch_protection'] ||= 2
203
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
204
Settings.gitlab['host']       ||= ENV['GITLAB_HOST'] || 'localhost'
D
Dmitriy Zaporozhets 已提交
205
Settings.gitlab['ssh_host']   ||= Settings.gitlab.host
206
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
R
Riyad Preukschas 已提交
207
Settings.gitlab['port']       ||= Settings.gitlab.https ? 443 : 80
208
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
209
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
210
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
211 212 213
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 已提交
214
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
215 216
Settings.gitlab['base_url']   ||= Settings.__send__(:build_base_gitlab_url)
Settings.gitlab['url']        ||= Settings.__send__(:build_gitlab_url)
D
Dmitriy Zaporozhets 已提交
217
Settings.gitlab['user']       ||= 'git'
218 219 220 221 222
Settings.gitlab['user_home']  ||= begin
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
223
Settings.gitlab['time_zone'] ||= nil
D
Dmitriy Zaporozhets 已提交
224
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
225
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
226
Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
227
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
J
Jacob Schatz 已提交
228
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?
229
Settings.gitlab['default_projects_features'] ||= {}
230
Settings.gitlab['webhook_timeout'] ||= 10
231
Settings.gitlab['max_attachment_size'] ||= 10
232
Settings.gitlab['session_expire_delay'] ||= 10080
233 234 235
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?
236
Settings.gitlab.default_projects_features['snippets']           = true if Settings.gitlab.default_projects_features['snippets'].nil?
237 238
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?
239
Settings.gitlab.default_projects_features['visibility_level']   = Settings.__send__(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
240
Settings.gitlab['domain_whitelist'] ||= []
241
Settings.gitlab['import_sources'] ||= %w[github bitbucket gitlab google_code fogbugz git gitlab_project gitea]
242
Settings.gitlab['trusted_proxies'] ||= []
243
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
R
Riyad Preukschas 已提交
244

V
Valery Sizov 已提交
245 246 247 248
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
249 250 251
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?
252
Settings.gitlab_ci['builds_path']           = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
253
Settings.gitlab_ci['url']                 ||= Settings.__send__(:build_gitlab_ci_url)
V
Valery Sizov 已提交
254

D
Douwe Maan 已提交
255 256 257
#
# Reply by email
#
258
Settings['incoming_email'] ||= Settingslogic.new({})
259
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
260

K
Kamil Trzcinski 已提交
261 262 263 264 265
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
266
Settings.artifacts['path']         = Settings.absolute(Settings.artifacts['path'] || File.join(Settings.shared['path'], "artifacts"))
267
Settings.artifacts['max_size']   ||= 100 # in megabytes
K
Kamil Trzcinski 已提交
268

269 270 271 272
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
273 274
Settings.registry['enabled']       ||= false
Settings.registry['host']          ||= "example.com"
275
Settings.registry['port']          ||= nil
276 277 278
Settings.registry['api_url']       ||= "http://localhost:5000/"
Settings.registry['key']           ||= nil
Settings.registry['issuer']        ||= nil
K
Kamil Trzcinski 已提交
279
Settings.registry['host_port']     ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
280
Settings.registry['path']            = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
281

282
#
K
Kamil Trzcinski 已提交
283
# Pages
284
#
K
Kamil Trzcinski 已提交
285 286
Settings['pages'] ||= Settingslogic.new({})
Settings.pages['enabled']         = false if Settings.pages['enabled'].nil?
287
Settings.pages['path']            = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
288
Settings.pages['https']           = false if Settings.pages['https'].nil?
289
Settings.pages['host']            ||= "example.com"
290 291
Settings.pages['port']            ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol']        ||= Settings.pages.https ? "https" : "http"
292
Settings.pages['url']             ||= Settings.__send__(:build_pages_url)
293 294
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 已提交
295

M
Marin Jankovski 已提交
296 297 298 299
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
300
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
301
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
M
Marin Jankovski 已提交
302

K
Kamil Trzcinski 已提交
303 304 305 306
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
307 308
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
309

310 311 312
#
# Gravatar
#
R
Riyad Preukschas 已提交
313
Settings['gravatar'] ||= Settingslogic.new({})
314
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
315 316
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'
317
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
318

319 320 321 322
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
323 324 325
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'
326
Settings.cron_jobs['trigger_schedule_worker'] ||= Settingslogic.new({})
327
Settings.cron_jobs['trigger_schedule_worker']['cron'] ||= '0 */12 * * *'
328
Settings.cron_jobs['trigger_schedule_worker']['job_class'] = 'TriggerScheduleWorker'
329
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
330
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
331
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
J
Jacob Vosmaer 已提交
332 333
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
334
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
J
Jacob Vosmaer 已提交
335
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
336
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
337
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
338 339 340
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'
341 342 343
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'
344 345 346
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'
347 348 349
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 已提交
350 351 352
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'
353
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
354
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
355
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
356

Y
Yorick Peterse 已提交
357 358 359
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'
360 361 362
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'
363 364 365
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 已提交
366
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
367
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_random_weekly_time)
S
Sean McGivern 已提交
368
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
Y
Yorick Peterse 已提交
369

370 371 372 373 374
# Every day at 00:30
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'

375 376 377 378
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
379 380
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/')
381
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
382 383
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 已提交
384
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
385 386 387
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
388
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
389
Settings.gitlab_shell['git_timeout'] ||= 800
R
Riyad Preukschas 已提交
390

391 392 393 394 395 396
#
# Workhorse
#
Settings['workhorse'] ||= Settingslogic.new({})
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')

397 398 399 400 401
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
402 403 404 405 406 407 408
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
409

410 411 412 413 414
Settings.repositories.storages.values.each do |storage|
  # Expand relative paths
  storage['path'] = Settings.absolute(storage['path'])
end

415 416 417 418 419 420 421
#
# 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.
#
422
repositories_storages          = Settings.repositories.storages.values
423 424 425
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'])

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

430 431 432
#
# Backup
#
R
Riyad Preukschas 已提交
433
Settings['backup'] ||= Settingslogic.new({})
D
Dmitriy Zaporozhets 已提交
434
Settings.backup['keep_time']  ||= 0
V
Valery Sizov 已提交
435
Settings.backup['pg_schema']    = nil
436
Settings.backup['path']         = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
437
Settings.backup['archive_permissions'] ||= 0600
438
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
439 440 441 442
# 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
443
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
444
Settings.backup['upload']['encryption'] ||= nil
445
Settings.backup['upload']['storage_class'] ||= nil
R
Riyad Preukschas 已提交
446

447 448 449
#
# Git
#
R
Riyad Preukschas 已提交
450
Settings['git'] ||= Settingslogic.new({})
451
Settings.git['max_size']  ||= 20971520 # 20.megabytes
D
Dmitriy Zaporozhets 已提交
452
Settings.git['bin_path']  ||= '/usr/bin/git'
453
Settings.git['timeout']   ||= 10
454

455 456 457
# 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 已提交
458
Settings['satellites'] ||= Settingslogic.new({})
459
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
460 461 462 463 464

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

466 467 468 469 470
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
471
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
472
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
473 474 475 476
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

477 478 479 480
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})
481
Settings.gitaly['enabled'] ||= false
482

483 484 485 486 487 488 489 490 491
#
# 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

492 493 494 495 496
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
497
  Settings.gitlab['default_can_create_group'] = true
498
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
499
end
500 501

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