2015-04-26 12:48:37 +05:30
|
|
|
class ApplicationSetting < ActiveRecord::Base
|
2016-11-03 12:29:30 +05:30
|
|
|
include CacheMarkdownField
|
2015-12-23 02:04:40 +05:30
|
|
|
include TokenAuthenticatable
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
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
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
CACHE_KEY = 'application_setting.last'.freeze
|
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
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
# Setting a key restriction to `-1` means that all keys of this type are
|
|
|
|
# forbidden.
|
|
|
|
FORBIDDEN_KEY_VALUE = KeyRestrictionValidator::FORBIDDEN
|
|
|
|
SUPPORTED_KEY_TYPES = %i[rsa dsa ecdsa ed25519].freeze
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
serialize :restricted_visibility_levels # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :import_sources # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :disabled_oauth_sign_in_sources, Array # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :domain_whitelist, Array # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :domain_blacklist, Array # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :repository_storages # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :sidekiq_throttling_queues, Array # rubocop:disable Cop/ActiveRecordSerialize
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
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-08-24 12:49:21 +05:30
|
|
|
attr_accessor :domain_whitelist_raw, :domain_blacklist_raw
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
default_value_for :id, 1
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :uuid, presence: true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
validates :session_expire_delay,
|
2016-01-14 18:37:52 +05:30
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
validates :home_page_url,
|
2016-01-14 18:37:52 +05:30
|
|
|
allow_blank: true,
|
|
|
|
url: true,
|
2017-09-10 17:25:29 +05:30
|
|
|
if: :home_page_url_column_exists?
|
|
|
|
|
|
|
|
validates :help_page_support_url,
|
|
|
|
allow_blank: true,
|
|
|
|
url: true,
|
|
|
|
if: :help_page_support_url_column_exists?
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
validates :after_sign_out_path,
|
2016-01-14 18:37:52 +05:30
|
|
|
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
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :clientside_sentry_dsn,
|
|
|
|
presence: true,
|
|
|
|
if: :clientside_sentry_enabled
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
validates :akismet_api_key,
|
|
|
|
presence: true,
|
|
|
|
if: :akismet_enabled
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :unique_ips_limit_per_user,
|
|
|
|
numericality: { greater_than_or_equal_to: 1 },
|
|
|
|
presence: true,
|
|
|
|
if: :unique_ips_limit_enabled
|
|
|
|
|
|
|
|
validates :unique_ips_limit_time_window,
|
|
|
|
numericality: { greater_than_or_equal_to: 0 },
|
|
|
|
presence: true,
|
|
|
|
if: :unique_ips_limit_enabled
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
validates :koding_url,
|
|
|
|
presence: true,
|
|
|
|
if: :koding_enabled
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :plantuml_url,
|
|
|
|
presence: true,
|
|
|
|
if: :plantuml_enabled
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
validates :max_attachment_size,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :max_artifacts_size,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
|
|
|
validates :default_artifacts_expire_in, presence: true, duration: true
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
validates :container_registry_token_expire_delay,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
2016-11-24 13:41:30 +05:30
|
|
|
validates :repository_storages, presence: true
|
|
|
|
validate :check_repository_storages
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
validates :auto_devops_domain,
|
|
|
|
allow_blank: true,
|
|
|
|
hostname: { allow_numeric_hostname: true, require_valid_tld: true },
|
|
|
|
if: :auto_devops_enabled?
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
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?
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
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?
|
|
|
|
|
|
|
|
validates :housekeeping_incremental_repack_period,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than: 0 }
|
|
|
|
|
|
|
|
validates :housekeeping_full_repack_period,
|
|
|
|
presence: true,
|
2018-03-17 18:26:18 +05:30
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: :housekeeping_incremental_repack_period }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
validates :housekeeping_gc_period,
|
|
|
|
presence: true,
|
2018-03-17 18:26:18 +05:30
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: :housekeeping_full_repack_period }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
validates :terminal_max_session_time,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :polling_interval_multiplier,
|
|
|
|
presence: true,
|
|
|
|
numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
validates :circuitbreaker_failure_count_threshold,
|
|
|
|
:circuitbreaker_failure_reset_time,
|
|
|
|
:circuitbreaker_storage_timeout,
|
|
|
|
:circuitbreaker_check_interval,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :circuitbreaker_access_retries,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 1 }
|
|
|
|
|
|
|
|
validates :gitaly_timeout_default,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :gitaly_timeout_medium,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
validates :gitaly_timeout_medium,
|
|
|
|
numericality: { less_than_or_equal_to: :gitaly_timeout_default },
|
|
|
|
if: :gitaly_timeout_default
|
|
|
|
validates :gitaly_timeout_medium,
|
|
|
|
numericality: { greater_than_or_equal_to: :gitaly_timeout_fast },
|
|
|
|
if: :gitaly_timeout_fast
|
|
|
|
|
|
|
|
validates :gitaly_timeout_fast,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
validates :gitaly_timeout_fast,
|
|
|
|
numericality: { less_than_or_equal_to: :gitaly_timeout_default },
|
|
|
|
if: :gitaly_timeout_default
|
|
|
|
|
|
|
|
SUPPORTED_KEY_TYPES.each do |type|
|
|
|
|
validates :"#{type}_key_restriction", presence: true, key_restriction: { type: type }
|
|
|
|
end
|
|
|
|
|
|
|
|
validates :allowed_key_types, presence: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
validates_each :restricted_visibility_levels do |record, attr, value|
|
2017-08-17 22:00:37 +05:30
|
|
|
value&.each do |level|
|
2017-09-10 17:25:29 +05:30
|
|
|
unless Gitlab::VisibilityLevel.options.value?(level)
|
2017-08-17 22:00:37 +05:30
|
|
|
record.errors.add(attr, "'#{level}' is not a valid visibility level")
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
validates_each :import_sources do |record, attr, value|
|
2017-08-17 22:00:37 +05:30
|
|
|
value&.each do |source|
|
2017-09-10 17:25:29 +05:30
|
|
|
unless Gitlab::ImportSources.options.value?(source)
|
2017-08-17 22:00:37 +05:30
|
|
|
record.errors.add(attr, "'#{source}' is not a import source")
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
validates_each :disabled_oauth_sign_in_sources do |record, attr, value|
|
2017-08-17 22:00:37 +05:30
|
|
|
value&.each do |source|
|
|
|
|
unless Devise.omniauth_providers.include?(source.to_sym)
|
|
|
|
record.errors.add(attr, "'#{source}' is not an OAuth sign-in source")
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
before_validation :ensure_uuid!
|
2018-03-17 18:26:18 +05:30
|
|
|
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
ensure_cache_setup
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
Rails.cache.fetch(CACHE_KEY) do
|
2018-03-17 18:26:18 +05:30
|
|
|
ApplicationSetting.last.tap do |settings|
|
|
|
|
# do not cache nils
|
|
|
|
raise 'missing settings' unless settings
|
|
|
|
end
|
2015-11-26 14:37:03 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
rescue
|
|
|
|
# Fall back to an uncached value if there are any problems (e.g. redis down)
|
|
|
|
ApplicationSetting.last
|
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)
|
2017-08-17 22:00:37 +05:30
|
|
|
rescue
|
|
|
|
# Gracefully handle when Redis is not available. For example,
|
|
|
|
# omnibus may fail here during gitlab:assets:compile.
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def self.cached
|
2017-09-10 17:25:29 +05:30
|
|
|
value = Rails.cache.read(CACHE_KEY)
|
|
|
|
ensure_cache_setup if value.present?
|
|
|
|
value
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.ensure_cache_setup
|
|
|
|
# This is a workaround for a Rails bug that causes attribute methods not
|
|
|
|
# to be loaded when read from cache: https://github.com/rails/rails/issues/27348
|
|
|
|
ApplicationSetting.define_attribute_methods
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def self.defaults
|
2017-08-17 22:00:37 +05:30
|
|
|
{
|
2016-06-16 23:09:34 +05:30
|
|
|
after_sign_up_text: nil,
|
2017-08-17 22:00:37 +05:30
|
|
|
akismet_enabled: false,
|
2018-03-17 18:26:18 +05:30
|
|
|
authorized_keys_enabled: true, # TODO default to false if the instance is configured to use AuthorizedKeysCommand
|
2017-08-17 22:00:37 +05:30
|
|
|
container_registry_token_expire_delay: 5,
|
|
|
|
default_artifacts_expire_in: '30 days',
|
|
|
|
default_branch_protection: Settings.gitlab['default_branch_protection'],
|
2015-09-11 14:41:01 +05:30
|
|
|
default_project_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
2017-08-17 22:00:37 +05:30
|
|
|
default_projects_limit: Settings.gitlab['default_projects_limit'],
|
2015-09-11 14:41:01 +05:30
|
|
|
default_snippet_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
2017-08-17 22:00:37 +05:30
|
|
|
default_group_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
|
|
|
disabled_oauth_sign_in_sources: [],
|
2016-08-24 12:49:21 +05:30
|
|
|
domain_whitelist: Settings.gitlab['domain_whitelist'],
|
2018-03-17 18:26:18 +05:30
|
|
|
dsa_key_restriction: 0,
|
|
|
|
ecdsa_key_restriction: 0,
|
|
|
|
ed25519_key_restriction: 0,
|
2017-08-17 22:00:37 +05:30
|
|
|
gravatar_enabled: Settings.gravatar['enabled'],
|
|
|
|
help_page_text: nil,
|
2017-09-10 17:25:29 +05:30
|
|
|
help_page_hide_commercial_content: false,
|
2017-08-17 22:00:37 +05:30
|
|
|
unique_ips_limit_per_user: 10,
|
|
|
|
unique_ips_limit_time_window: 3600,
|
|
|
|
unique_ips_limit_enabled: false,
|
|
|
|
housekeeping_bitmaps_enabled: true,
|
|
|
|
housekeeping_enabled: true,
|
|
|
|
housekeeping_full_repack_period: 50,
|
|
|
|
housekeeping_gc_period: 200,
|
|
|
|
housekeeping_incremental_repack_period: 10,
|
2018-03-17 18:26:18 +05:30
|
|
|
import_sources: Settings.gitlab['import_sources'],
|
2016-09-13 17:45:13 +05:30
|
|
|
koding_enabled: false,
|
|
|
|
koding_url: nil,
|
2017-08-17 22:00:37 +05:30
|
|
|
max_artifacts_size: Settings.artifacts['max_size'],
|
|
|
|
max_attachment_size: Settings.gitlab['max_attachment_size'],
|
2018-03-17 18:26:18 +05:30
|
|
|
password_authentication_enabled_for_web: Settings.gitlab['signin_enabled'],
|
|
|
|
password_authentication_enabled_for_git: true,
|
2017-09-10 17:25:29 +05:30
|
|
|
performance_bar_allowed_group_id: nil,
|
2018-03-17 18:26:18 +05:30
|
|
|
rsa_key_restriction: 0,
|
2017-08-17 22:00:37 +05:30
|
|
|
plantuml_enabled: false,
|
|
|
|
plantuml_url: nil,
|
2018-03-17 18:26:18 +05:30
|
|
|
project_export_enabled: true,
|
2017-08-17 22:00:37 +05:30
|
|
|
recaptcha_enabled: false,
|
2016-06-02 11:05:42 +05:30
|
|
|
repository_checks_enabled: true,
|
2016-11-24 13:41:30 +05:30
|
|
|
repository_storages: ['default'],
|
2017-08-17 22:00:37 +05:30
|
|
|
require_two_factor_authentication: false,
|
|
|
|
restricted_visibility_levels: Settings.gitlab['restricted_visibility_levels'],
|
|
|
|
session_expire_delay: Settings.gitlab['session_expire_delay'],
|
|
|
|
send_user_confirmation_email: false,
|
|
|
|
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
|
|
|
|
shared_runners_text: nil,
|
|
|
|
sidekiq_throttling_enabled: false,
|
|
|
|
sign_in_text: nil,
|
|
|
|
signup_enabled: Settings.gitlab['signup_enabled'],
|
|
|
|
terminal_max_session_time: 0,
|
2018-03-17 18:26:18 +05:30
|
|
|
throttle_unauthenticated_enabled: false,
|
|
|
|
throttle_unauthenticated_requests_per_period: 3600,
|
|
|
|
throttle_unauthenticated_period_in_seconds: 3600,
|
|
|
|
throttle_authenticated_web_enabled: false,
|
|
|
|
throttle_authenticated_web_requests_per_period: 7200,
|
|
|
|
throttle_authenticated_web_period_in_seconds: 3600,
|
|
|
|
throttle_authenticated_api_enabled: false,
|
|
|
|
throttle_authenticated_api_requests_per_period: 7200,
|
|
|
|
throttle_authenticated_api_period_in_seconds: 3600,
|
2017-08-17 22:00:37 +05:30
|
|
|
two_factor_grace_period: 48,
|
2016-08-24 12:49:21 +05:30
|
|
|
user_default_external: false,
|
2017-08-17 22:00:37 +05:30
|
|
|
polling_interval_multiplier: 1,
|
2018-03-17 18:26:18 +05:30
|
|
|
usage_ping_enabled: Settings.gitlab['usage_ping_enabled'],
|
|
|
|
gitaly_timeout_fast: 10,
|
|
|
|
gitaly_timeout_medium: 30,
|
|
|
|
gitaly_timeout_default: 55
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.create_from_defaults
|
|
|
|
create(defaults)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.human_attribute_name(attr, _options = {})
|
|
|
|
if attr == :default_artifacts_expire_in
|
|
|
|
'Default artifacts expiration'
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def home_page_url_column_exists?
|
2015-04-26 12:48:37 +05:30
|
|
|
ActiveRecord::Base.connection.column_exists?(:application_settings, :home_page_url)
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def help_page_support_url_column_exists?
|
|
|
|
ActiveRecord::Base.connection.column_exists?(:application_settings, :help_page_support_url)
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def sidekiq_throttling_column_exists?
|
|
|
|
ActiveRecord::Base.connection.column_exists?(:application_settings, :sidekiq_throttling_enabled)
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def domain_whitelist_raw
|
2017-08-17 22:00:37 +05:30
|
|
|
self.domain_whitelist&.join("\n")
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def domain_blacklist_raw
|
2017-08-17 22:00:37 +05:30
|
|
|
self.domain_blacklist&.join("\n")
|
2016-08-24 12:49:21 +05:30
|
|
|
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
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2016-11-24 13:41:30 +05:30
|
|
|
def repository_storages
|
|
|
|
Array(read_attribute(:repository_storages))
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
# DEPRECATED
|
2016-11-24 13:41:30 +05:30
|
|
|
# repository_storage is still required in the API. Remove in 9.0
|
2017-09-10 17:25:29 +05:30
|
|
|
# Still used in API v3
|
2016-11-24 13:41:30 +05:30
|
|
|
def repository_storage
|
|
|
|
repository_storages.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_storage=(value)
|
|
|
|
self.repository_storages = [value]
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def default_project_visibility=(level)
|
|
|
|
super(Gitlab::VisibilityLevel.level_value(level))
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_snippet_visibility=(level)
|
|
|
|
super(Gitlab::VisibilityLevel.level_value(level))
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_group_visibility=(level)
|
|
|
|
super(Gitlab::VisibilityLevel.level_value(level))
|
|
|
|
end
|
|
|
|
|
|
|
|
def restricted_visibility_levels=(levels)
|
|
|
|
super(levels.map { |level| Gitlab::VisibilityLevel.level_value(level) })
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def performance_bar_allowed_group_id=(group_full_path)
|
|
|
|
group_full_path = nil if group_full_path.blank?
|
|
|
|
|
|
|
|
if group_full_path.nil?
|
|
|
|
if group_full_path != performance_bar_allowed_group_id
|
|
|
|
super(group_full_path)
|
|
|
|
Gitlab::PerformanceBar.expire_allowed_user_ids_cache
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
group = Group.find_by_full_path(group_full_path)
|
|
|
|
|
|
|
|
if group
|
|
|
|
if group.id != performance_bar_allowed_group_id
|
|
|
|
super(group.id)
|
|
|
|
Gitlab::PerformanceBar.expire_allowed_user_ids_cache
|
|
|
|
end
|
|
|
|
else
|
|
|
|
super(nil)
|
|
|
|
Gitlab::PerformanceBar.expire_allowed_user_ids_cache
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def performance_bar_allowed_group
|
|
|
|
Group.find_by_id(performance_bar_allowed_group_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return true if the Performance Bar is enabled for a given group
|
|
|
|
def performance_bar_enabled
|
|
|
|
performance_bar_allowed_group_id.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
# - If `enable` is true, we early return since the actual attribute that holds
|
|
|
|
# the enabling/disabling is `performance_bar_allowed_group_id`
|
|
|
|
# - If `enable` is false, we set `performance_bar_allowed_group_id` to `nil`
|
|
|
|
def performance_bar_enabled=(enable)
|
2018-03-17 18:26:18 +05:30
|
|
|
return if Gitlab::Utils.to_boolean(enable)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
self.performance_bar_allowed_group_id = nil
|
|
|
|
end
|
|
|
|
|
2016-11-24 13:41:30 +05:30
|
|
|
# Choose one of the available repository storage options. Currently all have
|
|
|
|
# equal weighting.
|
|
|
|
def pick_repository_storage
|
|
|
|
repository_storages.sample
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
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
|
2016-11-24 13:41:30 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def sidekiq_throttling_enabled?
|
|
|
|
return false unless sidekiq_throttling_column_exists?
|
|
|
|
|
|
|
|
sidekiq_throttling_enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def usage_ping_can_be_configured?
|
|
|
|
Settings.gitlab.usage_ping_enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def usage_ping_enabled
|
|
|
|
usage_ping_can_be_configured? && super
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def allowed_key_types
|
|
|
|
SUPPORTED_KEY_TYPES.select do |type|
|
|
|
|
key_restriction_for(type) != FORBIDDEN_KEY_VALUE
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def key_restriction_for(type)
|
|
|
|
attr_name = "#{type}_key_restriction"
|
|
|
|
|
|
|
|
has_attribute?(attr_name) ? public_send(attr_name) : FORBIDDEN_KEY_VALUE # rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_signup?
|
|
|
|
signup_enabled? && password_authentication_enabled_for_web?
|
|
|
|
end
|
|
|
|
|
|
|
|
def password_authentication_enabled?
|
|
|
|
password_authentication_enabled_for_web? || password_authentication_enabled_for_git?
|
|
|
|
end
|
|
|
|
|
2016-11-24 13:41:30 +05:30
|
|
|
private
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def ensure_uuid!
|
|
|
|
return if uuid?
|
|
|
|
|
|
|
|
self.uuid = SecureRandom.uuid
|
|
|
|
end
|
|
|
|
|
2016-11-24 13:41:30 +05:30
|
|
|
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-04-26 12:48:37 +05:30
|
|
|
end
|