2015-01-08 03:22:50 -05:00
|
|
|
class ApplicationSetting < ActiveRecord::Base
|
2015-12-10 04:48:37 -05:00
|
|
|
include TokenAuthenticatable
|
|
|
|
add_authentication_token_field :runners_registration_token
|
2016-05-09 19:21:22 -04:00
|
|
|
add_authentication_token_field :health_check_access_token
|
2015-12-10 04:48:37 -05:00
|
|
|
|
2015-12-03 03:09:10 -05:00
|
|
|
CACHE_KEY = 'application_setting.last'
|
|
|
|
|
2015-03-01 10:06:46 -05:00
|
|
|
serialize :restricted_visibility_levels
|
2015-08-12 02:13:20 -04:00
|
|
|
serialize :import_sources
|
2016-05-23 00:36:25 -04:00
|
|
|
serialize :disabled_oauth_sign_in_sources, Array
|
2015-05-02 09:53:32 -04:00
|
|
|
serialize :restricted_signup_domains, Array
|
|
|
|
attr_accessor :restricted_signup_domains_raw
|
2015-06-13 00:22:55 -04:00
|
|
|
|
|
|
|
validates :session_expire_delay,
|
2015-12-28 15:21:34 -05:00
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
2015-03-01 10:06:46 -05:00
|
|
|
|
2015-02-03 00:15:44 -05:00
|
|
|
validates :home_page_url,
|
2015-12-28 15:21:34 -05:00
|
|
|
allow_blank: true,
|
|
|
|
url: true,
|
|
|
|
if: :home_page_url_column_exist
|
2015-01-16 19:01:15 -05:00
|
|
|
|
2015-05-29 11:42:27 -04:00
|
|
|
validates :after_sign_out_path,
|
2015-12-28 15:21:34 -05:00
|
|
|
allow_blank: true,
|
|
|
|
url: true
|
2015-05-29 11:42:27 -04:00
|
|
|
|
2015-10-18 05:58:59 -04:00
|
|
|
validates :admin_notification_email,
|
2016-02-09 11:59:47 -05:00
|
|
|
email: true,
|
2016-02-09 09:51:06 -05:00
|
|
|
allow_blank: true
|
2015-10-18 05:58:59 -04:00
|
|
|
|
2015-12-18 15:29:13 -05:00
|
|
|
validates :two_factor_grace_period,
|
2015-12-28 15:21:34 -05:00
|
|
|
numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :recaptcha_site_key,
|
|
|
|
presence: true,
|
|
|
|
if: :recaptcha_enabled
|
|
|
|
|
|
|
|
validates :recaptcha_private_key,
|
|
|
|
presence: true,
|
|
|
|
if: :recaptcha_enabled
|
2015-12-18 15:29:13 -05:00
|
|
|
|
2016-01-18 11:15:10 -05:00
|
|
|
validates :sentry_dsn,
|
|
|
|
presence: true,
|
|
|
|
if: :sentry_enabled
|
|
|
|
|
2016-01-09 14:30:34 -05:00
|
|
|
validates :akismet_api_key,
|
|
|
|
presence: true,
|
|
|
|
if: :akismet_enabled
|
|
|
|
|
2016-02-05 04:12:36 -05:00
|
|
|
validates :max_attachment_size,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
2016-05-30 11:12:50 -04:00
|
|
|
validates :container_registry_token_expire_delay,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
2015-03-01 10:06:46 -05:00
|
|
|
validates_each :restricted_visibility_levels do |record, attr, value|
|
2015-03-16 15:59:50 -04:00
|
|
|
unless value.nil?
|
|
|
|
value.each do |level|
|
|
|
|
unless Gitlab::VisibilityLevel.options.has_value?(level)
|
|
|
|
record.errors.add(attr, "'#{level}' is not a valid visibility level")
|
|
|
|
end
|
2015-03-01 10:06:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-12 02:13:20 -04:00
|
|
|
validates_each :import_sources do |record, attr, value|
|
|
|
|
unless value.nil?
|
|
|
|
value.each do |source|
|
|
|
|
unless Gitlab::ImportSources.options.has_value?(source)
|
|
|
|
record.errors.add(attr, "'#{source}' is not a import source")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-04 08:57:00 -04:00
|
|
|
validates_each :disabled_oauth_sign_in_sources do |record, attr, value|
|
|
|
|
unless value.nil?
|
|
|
|
value.each do |source|
|
|
|
|
unless Devise.omniauth_providers.include?(source.to_sym)
|
2016-05-10 03:21:14 -04:00
|
|
|
record.errors.add(attr, "'#{source}' is not an OAuth sign-in source")
|
2016-05-04 08:57:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-10 07:05:59 -05:00
|
|
|
before_save :ensure_runners_registration_token
|
2016-05-09 19:21:22 -04:00
|
|
|
before_save :ensure_health_check_access_token
|
2015-12-10 07:05:59 -05:00
|
|
|
|
2015-11-12 04:19:03 -05:00
|
|
|
after_commit do
|
2015-12-03 03:09:10 -05:00
|
|
|
Rails.cache.write(CACHE_KEY, self)
|
2015-11-12 04:19:03 -05:00
|
|
|
end
|
|
|
|
|
2015-01-08 03:22:50 -05:00
|
|
|
def self.current
|
2015-12-03 03:09:10 -05:00
|
|
|
Rails.cache.fetch(CACHE_KEY) do
|
2015-11-12 04:19:03 -05:00
|
|
|
ApplicationSetting.last
|
|
|
|
end
|
2015-01-08 03:22:50 -05:00
|
|
|
end
|
2015-01-08 14:26:16 -05:00
|
|
|
|
2015-11-25 14:30:33 -05:00
|
|
|
def self.expire
|
2015-12-03 03:09:10 -05:00
|
|
|
Rails.cache.delete(CACHE_KEY)
|
2015-11-25 14:30:33 -05:00
|
|
|
end
|
|
|
|
|
2016-05-29 15:53:30 -04:00
|
|
|
def self.cached
|
|
|
|
Rails.cache.fetch(CACHE_KEY)
|
|
|
|
end
|
|
|
|
|
2015-01-08 14:26:16 -05:00
|
|
|
def self.create_from_defaults
|
|
|
|
create(
|
|
|
|
default_projects_limit: Settings.gitlab['default_projects_limit'],
|
2015-01-25 10:33:54 -05:00
|
|
|
default_branch_protection: Settings.gitlab['default_branch_protection'],
|
2015-01-08 14:26:16 -05:00
|
|
|
signup_enabled: Settings.gitlab['signup_enabled'],
|
|
|
|
signin_enabled: Settings.gitlab['signin_enabled'],
|
|
|
|
gravatar_enabled: Settings.gravatar['enabled'],
|
2016-05-09 11:12:53 -04:00
|
|
|
sign_in_text: nil,
|
|
|
|
after_sign_up_text: nil,
|
|
|
|
help_page_text: nil,
|
|
|
|
shared_runners_text: nil,
|
2015-03-20 08:11:12 -04:00
|
|
|
restricted_visibility_levels: Settings.gitlab['restricted_visibility_levels'],
|
2015-04-26 01:01:52 -04:00
|
|
|
max_attachment_size: Settings.gitlab['max_attachment_size'],
|
2015-06-05 13:16:32 -04:00
|
|
|
session_expire_delay: Settings.gitlab['session_expire_delay'],
|
2015-04-26 01:01:52 -04:00
|
|
|
default_project_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
2015-05-02 09:53:32 -04:00
|
|
|
default_snippet_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
2015-08-12 02:13:20 -04:00
|
|
|
restricted_signup_domains: Settings.gitlab['restricted_signup_domains'],
|
2015-11-03 08:45:41 -05:00
|
|
|
import_sources: ['github','bitbucket','gitlab','gitorious','google_code','fogbugz','git'],
|
|
|
|
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
|
2015-11-22 08:27:30 -05:00
|
|
|
max_artifacts_size: Settings.artifacts['max_size'],
|
2015-12-18 15:29:13 -05:00
|
|
|
require_two_factor_authentication: false,
|
2016-01-09 14:30:34 -05:00
|
|
|
two_factor_grace_period: 48,
|
|
|
|
recaptcha_enabled: false,
|
2016-04-12 10:21:23 -04:00
|
|
|
akismet_enabled: false,
|
|
|
|
repository_checks_enabled: true,
|
2016-05-16 11:42:34 -04:00
|
|
|
disabled_oauth_sign_in_sources: [],
|
2016-05-30 11:12:50 -04:00
|
|
|
send_user_confirmation_email: false,
|
|
|
|
container_registry_token_expire_delay: 5,
|
2015-01-08 14:26:16 -05:00
|
|
|
)
|
|
|
|
end
|
2015-01-16 20:22:17 -05:00
|
|
|
|
|
|
|
def home_page_url_column_exist
|
|
|
|
ActiveRecord::Base.connection.column_exists?(:application_settings, :home_page_url)
|
|
|
|
end
|
2015-05-02 09:53:32 -04:00
|
|
|
|
|
|
|
def restricted_signup_domains_raw
|
|
|
|
self.restricted_signup_domains.join("\n") unless self.restricted_signup_domains.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def restricted_signup_domains_raw=(values)
|
|
|
|
self.restricted_signup_domains = []
|
|
|
|
self.restricted_signup_domains = values.split(
|
2015-12-14 21:53:52 -05:00
|
|
|
/\s*[,;]\s* # comma or semicolon, optionally surrounded by whitespace
|
|
|
|
| # or
|
|
|
|
\s # any whitespace character
|
|
|
|
| # or
|
|
|
|
[\r\n] # any number of newline characters
|
|
|
|
/x)
|
2015-05-02 09:53:32 -04:00
|
|
|
self.restricted_signup_domains.reject! { |d| d.empty? }
|
|
|
|
end
|
2015-12-23 04:48:10 -05:00
|
|
|
|
|
|
|
def runners_registration_token
|
|
|
|
ensure_runners_registration_token!
|
|
|
|
end
|
2016-05-09 19:21:22 -04:00
|
|
|
|
|
|
|
def health_check_access_token
|
|
|
|
ensure_health_check_access_token!
|
|
|
|
end
|
2015-01-08 03:22:50 -05:00
|
|
|
end
|