debian-mirror-gitlab/app/models/application_setting.rb

205 lines
6.3 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class ApplicationSetting < ActiveRecord::Base
2015-12-23 02:04:40 +05:30
include TokenAuthenticatable
add_authentication_token_field :runners_registration_token
2016-06-02 11:05:42 +05:30
add_authentication_token_field :health_check_access_token
2015-12-23 02:04:40 +05:30
CACHE_KEY = 'application_setting.last'
2016-08-24 12:49:21 +05:30
DOMAIN_LIST_SEPARATOR = %r{\s*[,;]\s* # comma or semicolon, optionally surrounded by whitespace
| # or
\s # any whitespace character
| # or
[\r\n] # any number of newline characters
}x
2015-12-23 02:04:40 +05:30
2015-04-26 12:48:37 +05:30
serialize :restricted_visibility_levels
2015-09-25 12:07:36 +05:30
serialize :import_sources
2016-06-02 11:05:42 +05:30
serialize :disabled_oauth_sign_in_sources, Array
2016-08-24 12:49:21 +05:30
serialize :domain_whitelist, Array
serialize :domain_blacklist, Array
attr_accessor :domain_whitelist_raw, :domain_blacklist_raw
2015-09-11 14:41:01 +05:30
validates :session_expire_delay,
presence: true,
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
2015-04-26 12:48:37 +05:30
validates :home_page_url,
allow_blank: true,
url: true,
if: :home_page_url_column_exist
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
validates :after_sign_out_path,
allow_blank: true,
url: true
2015-09-11 14:41:01 +05:30
2015-10-24 18:46:33 +05:30
validates :admin_notification_email,
2016-04-02 18:10:28 +05:30
email: true,
allow_blank: true
validates :two_factor_grace_period,
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-10-24 18:46:33 +05:30
2016-01-29 22:53:50 +05:30
validates :sentry_dsn,
presence: true,
if: :sentry_enabled
2016-04-02 18:10:28 +05:30
validates :akismet_api_key,
presence: true,
if: :akismet_enabled
2016-09-13 17:45:13 +05:30
validates :koding_url,
presence: true,
if: :koding_enabled
2016-04-02 18:10:28 +05:30
validates :max_attachment_size,
presence: true,
numericality: { only_integer: true, greater_than: 0 }
validates :container_registry_token_expire_delay,
presence: true,
numericality: { only_integer: true, greater_than: 0 }
2016-08-24 12:49:21 +05:30
validates :repository_storage,
presence: true,
inclusion: { in: ->(_object) { Gitlab.config.repositories.storages.keys } }
validates :enabled_git_access_protocol,
inclusion: { in: %w(ssh http), allow_blank: true, allow_nil: true }
validates :domain_blacklist,
presence: { message: 'Domain blacklist cannot be empty if Blacklist is enabled.' },
if: :domain_blacklist_enabled?
2015-04-26 12:48:37 +05:30
validates_each :restricted_visibility_levels do |record, attr, value|
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
end
end
end
2015-09-25 12:07:36 +05:30
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-06-02 11:05:42 +05:30
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)
record.errors.add(attr, "'#{source}' is not an OAuth sign-in source")
end
end
end
end
2015-12-23 02:04:40 +05:30
before_save :ensure_runners_registration_token
2016-06-02 11:05:42 +05:30
before_save :ensure_health_check_access_token
2015-12-23 02:04:40 +05:30
2015-11-26 14:37:03 +05:30
after_commit do
2015-12-23 02:04:40 +05:30
Rails.cache.write(CACHE_KEY, self)
2015-11-26 14:37:03 +05:30
end
2015-04-26 12:48:37 +05:30
def self.current
2015-12-23 02:04:40 +05:30
Rails.cache.fetch(CACHE_KEY) do
2015-11-26 14:37:03 +05:30
ApplicationSetting.last
end
2015-04-26 12:48:37 +05:30
end
2015-12-23 02:04:40 +05:30
def self.expire
Rails.cache.delete(CACHE_KEY)
end
def self.cached
Rails.cache.fetch(CACHE_KEY)
end
2015-04-26 12:48:37 +05:30
def self.create_from_defaults
create(
default_projects_limit: Settings.gitlab['default_projects_limit'],
default_branch_protection: Settings.gitlab['default_branch_protection'],
signup_enabled: Settings.gitlab['signup_enabled'],
signin_enabled: Settings.gitlab['signin_enabled'],
gravatar_enabled: Settings.gravatar['enabled'],
sign_in_text: nil,
after_sign_up_text: nil,
help_page_text: nil,
shared_runners_text: nil,
2015-04-26 12:48:37 +05:30
restricted_visibility_levels: Settings.gitlab['restricted_visibility_levels'],
2015-09-11 14:41:01 +05:30
max_attachment_size: Settings.gitlab['max_attachment_size'],
session_expire_delay: Settings.gitlab['session_expire_delay'],
default_project_visibility: Settings.gitlab.default_projects_features['visibility_level'],
default_snippet_visibility: Settings.gitlab.default_projects_features['visibility_level'],
2016-08-24 12:49:21 +05:30
domain_whitelist: Settings.gitlab['domain_whitelist'],
2016-09-29 09:46:39 +05:30
import_sources: Gitlab::ImportSources.values,
2015-11-26 14:37:03 +05:30
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
max_artifacts_size: Settings.artifacts['max_size'],
require_two_factor_authentication: false,
2016-04-02 18:10:28 +05:30
two_factor_grace_period: 48,
recaptcha_enabled: false,
2016-06-02 11:05:42 +05:30
akismet_enabled: false,
2016-09-13 17:45:13 +05:30
koding_enabled: false,
koding_url: nil,
2016-06-02 11:05:42 +05:30
repository_checks_enabled: true,
disabled_oauth_sign_in_sources: [],
send_user_confirmation_email: false,
container_registry_token_expire_delay: 5,
2016-08-24 12:49:21 +05:30
repository_storage: 'default',
user_default_external: false,
2015-04-26 12:48:37 +05:30
)
end
def home_page_url_column_exist
ActiveRecord::Base.connection.column_exists?(:application_settings, :home_page_url)
end
2015-09-11 14:41:01 +05:30
2016-08-24 12:49:21 +05:30
def domain_whitelist_raw
self.domain_whitelist.join("\n") unless self.domain_whitelist.nil?
end
def domain_blacklist_raw
self.domain_blacklist.join("\n") unless self.domain_blacklist.nil?
end
def domain_whitelist_raw=(values)
self.domain_whitelist = []
self.domain_whitelist = values.split(DOMAIN_LIST_SEPARATOR)
self.domain_whitelist.reject! { |d| d.empty? }
self.domain_whitelist
end
def domain_blacklist_raw=(values)
self.domain_blacklist = []
self.domain_blacklist = values.split(DOMAIN_LIST_SEPARATOR)
self.domain_blacklist.reject! { |d| d.empty? }
self.domain_blacklist
2015-09-11 14:41:01 +05:30
end
2016-08-24 12:49:21 +05:30
def domain_blacklist_file=(file)
self.domain_blacklist_raw = file.read
2015-09-11 14:41:01 +05:30
end
def runners_registration_token
ensure_runners_registration_token!
end
2016-06-02 11:05:42 +05:30
def health_check_access_token
ensure_health_check_access_token!
end
2015-04-26 12:48:37 +05:30
end