2015-01-08 03:22:50 -05:00
|
|
|
class ApplicationSetting < ActiveRecord::Base
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
2015-12-10 04:48:37 -05:00
|
|
|
include TokenAuthenticatable
|
2016-10-06 17:17:11 -04:00
|
|
|
|
2015-12-10 04:48:37 -05:00
|
|
|
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'
|
2016-07-15 14:20:45 -04:00
|
|
|
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-03 03:09:10 -05:00
|
|
|
|
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
|
2016-07-15 19:30:38 -04:00
|
|
|
serialize :domain_whitelist, Array
|
2016-07-14 14:19:40 -04:00
|
|
|
serialize :domain_blacklist, Array
|
2016-11-03 10:12:20 -04:00
|
|
|
serialize :repository_storages
|
2016-11-10 12:36:52 -05:00
|
|
|
serialize :sidekiq_throttling_queues, Array
|
2016-07-14 14:19:40 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :sign_in_text
|
|
|
|
cache_markdown_field :help_page_text
|
|
|
|
cache_markdown_field :shared_runners_text, pipeline: :plain_markdown
|
|
|
|
cache_markdown_field :after_sign_up_text
|
|
|
|
|
2016-07-15 19:30:38 -04:00
|
|
|
attr_accessor :domain_whitelist_raw, :domain_blacklist_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-07-25 23:59:39 -04:00
|
|
|
validates :koding_url,
|
|
|
|
presence: true,
|
|
|
|
if: :koding_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 }
|
|
|
|
|
2016-11-03 10:12:20 -04:00
|
|
|
validates :repository_storages, presence: true
|
|
|
|
validate :check_repository_storages
|
2016-06-29 23:35:00 -04:00
|
|
|
|
2016-06-29 15:30:27 -04:00
|
|
|
validates :enabled_git_access_protocol,
|
2016-06-20 21:40:56 -04:00
|
|
|
inclusion: { in: %w(ssh http), allow_blank: true, allow_nil: true }
|
2016-06-15 18:30:55 -04:00
|
|
|
|
2016-07-14 14:19:40 -04:00
|
|
|
validates :domain_blacklist,
|
2016-07-18 18:49:33 -04:00
|
|
|
presence: { message: 'Domain blacklist cannot be empty if Blacklist is enabled.' },
|
2016-07-14 14:19:40 -04:00
|
|
|
if: :domain_blacklist_enabled?
|
|
|
|
|
2016-11-04 18:54:24 -04:00
|
|
|
validates :sidekiq_throttling_factor,
|
|
|
|
numericality: { greater_than: 0, less_than: 1 },
|
|
|
|
presence: { message: 'Throttling factor cannot be empty if Sidekiq Throttling is enabled.' },
|
|
|
|
if: :sidekiq_throttling_enabled?
|
|
|
|
|
|
|
|
validates :sidekiq_throttling_queues,
|
|
|
|
presence: { message: 'Queues to throttle cannot be empty if Sidekiq Throttling is enabled.' },
|
|
|
|
if: :sidekiq_throttling_enabled?
|
|
|
|
|
2016-10-27 08:59:52 -04:00
|
|
|
validates :housekeeping_incremental_repack_period,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
|
|
|
validates :housekeeping_full_repack_period,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: :housekeeping_incremental_repack_period }
|
|
|
|
|
|
|
|
validates :housekeeping_gc_period,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: :housekeeping_full_repack_period }
|
|
|
|
|
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'],
|
2016-07-15 19:30:38 -04:00
|
|
|
domain_whitelist: Settings.gitlab['domain_whitelist'],
|
2016-09-09 11:54:20 -04:00
|
|
|
import_sources: Gitlab::ImportSources.values,
|
2015-11-03 08:45:41 -05:00
|
|
|
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,
|
2016-07-25 23:59:39 -04:00
|
|
|
koding_enabled: false,
|
|
|
|
koding_url: nil,
|
2016-04-12 10:21:23 -04:00
|
|
|
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,
|
2016-11-03 10:12:20 -04:00
|
|
|
repository_storages: ['default'],
|
2016-07-06 13:46:41 -04:00
|
|
|
user_default_external: false,
|
2016-11-04 14:53:12 -04:00
|
|
|
sidekiq_throttling_enabled: false,
|
2016-10-27 08:59:52 -04:00
|
|
|
housekeeping_enabled: true,
|
|
|
|
housekeeping_bitmaps_enabled: true,
|
|
|
|
housekeeping_incremental_repack_period: 10,
|
|
|
|
housekeeping_full_repack_period: 50,
|
|
|
|
housekeeping_gc_period: 200,
|
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
|
|
|
|
2016-11-12 19:00:21 -05:00
|
|
|
def sidekiq_throttling_column_exists?
|
|
|
|
ActiveRecord::Base.connection.column_exists?(:application_settings, :sidekiq_throttling_enabled)
|
|
|
|
end
|
|
|
|
|
2016-07-15 19:30:38 -04:00
|
|
|
def domain_whitelist_raw
|
|
|
|
self.domain_whitelist.join("\n") unless self.domain_whitelist.nil?
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
|
|
|
|
2016-07-14 14:19:40 -04:00
|
|
|
def domain_blacklist_raw
|
|
|
|
self.domain_blacklist.join("\n") unless self.domain_blacklist.nil?
|
|
|
|
end
|
|
|
|
|
2016-07-15 19:30:38 -04:00
|
|
|
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
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
2015-12-23 04:48:10 -05:00
|
|
|
|
2016-07-14 14:19:40 -04:00
|
|
|
def domain_blacklist_raw=(values)
|
|
|
|
self.domain_blacklist = []
|
2016-07-15 14:20:45 -04:00
|
|
|
self.domain_blacklist = values.split(DOMAIN_LIST_SEPARATOR)
|
2016-07-14 14:19:40 -04:00
|
|
|
self.domain_blacklist.reject! { |d| d.empty? }
|
2016-07-15 14:20:45 -04:00
|
|
|
self.domain_blacklist
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def domain_blacklist_file=(file)
|
|
|
|
self.domain_blacklist_raw = file.read
|
|
|
|
end
|
|
|
|
|
2016-11-03 10:12:20 -04:00
|
|
|
def repository_storages
|
2016-11-04 08:56:53 -04:00
|
|
|
Array(read_attribute(:repository_storages))
|
2016-11-03 10:12:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# repository_storage is still required in the API. Remove in 9.0
|
|
|
|
def repository_storage
|
|
|
|
repository_storages.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_storage=(value)
|
|
|
|
self.repository_storages = [value]
|
|
|
|
end
|
|
|
|
|
|
|
|
# Choose one of the available repository storage options. Currently all have
|
|
|
|
# equal weighting.
|
|
|
|
def pick_repository_storage
|
|
|
|
repository_storages.sample
|
|
|
|
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
|
2016-11-03 10:12:20 -04:00
|
|
|
|
2016-11-12 19:00:21 -05:00
|
|
|
def sidekiq_throttling_enabled?
|
|
|
|
return false unless sidekiq_throttling_column_exists?
|
|
|
|
|
|
|
|
sidekiq_throttling_enabled
|
|
|
|
end
|
|
|
|
|
2016-11-03 10:12:20 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def check_repository_storages
|
|
|
|
invalid = repository_storages - Gitlab.config.repositories.storages.keys
|
|
|
|
errors.add(:repository_storages, "can't include: #{invalid.join(", ")}") unless
|
|
|
|
invalid.empty?
|
|
|
|
end
|
2015-01-08 03:22:50 -05:00
|
|
|
end
|