2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class ApplicationSetting < ApplicationRecord
|
2018-11-08 19:23:39 +05:30
|
|
|
include CacheableAttributes
|
2016-11-03 12:29:30 +05:30
|
|
|
include CacheMarkdownField
|
2015-12-23 02:04:40 +05:30
|
|
|
include TokenAuthenticatable
|
2018-12-13 13:39:08 +05:30
|
|
|
include ChronicDurationAttribute
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
INSTANCE_REVIEW_MIN_USERS = 50
|
2020-03-07 23:17:34 +05:30
|
|
|
GRAFANA_URL_ERROR_MESSAGE = 'Please check your Grafana URL setting in ' \
|
|
|
|
'Admin Area > Settings > Metrics and profiling > Metrics - Grafana'
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
KROKI_URL_ERROR_MESSAGE = 'Please check your Kroki URL setting in ' \
|
|
|
|
'Admin Area > Settings > General > Kroki'
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
add_authentication_token_field :runners_registration_token, encrypted: -> { Feature.enabled?(:application_settings_tokens_optional_encryption) ? :optional : :required }
|
2016-06-02 11:05:42 +05:30
|
|
|
add_authentication_token_field :health_check_access_token
|
2019-12-04 20:38:33 +05:30
|
|
|
add_authentication_token_field :static_objects_external_storage_auth_token
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
belongs_to :self_monitoring_project, class_name: "Project", foreign_key: 'instance_administration_project_id'
|
2020-04-22 19:07:51 +05:30
|
|
|
belongs_to :push_rule
|
2020-03-13 15:44:24 +05:30
|
|
|
alias_attribute :self_monitoring_project_id, :instance_administration_project_id
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
belongs_to :instance_group, class_name: "Group", foreign_key: 'instance_administrators_group_id'
|
|
|
|
alias_attribute :instance_group_id, :instance_administrators_group_id
|
|
|
|
alias_attribute :instance_administrators_group, :instance_group
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
def self.repository_storages_weighted_attributes
|
|
|
|
@repository_storages_weighted_atributes ||= Gitlab.config.repositories.storages.keys.map { |k| "repository_storages_weighted_#{k}".to_sym }.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
store_accessor :repository_storages_weighted, *Gitlab.config.repositories.storages.keys, prefix: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
# Include here so it can override methods from
|
|
|
|
# `add_authentication_token_field`
|
|
|
|
# We don't prepend for now because otherwise we'll need to
|
|
|
|
# fix a lot of tests using allow_any_instance_of
|
|
|
|
include ApplicationSettingImplementation
|
2018-03-17 18:26:18 +05:30
|
|
|
|
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
|
2021-01-29 00:20:46 +05:30
|
|
|
serialize :domain_allowlist, Array # rubocop:disable Cop/ActiveRecordSerialize
|
|
|
|
serialize :domain_denylist, Array # rubocop:disable Cop/ActiveRecordSerialize
|
2017-09-10 17:25:29 +05:30
|
|
|
serialize :repository_storages # rubocop:disable Cop/ActiveRecordSerialize
|
2019-09-04 21:01:54 +05:30
|
|
|
serialize :asset_proxy_whitelist, 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
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
default_value_for :id, 1
|
2020-06-23 00:09:42 +05:30
|
|
|
default_value_for :repository_storages_weighted, {}
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
chronic_duration_attr_writer :archive_builds_in_human_readable, :archive_builds_in_seconds
|
|
|
|
|
2020-03-07 23:17:34 +05:30
|
|
|
validates :grafana_url,
|
|
|
|
system_hook_url: {
|
|
|
|
blocked_message: "is blocked: %{exception_message}. " + GRAFANA_URL_ERROR_MESSAGE
|
|
|
|
},
|
|
|
|
if: :grafana_url_absolute?
|
|
|
|
|
|
|
|
validate :validate_grafana_url
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :uuid, presence: true
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
validates :outbound_local_requests_whitelist,
|
|
|
|
length: { maximum: 1_000, message: N_('is too long (maximum is 1000 entries)') },
|
|
|
|
allow_nil: false,
|
|
|
|
qualified_domain_array: 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
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
validates :minimum_password_length,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true,
|
|
|
|
greater_than_or_equal_to: DEFAULT_MINIMUM_PASSWORD_LENGTH,
|
|
|
|
less_than_or_equal_to: Devise.password_length.max }
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
validates :home_page_url,
|
2016-01-14 18:37:52 +05:30
|
|
|
allow_blank: true,
|
2019-07-31 22:56:46 +05:30
|
|
|
addressable_url: true,
|
2017-09-10 17:25:29 +05:30
|
|
|
if: :home_page_url_column_exists?
|
|
|
|
|
|
|
|
validates :help_page_support_url,
|
|
|
|
allow_blank: true,
|
2019-07-31 22:56:46 +05:30
|
|
|
addressable_url: true,
|
2017-09-10 17:25:29 +05:30
|
|
|
if: :help_page_support_url_column_exists?
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
validates :help_page_documentation_base_url,
|
|
|
|
length: { maximum: 255, message: _("is too long (maximum is %{count} characters)") },
|
|
|
|
allow_blank: true,
|
|
|
|
addressable_url: true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
validates :after_sign_out_path,
|
2016-01-14 18:37:52 +05:30
|
|
|
allow_blank: true,
|
2019-07-31 22:56:46 +05:30
|
|
|
addressable_url: true
|
2019-12-21 20:55:43 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
validates :abuse_notification_email,
|
2019-07-07 11:18:12 +05:30
|
|
|
devise_email: true,
|
2016-04-02 18:10:28 +05:30
|
|
|
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,
|
2019-09-04 21:01:54 +05:30
|
|
|
if: :recaptcha_or_login_protection_enabled
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
validates :recaptcha_private_key,
|
|
|
|
presence: true,
|
2019-09-04 21:01:54 +05:30
|
|
|
if: :recaptcha_or_login_protection_enabled
|
2015-10-24 18:46:33 +05:30
|
|
|
|
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
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
validates :kroki_url,
|
|
|
|
presence: { if: :kroki_enabled }
|
|
|
|
|
|
|
|
validate :validate_kroki_url, if: :kroki_enabled
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :plantuml_url,
|
|
|
|
presence: true,
|
|
|
|
if: :plantuml_enabled
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
validates :sourcegraph_url,
|
|
|
|
presence: true,
|
|
|
|
if: :sourcegraph_enabled
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
validates :gitpod_url,
|
|
|
|
presence: true,
|
|
|
|
addressable_url: { enforce_sanitization: true },
|
|
|
|
if: :gitpod_enabled
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
validates :snowplow_collector_hostname,
|
|
|
|
presence: true,
|
|
|
|
hostname: true,
|
|
|
|
if: :snowplow_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 }
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
validates :max_import_size,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
validates :max_pages_size,
|
|
|
|
presence: true,
|
2020-04-22 19:07:51 +05:30
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0,
|
2020-03-13 15:44:24 +05:30
|
|
|
less_than: ::Gitlab::Pages::MAX_SIZE / 1.megabyte }
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :default_artifacts_expire_in, presence: true, duration: true
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
validates :container_expiration_policies_enable_historic_entries,
|
2020-05-24 23:13:21 +05:30
|
|
|
inclusion: { in: [true, false], message: 'must be a boolean value' }
|
2020-04-22 19:07:51 +05:30
|
|
|
|
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
|
2020-06-23 00:09:42 +05:30
|
|
|
validate :check_repository_storages_weighted
|
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,
|
2020-03-13 15:44:24 +05:30
|
|
|
inclusion: { in: %w(ssh http), allow_blank: true }
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
validates :domain_denylist,
|
|
|
|
presence: { message: 'Domain denylist cannot be empty if denylist is enabled.' },
|
|
|
|
if: :domain_denylist_enabled?
|
2016-08-24 12:49:21 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
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 :gitaly_timeout_default,
|
|
|
|
presence: true,
|
2020-04-08 14:13:33 +05:30
|
|
|
if: :gitaly_timeout_default_changed?,
|
2020-03-13 15:44:24 +05:30
|
|
|
numericality: {
|
|
|
|
only_integer: true,
|
|
|
|
greater_than_or_equal_to: 0,
|
|
|
|
less_than_or_equal_to: Settings.gitlab.max_request_duration_seconds
|
|
|
|
}
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
validates :gitaly_timeout_medium,
|
|
|
|
presence: true,
|
2020-04-08 14:13:33 +05:30
|
|
|
if: :gitaly_timeout_medium_changed?,
|
2018-03-17 18:26:18 +05:30
|
|
|
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,
|
2020-04-08 14:13:33 +05:30
|
|
|
if: :gitaly_timeout_fast_changed?,
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
validates :diff_max_patch_bytes,
|
|
|
|
presence: true,
|
|
|
|
numericality: { only_integer: true,
|
|
|
|
greater_than_or_equal_to: Gitlab::Git::Diff::DEFAULT_MAX_PATCH_BYTES,
|
|
|
|
less_than_or_equal_to: Gitlab::Git::Diff::MAX_PATCH_BYTES_UPPER_BOUND }
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
validates :user_default_internal_regex, js_regex: true, allow_nil: true
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
validates :personal_access_token_prefix,
|
|
|
|
format: { with: /\A[a-zA-Z0-9_+=\/@:.-]+\z/,
|
|
|
|
message: _("can contain only letters of the Base64 alphabet (RFC4648) with the addition of '@', ':' and '.'") },
|
|
|
|
length: { maximum: 20, message: _('is too long (maximum is %{count} characters)') },
|
|
|
|
allow_blank: true
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
validates :commit_email_hostname, format: { with: /\A[^@]+\z/ }
|
|
|
|
|
|
|
|
validates :archive_builds_in_seconds,
|
|
|
|
allow_nil: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 1.day.seconds }
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
validates :local_markdown_version,
|
|
|
|
allow_nil: true,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than: 65536 }
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
validates :asset_proxy_url,
|
|
|
|
presence: true,
|
|
|
|
allow_blank: false,
|
|
|
|
url: true,
|
|
|
|
if: :asset_proxy_enabled?
|
|
|
|
|
|
|
|
validates :asset_proxy_secret_key,
|
|
|
|
presence: true,
|
|
|
|
allow_blank: false,
|
|
|
|
if: :asset_proxy_enabled?
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
validates :static_objects_external_storage_url,
|
|
|
|
addressable_url: true, allow_blank: true
|
|
|
|
|
|
|
|
validates :static_objects_external_storage_auth_token,
|
|
|
|
presence: true,
|
|
|
|
if: :static_objects_external_storage_url?
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
validates :protected_paths,
|
|
|
|
length: { maximum: 100, message: N_('is too long (maximum is 100 entries)') },
|
|
|
|
allow_nil: false
|
|
|
|
|
|
|
|
validates :push_event_hooks_limit,
|
|
|
|
numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :push_event_activities_limit,
|
|
|
|
numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
validates :snippet_size_limit, numericality: { only_integer: true, greater_than: 0 }
|
2020-10-24 23:57:45 +05:30
|
|
|
validates :wiki_page_max_content_bytes, numericality: { only_integer: true, greater_than_or_equal_to: 1.kilobytes }
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
validates :email_restrictions, untrusted_regexp: true
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
validates :hashed_storage_enabled, inclusion: { in: [true], message: _("Hashed storage can't be disabled anymore for new projects") }
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
validates :container_registry_delete_tags_service_timeout,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
validates :container_registry_expiration_policies_worker_capacity,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
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)
|
2019-07-31 22:56:46 +05:30
|
|
|
record.errors.add(attr, _("'%{level}' is not a valid visibility level") % { level: 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)
|
2019-07-31 22:56:46 +05:30
|
|
|
record.errors.add(attr, _("'%{source}' is not a import source") % { source: source })
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
validate :terms_exist, if: :enforce_terms?
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
validates :external_authorization_service_default_label,
|
|
|
|
presence: true,
|
|
|
|
if: :external_authorization_service_enabled
|
|
|
|
|
|
|
|
validates :external_authorization_service_url,
|
2019-07-31 22:56:46 +05:30
|
|
|
addressable_url: true, allow_blank: true,
|
2019-07-07 11:18:12 +05:30
|
|
|
if: :external_authorization_service_enabled
|
|
|
|
|
|
|
|
validates :external_authorization_service_timeout,
|
|
|
|
numericality: { greater_than: 0, less_than_or_equal_to: 10 },
|
|
|
|
if: :external_authorization_service_enabled
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
validates :spam_check_endpoint_url,
|
|
|
|
addressable_url: true, allow_blank: true
|
|
|
|
|
|
|
|
validates :spam_check_endpoint_url,
|
|
|
|
presence: true,
|
|
|
|
if: :spam_check_endpoint_enabled
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
validates :external_auth_client_key,
|
|
|
|
presence: true,
|
|
|
|
if: -> (setting) { setting.external_auth_client_cert.present? }
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
validates :lets_encrypt_notification_email,
|
|
|
|
devise_email: true,
|
|
|
|
format: { without: /@example\.(com|org|net)\z/,
|
|
|
|
message: N_("Let's Encrypt does not accept emails on example.com") },
|
|
|
|
allow_blank: true
|
|
|
|
|
|
|
|
validates :lets_encrypt_notification_email,
|
|
|
|
presence: true,
|
|
|
|
if: :lets_encrypt_terms_of_service_accepted?
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
validates :eks_integration_enabled,
|
|
|
|
inclusion: { in: [true, false] }
|
|
|
|
|
|
|
|
validates :eks_account_id,
|
|
|
|
format: { with: Gitlab::Regex.aws_account_id_regex,
|
|
|
|
message: Gitlab::Regex.aws_account_id_message },
|
|
|
|
if: :eks_integration_enabled?
|
|
|
|
|
|
|
|
validates :eks_access_key_id,
|
|
|
|
length: { in: 16..128 },
|
2021-02-22 17:27:13 +05:30
|
|
|
if: -> (setting) { setting.eks_integration_enabled? && setting.eks_access_key_id.present? }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
validates :eks_secret_access_key,
|
|
|
|
presence: true,
|
2021-02-22 17:27:13 +05:30
|
|
|
if: -> (setting) { setting.eks_integration_enabled? && setting.eks_access_key_id.present? }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
validates_with X509CertificateCredentialsValidator,
|
|
|
|
certificate: :external_auth_client_cert,
|
|
|
|
pkey: :external_auth_client_key,
|
|
|
|
pass: :external_auth_client_key_pass,
|
|
|
|
if: -> (setting) { setting.external_auth_client_cert.present? }
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
validates :default_ci_config_path,
|
|
|
|
format: { without: %r{(\.{2}|\A/)},
|
|
|
|
message: N_('cannot include leading slash or directory traversal.') },
|
|
|
|
length: { maximum: 255 },
|
|
|
|
allow_blank: true
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
validates :issues_create_limit,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
|
|
|
validates :raw_blob_request_limit,
|
|
|
|
numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
validates :ci_jwt_signing_key,
|
|
|
|
rsa_key: true, allow_nil: true
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
attr_encrypted :asset_proxy_secret_key,
|
|
|
|
mode: :per_attribute_iv,
|
|
|
|
key: Settings.attr_encrypted_db_key_base_truncated,
|
|
|
|
algorithm: 'aes-256-cbc',
|
|
|
|
insecure_mode: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
private_class_method def self.encryption_options_base_truncated_aes_256_gcm
|
|
|
|
{
|
|
|
|
mode: :per_attribute_iv,
|
|
|
|
key: Settings.attr_encrypted_db_key_base_truncated,
|
|
|
|
algorithm: 'aes-256-gcm',
|
|
|
|
encode: true
|
|
|
|
}
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
attr_encrypted :external_auth_client_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :external_auth_client_key_pass, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :lets_encrypt_private_key, encryption_options_base_truncated_aes_256_gcm
|
2019-12-26 22:10:19 +05:30
|
|
|
attr_encrypted :eks_secret_access_key, encryption_options_base_truncated_aes_256_gcm
|
2019-12-04 20:38:33 +05:30
|
|
|
attr_encrypted :akismet_api_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :elasticsearch_aws_secret_access_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :recaptcha_private_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :recaptcha_site_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :slack_app_secret, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :slack_app_verification_token, encryption_options_base_truncated_aes_256_gcm
|
2021-01-29 00:20:46 +05:30
|
|
|
attr_encrypted :ci_jwt_signing_key, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :secret_detection_token_revocation_token, encryption_options_base_truncated_aes_256_gcm
|
|
|
|
attr_encrypted :cloud_license_auth_token, encryption_options_base_truncated_aes_256_gcm
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
validates :disable_feed_token,
|
|
|
|
inclusion: { in: [true, false], message: 'must be a boolean value' }
|
|
|
|
|
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
|
2018-10-15 14:42:47 +05:30
|
|
|
reset_memoized_terms
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
after_commit :expire_performance_bar_allowed_user_ids_cache, if: -> { previous_changes.key?('performance_bar_allowed_group_id') }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-03-07 23:17:34 +05:30
|
|
|
def validate_grafana_url
|
2021-02-22 17:27:13 +05:30
|
|
|
validate_url(parsed_grafana_url, :grafana_url, GRAFANA_URL_ERROR_MESSAGE)
|
2020-03-07 23:17:34 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def grafana_url_absolute?
|
|
|
|
parsed_grafana_url&.absolute?
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def validate_kroki_url
|
|
|
|
validate_url(parsed_kroki_url, :kroki_url, KROKI_URL_ERROR_MESSAGE)
|
|
|
|
end
|
|
|
|
|
|
|
|
def kroki_url_absolute?
|
|
|
|
parsed_kroki_url&.absolute?
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
def sourcegraph_url_is_com?
|
|
|
|
!!(sourcegraph_url =~ /\Ahttps:\/\/(www\.)?sourcegraph\.com/)
|
|
|
|
end
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def instance_review_permitted?
|
|
|
|
users_count = Rails.cache.fetch('limited_users_count', expires_in: 1.day) do
|
|
|
|
::User.limit(INSTANCE_REVIEW_MIN_USERS + 1).count(:all)
|
|
|
|
end
|
|
|
|
|
|
|
|
users_count >= INSTANCE_REVIEW_MIN_USERS
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def self.create_from_defaults
|
2020-10-04 03:57:07 +05:30
|
|
|
check_schema!
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
transaction(requires_new: true) do
|
|
|
|
super
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
rescue ActiveRecord::RecordNotUnique
|
|
|
|
# We already have an ApplicationSetting record, so just return it.
|
|
|
|
current_without_cache
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2020-10-04 03:57:07 +05:30
|
|
|
# Due to the frequency with which settings are accessed, it is
|
|
|
|
# likely that during a backup restore a running GitLab process
|
|
|
|
# will insert a new `application_settings` row before the
|
|
|
|
# constraints have been added to the table. This would add an
|
|
|
|
# extra row with ID 1 and prevent the primary key constraint from
|
|
|
|
# being added, which made ActiveRecord throw a
|
|
|
|
# IrreversibleOrderError anytime the settings were accessed
|
|
|
|
# (https://gitlab.com/gitlab-org/gitlab/-/issues/36405). To
|
|
|
|
# prevent this from happening, we do a sanity check that the
|
|
|
|
# primary key constraint is present before inserting a new entry.
|
|
|
|
def self.check_schema!
|
|
|
|
return if ActiveRecord::Base.connection.primary_key(self.table_name).present?
|
|
|
|
|
|
|
|
raise "The `#{self.table_name}` table is missing a primary key constraint in the database schema"
|
|
|
|
end
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
# By default, the backend is Rails.cache, which uses
|
|
|
|
# ActiveSupport::Cache::RedisStore. Since loading ApplicationSetting
|
|
|
|
# can cause a significant amount of load on Redis, let's cache it in
|
|
|
|
# memory.
|
|
|
|
def self.cache_backend
|
2020-05-24 23:13:21 +05:30
|
|
|
Gitlab::ProcessMemoryCache.cache_backend
|
2019-09-30 21:07:59 +05:30
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
def recaptcha_or_login_protection_enabled
|
|
|
|
recaptcha_enabled || login_recaptcha_protection_enabled
|
|
|
|
end
|
2020-03-07 23:17:34 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
repository_storages_weighted_attributes.each do |attribute|
|
|
|
|
define_method :"#{attribute}=" do |value|
|
|
|
|
super(value.to_i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-07 23:17:34 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def parsed_grafana_url
|
|
|
|
@parsed_grafana_url ||= Gitlab::Utils.parse_url(grafana_url)
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
def parsed_kroki_url
|
|
|
|
@parsed_kroki_url ||= Gitlab::UrlBlocker.validate!(kroki_url, schemes: %w(http https), enforce_sanitization: true)[0]
|
|
|
|
rescue Gitlab::UrlBlocker::BlockedUrlError => error
|
|
|
|
self.errors.add(
|
|
|
|
:kroki_url,
|
|
|
|
"is not valid. #{error}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate_url(parsed_url, name, error_message)
|
|
|
|
unless parsed_url
|
|
|
|
self.errors.add(
|
|
|
|
name,
|
|
|
|
"must be a valid relative or absolute URL. #{error_message}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
ApplicationSetting.prepend_if_ee('EE::ApplicationSetting')
|