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
|
2014-01-24 21:59:42 -05:00
|
|
|
def gitlab_on_standard_port?
|
|
|
|
gitlab.port.to_i == (gitlab.https ? 443 : 80)
|
2012-12-20 10:52:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
def build_gitlab_shell_ssh_path_prefix
|
|
|
|
if gitlab_shell.ssh_port != 22
|
|
|
|
"ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/"
|
2012-12-20 10:52:29 -05:00
|
|
|
else
|
2013-02-11 12:16:59 -05:00
|
|
|
"#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:"
|
2012-12-20 10:52:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_gitlab_url
|
2014-01-24 21:59:42 -05:00
|
|
|
custom_port = gitlab_on_standard_port? ? nil : ":#{gitlab.port}"
|
2012-12-20 10:52:29 -05:00
|
|
|
[ gitlab.protocol,
|
|
|
|
"://",
|
|
|
|
gitlab.host,
|
2012-12-28 13:11:28 -05:00
|
|
|
custom_port,
|
|
|
|
gitlab.relative_url_root
|
2012-12-20 10:52:29 -05:00
|
|
|
].join('')
|
|
|
|
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 || []
|
|
|
|
if !current.nil?
|
|
|
|
values = []
|
|
|
|
current.each do |constant|
|
|
|
|
values.push(verify_constant(modul, constant, nil))
|
|
|
|
end
|
|
|
|
values.delete_if { |value| value.nil? }
|
|
|
|
end
|
|
|
|
values
|
|
|
|
end
|
|
|
|
|
|
|
|
# check that `current` (string or integer) is a contant in `modul`.
|
|
|
|
def verify_constant(modul, current, default)
|
|
|
|
constant = modul.constants.find{ |name| modul.const_get(name) == current }
|
|
|
|
value = constant.nil? ? default : modul.const_get(constant)
|
|
|
|
if current.is_a? String
|
|
|
|
value = modul.const_get(current.upcase) rescue default
|
|
|
|
end
|
|
|
|
value
|
|
|
|
end
|
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
|
|
|
Settings.ldap['allow_username_or_email_login'] = false if Settings.ldap['allow_username_or_email_login'].nil?
|
|
|
|
|
2012-12-20 10:52:29 -05:00
|
|
|
|
|
|
|
Settings['omniauth'] ||= Settingslogic.new({})
|
2013-01-09 20:09:46 -05:00
|
|
|
Settings.omniauth['enabled'] = false if Settings.omniauth['enabled'].nil?
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings.omniauth['providers'] ||= []
|
|
|
|
|
2013-02-14 09:26:50 -05:00
|
|
|
Settings['issues_tracker'] ||= {}
|
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# GitLab
|
|
|
|
#
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings['gitlab'] ||= Settingslogic.new({})
|
2013-03-11 02:44:45 -04:00
|
|
|
Settings.gitlab['default_projects_limit'] ||= 10
|
|
|
|
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
|
2013-09-22 01:06:22 -04:00
|
|
|
Settings.gitlab['default_theme'] = Gitlab::Theme::MARS if Settings.gitlab['default_theme'].nil?
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.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'] || ''
|
2012-12-20 10:52:29 -05:00
|
|
|
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.gitlab['email_from'] ||= "gitlab@#{Settings.gitlab.host}"
|
2013-01-20 07:17:56 -05:00
|
|
|
Settings.gitlab['support_email'] ||= Settings.gitlab.email_from
|
2012-12-24 14:25:33 -05:00
|
|
|
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
|
2012-11-06 08:30:48 -05:00
|
|
|
Settings.gitlab['signup_enabled'] ||= false
|
2014-04-07 11:11:06 -04:00
|
|
|
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
|
2013-11-06 10:13:21 -05: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?
|
2014-04-11 17:13:21 -04:00
|
|
|
Settings.gitlab['issue_closing_pattern'] = '([Cc]lose[sd]|[Ff]ixe[sd]) #(\d+)' if Settings.gitlab['issue_closing_pattern'].nil?
|
2013-04-24 06:12:56 -04:00
|
|
|
Settings.gitlab['default_projects_features'] ||= {}
|
|
|
|
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?
|
2013-04-26 04:02:00 -04:00
|
|
|
Settings.gitlab.default_projects_features['wall'] = false if Settings.gitlab.default_projects_features['wall'].nil?
|
|
|
|
Settings.gitlab.default_projects_features['snippets'] = false if Settings.gitlab.default_projects_features['snippets'].nil?
|
2013-11-06 10:13:21 -05:00
|
|
|
Settings.gitlab.default_projects_features['visibility_level'] = Settings.send(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
|
2014-03-28 08:09:25 -04:00
|
|
|
Settings.gitlab['repository_downloads_path'] = File.absolute_path(Settings.gitlab['repository_downloads_path'] || 'tmp/repositories', Rails.root)
|
2012-12-20 10:52:29 -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?
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.gravatar['plain_url'] ||= 'http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm'
|
|
|
|
Settings.gravatar['ssl_url'] ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm'
|
2012-12-20 10:52:29 -05:00
|
|
|
|
2013-02-11 12:16:59 -05:00
|
|
|
#
|
|
|
|
# GitLab Shell
|
|
|
|
#
|
|
|
|
Settings['gitlab_shell'] ||= Settingslogic.new({})
|
2013-12-09 12:32:37 -05:00
|
|
|
Settings.gitlab_shell['path'] ||= Settings.gitlab['user_home'] + '/gitlab-shell/'
|
2013-05-22 14:51:08 -04:00
|
|
|
Settings.gitlab_shell['hooks_path'] ||= Settings.gitlab['user_home'] + '/gitlab-shell/hooks/'
|
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?
|
2013-05-22 14:51:08 -04:00
|
|
|
Settings.gitlab_shell['repos_path'] ||= Settings.gitlab['user_home'] + '/repositories/'
|
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
|
|
|
|
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.send(:build_gitlab_shell_ssh_path_prefix)
|
2012-12-20 10:52:29 -05:00
|
|
|
|
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
|
|
|
|
Settings.backup['path'] = File.expand_path(Settings.backup['path'] || "tmp/backups/", Rails.root)
|
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({})
|
2012-12-24 14:25:33 -05:00
|
|
|
Settings.git['max_size'] ||= 5242880 # 5.megabytes
|
|
|
|
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
|
|
|
|
2013-01-16 11:00:38 -05:00
|
|
|
Settings['satellites'] ||= Settingslogic.new({})
|
2013-01-16 17:54:48 -05:00
|
|
|
Settings.satellites['path'] = File.expand_path(Settings.satellites['path'] || "tmp/repo_satellites/", Rails.root)
|
2013-05-08 14:03:14 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Extra customization
|
|
|
|
#
|
|
|
|
Settings['extra'] ||= Settingslogic.new({})
|
2013-03-11 02:44:45 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Testing settings
|
|
|
|
#
|
|
|
|
if Rails.env.test?
|
|
|
|
Settings.gitlab['default_projects_limit'] = 42
|
|
|
|
Settings.gitlab['default_can_create_group'] = false
|
|
|
|
Settings.gitlab['default_can_create_team'] = false
|
|
|
|
end
|