2016-04-15 11:35:40 -04:00
|
|
|
require_dependency Rails.root.join('lib/gitlab') # Load Gitlab as soon as possible
|
2015-04-09 13:56:38 -04:00
|
|
|
|
2012-07-02 14:51:48 -04:00
|
|
|
class Settings < Settingslogic
|
2014-04-15 12:04:22 -04:00
|
|
|
source ENV.fetch('GITLAB_CONFIG') { "#{Rails.root}/config/gitlab.yml" }
|
2013-02-14 02:44:34 -05:00
|
|
|
namespace Rails.env
|
2012-07-02 14:51:48 -04:00
|
|
|
|
|
|
|
class << self
|
2015-12-16 07:04:05 -05:00
|
|
|
def gitlab_on_standard_port?
|
|
|
|
on_standard_port?(gitlab)
|
2012-12-20 10:52:29 -05:00
|
|
|
end
|
2015-08-23 16:31:02 -04:00
|
|
|
|
2016-01-18 06:35:30 -05:00
|
|
|
def host_without_www(url)
|
|
|
|
host(url).sub('www.', '')
|
2015-08-05 03:48:16 -04:00
|
|
|
end
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2015-09-10 06:42:41 -04:00
|
|
|
def build_gitlab_ci_url
|
2017-02-22 10:10:32 -05:00
|
|
|
custom_port =
|
|
|
|
if on_standard_port?(gitlab)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
":#{gitlab.port}"
|
|
|
|
end
|
2017-02-22 17:35:45 -05:00
|
|
|
|
2017-02-22 12:35:20 -05:00
|
|
|
[
|
|
|
|
gitlab.protocol,
|
|
|
|
"://",
|
|
|
|
gitlab.host,
|
|
|
|
custom_port,
|
|
|
|
gitlab.relative_url_root
|
2015-09-10 06:42:41 -04:00
|
|
|
].join('')
|
|
|
|
end
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2015-12-16 06:53:54 -05:00
|
|
|
def build_pages_url
|
|
|
|
base_url(pages).join('')
|
|
|
|
end
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
def build_gitlab_shell_ssh_path_prefix
|
2015-11-29 17:52:40 -05:00
|
|
|
user_host = "#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}"
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
if gitlab_shell.ssh_port != 22
|
2015-11-29 17:52:40 -05:00
|
|
|
"ssh://#{user_host}:#{gitlab_shell.ssh_port}/"
|
2012-12-20 10:52:29 -05:00
|
|
|
else
|
2014-12-14 21:01:02 -05:00
|
|
|
if gitlab_shell.ssh_host.include? ':'
|
2015-11-29 17:52:40 -05:00
|
|
|
"[#{user_host}]:"
|
2014-12-14 21:01:02 -05:00
|
|
|
else
|
2015-11-29 17:52:40 -05:00
|
|
|
"#{user_host}:"
|
2014-12-14 21:01:02 -05:00
|
|
|
end
|
2012-12-20 10:52:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-23 16:31:02 -04:00
|
|
|
def build_base_gitlab_url
|
2015-12-16 06:53:54 -05:00
|
|
|
base_url(gitlab).join('')
|
2015-08-23 16:31:02 -04:00
|
|
|
end
|
|
|
|
|
2012-12-20 10:52:29 -05:00
|
|
|
def build_gitlab_url
|
2015-12-16 06:53:54 -05:00
|
|
|
(base_url(gitlab) + [gitlab.relative_url_root]).join('')
|
2012-12-20 10:52:29 -05:00
|
|
|
end
|
2013-11-29 07:46:40 -05:00
|
|
|
|
2013-11-06 10:13:21 -05:00
|
|
|
# check that values in `current` (string or integer) is a contant in `modul`.
|
|
|
|
def verify_constant_array(modul, current, default)
|
|
|
|
values = default || []
|
2016-05-30 07:46:47 -04:00
|
|
|
unless current.nil?
|
2013-11-06 10:13:21 -05:00
|
|
|
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
|
2015-08-23 16:31:02 -04:00
|
|
|
|
2017-03-24 11:52:43 -04:00
|
|
|
def absolute(path)
|
|
|
|
File.expand_path(path, Rails.root)
|
|
|
|
end
|
|
|
|
|
2015-08-23 16:31:02 -04:00
|
|
|
private
|
|
|
|
|
2015-12-16 06:53:54 -05:00
|
|
|
def base_url(config)
|
|
|
|
custom_port = on_standard_port?(config) ? nil : ":#{config.port}"
|
2017-02-28 16:08:40 -05:00
|
|
|
|
2017-02-22 12:35:20 -05:00
|
|
|
[
|
|
|
|
config.protocol,
|
|
|
|
"://",
|
|
|
|
config.host,
|
|
|
|
custom_port
|
2015-08-23 16:31:02 -04:00
|
|
|
]
|
|
|
|
end
|
2016-01-18 06:35:30 -05:00
|
|
|
|
2015-12-16 07:04:05 -05:00
|
|
|
def on_standard_port?(config)
|
|
|
|
config.port.to_i == (config.https ? 443 : 80)
|
|
|
|
end
|
|
|
|
|
2016-01-18 06:35:30 -05:00
|
|
|
# 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
|
2017-04-05 08:19:59 -04:00
|
|
|
|
|
|
|
# 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
|
2012-07-02 14:51:48 -04:00
|
|
|
end
|
|
|
|
end
|
2012-12-20 10:52:29 -05:00
|
|
|
|
|
|
|
# Default settings
|
|
|
|
Settings['ldap'] ||= Settingslogic.new({})
|
2013-01-09 20:09:46 -05:00
|
|
|
Settings.ldap['enabled'] = false if Settings.ldap['enabled'].nil?
|
2013-07-11 13:05:01 -04:00
|
|
|
|
2014-10-13 08:04:10 -04:00
|
|
|
# backwards compatibility, we only have one host
|
|
|
|
if Settings.ldap['enabled'] || Rails.env.test?
|
|
|
|
if Settings.ldap['host'].present?
|
2015-04-13 05:50:44 -04:00
|
|
|
# We detected old LDAP configuration syntax. Update the config to make it
|
|
|
|
# look like it was entered with the new syntax.
|
2014-10-13 08:04:10 -04:00
|
|
|
server = Settings.ldap.except('sync_time')
|
2014-10-14 07:11:53 -04:00
|
|
|
Settings.ldap['servers'] = {
|
2015-04-13 05:50:44 -04:00
|
|
|
'main' => server
|
2014-10-14 07:11:53 -04:00
|
|
|
}
|
2014-10-13 08:04:10 -04:00
|
|
|
end
|
|
|
|
|
2014-10-14 07:11:53 -04:00
|
|
|
Settings.ldap['servers'].each do |key, server|
|
2014-10-17 12:08:26 -04:00
|
|
|
server['label'] ||= 'LDAP'
|
2015-12-31 14:22:51 -05:00
|
|
|
server['timeout'] ||= 10.seconds
|
2015-04-14 11:09:05 -04:00
|
|
|
server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
|
2014-10-13 08:04:10 -04:00
|
|
|
server['allow_username_or_email_login'] = false if server['allow_username_or_email_login'].nil?
|
|
|
|
server['active_directory'] = true if server['active_directory'].nil?
|
2015-09-08 12:34:18 -04:00
|
|
|
server['attributes'] = {} if server['attributes'].nil?
|
2014-10-14 07:11:53 -04:00
|
|
|
server['provider_name'] ||= "ldap#{key}".downcase
|
2014-10-13 08:04:10 -04:00
|
|
|
server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
|
|
|
|
end
|
|
|
|
end
|
2012-12-20 10:52:29 -05:00
|
|
|
|
|
|
|
Settings['omniauth'] ||= Settingslogic.new({})
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
|
2015-05-27 11:40:21 -04:00
|
|
|
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
|
2015-06-02 06:01:29 -04:00
|
|
|
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
|
2016-04-11 11:16:15 -04:00
|
|
|
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
|
2015-06-02 06:01:29 -04:00
|
|
|
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?
|
2016-02-22 11:59:15 -05:00
|
|
|
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
|
2015-05-27 11:40:21 -04:00
|
|
|
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.omniauth['providers'] ||= []
|
2015-11-11 23:25:31 -05:00
|
|
|
Settings.omniauth['cas3'] ||= Settingslogic.new({})
|
|
|
|
Settings.omniauth.cas3['session_duration'] ||= 8.hours
|
|
|
|
Settings.omniauth['session_tickets'] ||= Settingslogic.new({})
|
|
|
|
Settings.omniauth.session_tickets['cas3'] = 'ticket'
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2016-04-22 15:43:10 -04:00
|
|
|
# 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"
|
2016-04-27 00:02:24 -04:00
|
|
|
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
|
2016-04-22 15:43:10 -04:00
|
|
|
|
|
|
|
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({})
|
|
|
|
|
2017-02-22 10:10:32 -05:00
|
|
|
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
|
2016-04-22 15:43:10 -04:00
|
|
|
end
|
2015-12-27 12:03:06 -05:00
|
|
|
|
2015-10-26 08:42:09 -04:00
|
|
|
Settings['shared'] ||= Settingslogic.new({})
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
|
2015-10-26 08:42:09 -04:00
|
|
|
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings['issues_tracker'] ||= {}
|
2013-02-14 09:26:50 -05:00
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# GitLab
|
|
|
|
#
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings['gitlab'] ||= Settingslogic.new({})
|
2017-03-07 08:58:23 -05:00
|
|
|
Settings.gitlab['default_projects_limit'] ||= 100000
|
2015-01-25 10:33:54 -05:00
|
|
|
Settings.gitlab['default_branch_protection'] ||= 2
|
2013-03-11 02:44:45 -04:00
|
|
|
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
|
2015-12-27 11:36:08 -05:00
|
|
|
Settings.gitlab['host'] ||= ENV['GITLAB_HOST'] || 'localhost'
|
2014-04-23 10:22:49 -04:00
|
|
|
Settings.gitlab['ssh_host'] ||= Settings.gitlab.host
|
2013-01-09 20:09:46 -05:00
|
|
|
Settings.gitlab['https'] = false if Settings.gitlab['https'].nil?
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings.gitlab['port'] ||= Settings.gitlab.https ? 443 : 80
|
2013-01-31 16:58:03 -05:00
|
|
|
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
|
2015-05-06 10:39:18 -04:00
|
|
|
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
|
2015-12-30 09:45:24 -05:00
|
|
|
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}"
|
2016-09-02 04:57:08 -04:00
|
|
|
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
|
2017-04-12 11:13:24 -04:00
|
|
|
Settings.gitlab['base_url'] ||= Settings.__send__(:build_base_gitlab_url)
|
|
|
|
Settings.gitlab['url'] ||= Settings.__send__(:build_gitlab_url)
|
2013-02-07 03:06:39 -05:00
|
|
|
Settings.gitlab['user'] ||= 'git'
|
2013-05-23 13:52:38 -04:00
|
|
|
Settings.gitlab['user_home'] ||= begin
|
|
|
|
Etc.getpwnam(Settings.gitlab['user']).dir
|
|
|
|
rescue ArgumentError # no user configured
|
|
|
|
'/home/' + Settings.gitlab['user']
|
|
|
|
end
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.gitlab['time_zone'] ||= nil
|
2015-01-16 11:49:07 -05:00
|
|
|
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
|
2014-04-07 11:11:06 -04:00
|
|
|
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
|
2013-01-30 15:14:34 -05:00
|
|
|
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
|
2016-04-07 08:17:05 -04:00
|
|
|
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?
|
2013-04-24 06:12:56 -04:00
|
|
|
Settings.gitlab['default_projects_features'] ||= {}
|
2014-09-12 11:38:14 -04:00
|
|
|
Settings.gitlab['webhook_timeout'] ||= 10
|
2015-03-20 08:11:12 -04:00
|
|
|
Settings.gitlab['max_attachment_size'] ||= 10
|
2015-06-05 13:16:32 -04:00
|
|
|
Settings.gitlab['session_expire_delay'] ||= 10080
|
2016-05-09 13:29:57 -04:00
|
|
|
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?
|
2017-03-10 08:09:24 -05:00
|
|
|
Settings.gitlab.default_projects_features['snippets'] = true if Settings.gitlab.default_projects_features['snippets'].nil?
|
2016-05-09 13:29:57 -04:00
|
|
|
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?
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.gitlab.default_projects_features['visibility_level'] = Settings.__send__(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
|
2016-07-15 19:30:38 -04:00
|
|
|
Settings.gitlab['domain_whitelist'] ||= []
|
2016-12-15 11:31:14 -05:00
|
|
|
Settings.gitlab['import_sources'] ||= %w[github bitbucket gitlab google_code fogbugz git gitlab_project gitea]
|
2016-04-01 18:04:03 -04:00
|
|
|
Settings.gitlab['trusted_proxies'] ||= []
|
2016-10-11 19:22:09 -04:00
|
|
|
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
|
2017-05-09 15:40:19 -04:00
|
|
|
Settings.gitlab['usage_ping_enabled'] = true if Settings.gitlab['usage_ping_enabled'].nil?
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2015-09-10 06:42:41 -04:00
|
|
|
#
|
|
|
|
# CI
|
|
|
|
#
|
|
|
|
Settings['gitlab_ci'] ||= Settingslogic.new({})
|
2015-11-03 08:45:41 -05:00
|
|
|
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?
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.gitlab_ci['builds_path'] = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.gitlab_ci['url'] ||= Settings.__send__(:build_gitlab_ci_url)
|
2015-09-10 06:42:41 -04:00
|
|
|
|
2015-08-18 18:46:36 -04:00
|
|
|
#
|
|
|
|
# Reply by email
|
|
|
|
#
|
2015-09-21 03:46:47 -04:00
|
|
|
Settings['incoming_email'] ||= Settingslogic.new({})
|
2016-02-26 21:48:13 -05:00
|
|
|
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
|
2015-08-18 18:46:36 -04:00
|
|
|
|
2015-11-22 08:27:30 -05:00
|
|
|
#
|
|
|
|
# Build Artifacts
|
|
|
|
#
|
|
|
|
Settings['artifacts'] ||= Settingslogic.new({})
|
|
|
|
Settings.artifacts['enabled'] = true if Settings.artifacts['enabled'].nil?
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.artifacts['path'] = Settings.absolute(Settings.artifacts['path'] || File.join(Settings.shared['path'], "artifacts"))
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.artifacts['max_size'] ||= 100 # in megabytes
|
2015-11-22 08:27:30 -05:00
|
|
|
|
2016-04-18 08:13:16 -04:00
|
|
|
#
|
|
|
|
# Registry
|
|
|
|
#
|
|
|
|
Settings['registry'] ||= Settingslogic.new({})
|
2016-05-14 15:03:41 -04:00
|
|
|
Settings.registry['enabled'] ||= false
|
|
|
|
Settings.registry['host'] ||= "example.com"
|
2016-05-16 10:48:39 -04:00
|
|
|
Settings.registry['port'] ||= nil
|
2016-05-14 15:03:41 -04:00
|
|
|
Settings.registry['api_url'] ||= "http://localhost:5000/"
|
|
|
|
Settings.registry['key'] ||= nil
|
|
|
|
Settings.registry['issuer'] ||= nil
|
2016-05-16 10:51:15 -04:00
|
|
|
Settings.registry['host_port'] ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.registry['path'] = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
|
2016-04-18 08:13:16 -04:00
|
|
|
|
2015-12-16 06:53:54 -05:00
|
|
|
#
|
2015-11-03 15:28:07 -05:00
|
|
|
# Pages
|
2015-12-16 06:53:54 -05:00
|
|
|
#
|
2015-11-03 15:28:07 -05:00
|
|
|
Settings['pages'] ||= Settingslogic.new({})
|
|
|
|
Settings.pages['enabled'] = false if Settings.pages['enabled'].nil?
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.pages['path'] = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
|
2015-12-16 06:53:54 -05:00
|
|
|
Settings.pages['https'] = false if Settings.pages['https'].nil?
|
2017-02-02 10:56:29 -05:00
|
|
|
Settings.pages['host'] ||= "example.com"
|
2015-12-16 06:53:54 -05:00
|
|
|
Settings.pages['port'] ||= Settings.pages.https ? 443 : 80
|
|
|
|
Settings.pages['protocol'] ||= Settings.pages.https ? "https" : "http"
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.pages['url'] ||= Settings.__send__(:build_pages_url)
|
2017-03-08 11:45:59 -05:00
|
|
|
Settings.pages['external_http'] ||= false unless Settings.pages['external_http'].present?
|
|
|
|
Settings.pages['external_https'] ||= false unless Settings.pages['external_https'].present?
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2015-10-12 10:42:14 -04:00
|
|
|
#
|
|
|
|
# Git LFS
|
|
|
|
#
|
|
|
|
Settings['lfs'] ||= Settingslogic.new({})
|
2015-11-18 05:06:12 -05:00
|
|
|
Settings.lfs['enabled'] = true if Settings.lfs['enabled'].nil?
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
|
2015-10-12 10:42:14 -04:00
|
|
|
|
2016-12-16 06:20:42 -05:00
|
|
|
#
|
|
|
|
# Mattermost
|
|
|
|
#
|
|
|
|
Settings['mattermost'] ||= Settingslogic.new({})
|
2016-12-16 07:43:01 -05:00
|
|
|
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
|
|
|
|
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
|
2016-12-16 06:20:42 -05:00
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# Gravatar
|
|
|
|
#
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings['gravatar'] ||= Settingslogic.new({})
|
2013-01-09 20:09:46 -05:00
|
|
|
Settings.gravatar['enabled'] = true if Settings.gravatar['enabled'].nil?
|
2014-06-17 02:27:50 -04:00
|
|
|
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'
|
2016-01-18 06:35:30 -05:00
|
|
|
Settings.gravatar['host'] = Settings.host_without_www(Settings.gravatar['plain_url'])
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2015-12-12 20:06:23 -05:00
|
|
|
#
|
|
|
|
# Cron Jobs
|
|
|
|
#
|
|
|
|
Settings['cron_jobs'] ||= Settingslogic.new({})
|
2017-03-02 18:43:39 -05:00
|
|
|
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'
|
2017-05-07 18:35:56 -04:00
|
|
|
Settings.cron_jobs['pipeline_schedule_worker'] ||= Settingslogic.new({})
|
2017-05-18 06:26:00 -04:00
|
|
|
Settings.cron_jobs['pipeline_schedule_worker']['cron'] ||= '19 * * * *'
|
2017-05-07 18:35:56 -04:00
|
|
|
Settings.cron_jobs['pipeline_schedule_worker']['job_class'] = 'PipelineScheduleWorker'
|
2016-06-08 11:18:54 -04:00
|
|
|
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
|
2016-06-10 15:53:57 -04:00
|
|
|
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
|
2016-06-08 11:18:54 -04:00
|
|
|
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
|
2016-04-06 07:47:05 -04:00
|
|
|
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
|
|
|
|
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
|
2016-04-13 09:56:05 -04:00
|
|
|
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::BatchWorker'
|
2016-04-04 11:23:43 -04:00
|
|
|
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
|
2016-04-26 05:54:37 -04:00
|
|
|
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
|
2016-04-04 11:23:43 -04:00
|
|
|
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
|
2016-04-11 15:38:36 -04:00
|
|
|
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'
|
2016-08-02 05:32:28 -04:00
|
|
|
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'
|
2016-07-15 11:46:39 -04:00
|
|
|
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'
|
2016-08-04 03:41:29 -04:00
|
|
|
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'
|
2016-08-19 11:09:38 -04:00
|
|
|
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'
|
2016-09-05 04:18:08 -04:00
|
|
|
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
|
2016-12-12 15:31:04 -05:00
|
|
|
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
|
2016-09-05 04:18:08 -04:00
|
|
|
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
|
2015-12-12 20:06:23 -05:00
|
|
|
|
2016-10-07 09:24:09 -04:00
|
|
|
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'
|
2016-10-28 13:39:20 -04:00
|
|
|
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'
|
2017-03-24 07:08:34 -04:00
|
|
|
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'
|
2017-04-05 08:19:59 -04:00
|
|
|
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_random_weekly_time)
|
2017-04-05 08:19:59 -04:00
|
|
|
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
|
2016-10-07 09:24:09 -04:00
|
|
|
|
2017-03-07 13:35:32 -05:00
|
|
|
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'
|
|
|
|
|
2017-04-27 06:08:57 -04:00
|
|
|
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'
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# GitLab Shell
|
|
|
|
#
|
|
|
|
Settings['gitlab_shell'] ||= Settingslogic.new({})
|
2017-03-24 11:52:43 -04:00
|
|
|
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/')
|
2015-02-16 07:16:26 -05:00
|
|
|
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
|
2013-02-11 12:16:59 -05:00
|
|
|
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?
|
2014-04-23 10:22:49 -04:00
|
|
|
Settings.gitlab_shell['ssh_host'] ||= Settings.gitlab.ssh_host
|
2013-02-11 12:16:59 -05:00
|
|
|
Settings.gitlab_shell['ssh_port'] ||= 22
|
|
|
|
Settings.gitlab_shell['ssh_user'] ||= Settings.gitlab.user
|
|
|
|
Settings.gitlab_shell['owner_group'] ||= Settings.gitlab.user
|
2017-04-12 11:13:48 -04:00
|
|
|
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
|
2017-04-13 21:53:30 -04:00
|
|
|
Settings.gitlab_shell['git_timeout'] ||= 800
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2017-03-30 20:37:45 -04:00
|
|
|
#
|
|
|
|
# Workhorse
|
|
|
|
#
|
|
|
|
Settings['workhorse'] ||= Settingslogic.new({})
|
|
|
|
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
#
|
|
|
|
# Repositories
|
|
|
|
#
|
|
|
|
Settings['repositories'] ||= Settingslogic.new({})
|
|
|
|
Settings.repositories['storages'] ||= {}
|
2017-02-28 16:08:40 -05:00
|
|
|
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
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.repositories.storages.values.each do |storage|
|
|
|
|
# Expand relative paths
|
|
|
|
storage['path'] = Settings.absolute(storage['path'])
|
|
|
|
end
|
|
|
|
|
2016-07-15 15:27:19 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2017-02-28 16:08:40 -05:00
|
|
|
repositories_storages = Settings.repositories.storages.values
|
2016-07-15 15:27:19 -04:00
|
|
|
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'])
|
|
|
|
|
2017-02-28 16:08:40 -05:00
|
|
|
if repository_downloads_path.blank? || repositories_storages.any? { |rs| [repository_downloads_path, repository_downloads_full_path].include?(rs['path'].gsub(/\/$/, '')) }
|
2016-07-15 15:27:19 -04:00
|
|
|
Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
|
|
|
|
end
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# Backup
|
|
|
|
#
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings['backup'] ||= Settingslogic.new({})
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.backup['keep_time'] ||= 0
|
2015-09-18 05:47:25 -04:00
|
|
|
Settings.backup['pg_schema'] = nil
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.backup['path'] = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
|
2016-05-10 22:58:06 -04:00
|
|
|
Settings.backup['archive_permissions'] ||= 0600
|
2015-02-02 23:36:54 -05:00
|
|
|
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
|
2014-09-29 09:02:39 -04:00
|
|
|
# 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
|
2015-06-09 11:56:37 -04:00
|
|
|
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
|
2015-09-10 11:57:43 -04:00
|
|
|
Settings.backup['upload']['encryption'] ||= nil
|
2017-02-28 16:30:58 -05:00
|
|
|
Settings.backup['upload']['storage_class'] ||= nil
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# Git
|
|
|
|
#
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings['git'] ||= Settingslogic.new({})
|
2014-08-15 05:38:32 -04:00
|
|
|
Settings.git['max_size'] ||= 20971520 # 20.megabytes
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.git['bin_path'] ||= '/usr/bin/git'
|
2012-12-24 14:29:53 -05:00
|
|
|
Settings.git['timeout'] ||= 10
|
2013-01-16 06:30:31 -05:00
|
|
|
|
2015-10-23 10:51:44 -04:00
|
|
|
# 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
|
2013-01-16 11:00:38 -05:00
|
|
|
Settings['satellites'] ||= Settingslogic.new({})
|
2017-03-24 11:52:43 -04:00
|
|
|
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
|
2013-05-08 14:03:14 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Extra customization
|
|
|
|
#
|
|
|
|
Settings['extra'] ||= Settingslogic.new({})
|
2013-03-11 02:44:45 -04:00
|
|
|
|
2014-12-15 12:47:26 -05:00
|
|
|
#
|
|
|
|
# Rack::Attack settings
|
|
|
|
#
|
|
|
|
Settings['rack_attack'] ||= Settingslogic.new({})
|
|
|
|
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
|
2015-03-15 22:07:23 -04:00
|
|
|
Settings.rack_attack.git_basic_auth['enabled'] = true if Settings.rack_attack.git_basic_auth['enabled'].nil?
|
2015-01-06 10:56:56 -05:00
|
|
|
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
|
2014-12-15 12:47:26 -05:00
|
|
|
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
|
|
|
|
|
2016-12-26 12:15:40 -05:00
|
|
|
#
|
|
|
|
# Gitaly
|
|
|
|
#
|
|
|
|
Settings['gitaly'] ||= Settingslogic.new({})
|
2017-03-22 13:23:40 -04:00
|
|
|
Settings.gitaly['enabled'] ||= false
|
2016-12-26 12:15:40 -05:00
|
|
|
|
2017-02-01 14:05:33 -05:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2013-03-11 02:44:45 -04:00
|
|
|
#
|
|
|
|
# Testing settings
|
|
|
|
#
|
|
|
|
if Rails.env.test?
|
|
|
|
Settings.gitlab['default_projects_limit'] = 42
|
2014-06-26 16:40:08 -04:00
|
|
|
Settings.gitlab['default_can_create_group'] = true
|
2013-03-11 02:44:45 -04:00
|
|
|
Settings.gitlab['default_can_create_team'] = false
|
2015-10-14 16:31:54 -04:00
|
|
|
end
|
2015-11-25 14:30:33 -05:00
|
|
|
|
|
|
|
# Force a refresh of application settings at startup
|
2017-01-26 06:45:14 -05:00
|
|
|
ApplicationSetting.expire
|