application_setting.rb 12.0 KB
Newer Older
1 2
# frozen_string_literal: true

3
class ApplicationSetting < ApplicationRecord
4
  include CacheableAttributes
5
  include CacheMarkdownField
6
  include TokenAuthenticatable
7
  include ChronicDurationAttribute
8

9
  add_authentication_token_field :runners_registration_token, encrypted: -> { Feature.enabled?(:application_settings_tokens_optional_encryption, default_enabled: true) ? :optional : :required }
10
  add_authentication_token_field :health_check_access_token
11
  add_authentication_token_field :static_objects_external_storage_auth_token
12

13 14
  belongs_to :instance_administration_project, class_name: "Project"

15 16 17 18 19 20
  # 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

21 22 23 24 25 26
  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
27
  serialize :asset_proxy_whitelist, Array # rubocop:disable Cop/ActiveRecordSerialize
28

29 30 31 32 33
  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

34 35
  default_value_for :id, 1

36 37
  chronic_duration_attr_writer :archive_builds_in_human_readable, :archive_builds_in_seconds

38 39
  validates :uuid, presence: true

40
  validates :outbound_local_requests_whitelist,
41 42 43
            length: { maximum: 1_000, message: N_('is too long (maximum is 1000 entries)') },
            allow_nil: false,
            qualified_domain_array: true
44

45
  validates :session_expire_delay,
46 47
            presence: true,
            numericality: { only_integer: true, greater_than_or_equal_to: 0 }
48

49
  validates :home_page_url,
50
            allow_blank: true,
51
            addressable_url: true,
R
Robin Bobbitt 已提交
52 53 54 55
            if: :home_page_url_column_exists?

  validates :help_page_support_url,
            allow_blank: true,
56
            addressable_url: true,
R
Robin Bobbitt 已提交
57
            if: :help_page_support_url_column_exists?
58

59
  validates :after_sign_out_path,
60
            allow_blank: true,
61
            addressable_url: true
62

D
Douwe Maan 已提交
63
  validates :admin_notification_email,
64
            devise_email: true,
65
            allow_blank: true
D
Douwe Maan 已提交
66

67
  validates :two_factor_grace_period,
68 69 70 71
            numericality: { greater_than_or_equal_to: 0 }

  validates :recaptcha_site_key,
            presence: true,
72
            if: :recaptcha_or_login_protection_enabled
73 74 75

  validates :recaptcha_private_key,
            presence: true,
76
            if: :recaptcha_or_login_protection_enabled
77

78 79 80 81
  validates :akismet_api_key,
            presence: true,
            if: :akismet_enabled

P
Pawel Chojnacki 已提交
82 83 84 85 86 87 88 89 90 91
  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

92 93 94 95
  validates :plantuml_url,
            presence: true,
            if: :plantuml_enabled

96 97 98 99 100
  validates :snowplow_collector_hostname,
            presence: true,
            hostname: true,
            if: :snowplow_enabled

101 102 103 104 105
  validates :snowplow_iglu_registry_url,
            addressable_url: true,
            allow_blank: true,
            if: :snowplow_enabled

106 107 108 109 110
  validates :pendo_url,
            presence: true,
            public_url: true,
            if: :pendo_enabled

111 112 113 114
  validates :max_attachment_size,
            presence: true,
            numericality: { only_integer: true, greater_than: 0 }

115 116 117 118
  validates :max_artifacts_size,
            presence: true,
            numericality: { only_integer: true, greater_than: 0 }

119
  validates :default_artifacts_expire_in, presence: true, duration: true
120

121 122 123 124
  validates :container_registry_token_expire_delay,
            presence: true,
            numericality: { only_integer: true, greater_than: 0 }

125 126
  validates :repository_storages, presence: true
  validate :check_repository_storages
127

128 129 130 131 132
  validates :auto_devops_domain,
            allow_blank: true,
            hostname: { allow_numeric_hostname: true, require_valid_tld: true },
            if: :auto_devops_enabled?

133
  validates :enabled_git_access_protocol,
134
            inclusion: { in: %w(ssh http), allow_blank: true, allow_nil: true }
135

136
  validates :domain_blacklist,
137
            presence: { message: 'Domain blacklist cannot be empty if Blacklist is enabled.' },
138 139
            if: :domain_blacklist_enabled?

J
Jacob Vosmaer 已提交
140 141 142 143 144 145
  validates :housekeeping_incremental_repack_period,
            presence: true,
            numericality: { only_integer: true, greater_than: 0 }

  validates :housekeeping_full_repack_period,
            presence: true,
146
            numericality: { only_integer: true, greater_than_or_equal_to: :housekeeping_incremental_repack_period }
J
Jacob Vosmaer 已提交
147 148 149

  validates :housekeeping_gc_period,
            presence: true,
150
            numericality: { only_integer: true, greater_than_or_equal_to: :housekeeping_full_repack_period }
J
Jacob Vosmaer 已提交
151

152 153 154 155
  validates :terminal_max_session_time,
            presence: true,
            numericality: { only_integer: true, greater_than_or_equal_to: 0 }

156 157 158 159
  validates :polling_interval_multiplier,
            presence: true,
            numericality: { greater_than_or_equal_to: 0 }

A
Andrew Newdigate 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
  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

181 182 183 184 185 186
  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 }

187 188
  validates :user_default_internal_regex, js_regex: true, allow_nil: true

189 190
  validates :commit_email_hostname, format: { with: /\A[^@]+\z/ }

191 192 193 194
  validates :archive_builds_in_seconds,
            allow_nil: true,
            numericality: { only_integer: true, greater_than_or_equal_to: 1.day.seconds }

J
Jan Provaznik 已提交
195 196 197 198
  validates :local_markdown_version,
            allow_nil: true,
            numericality: { only_integer: true, greater_than_or_equal_to: 0, less_than: 65536 }

199 200 201 202 203 204 205 206 207 208 209
  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?

210 211 212 213 214 215 216
  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?

217 218 219 220
  validates :protected_paths,
            length: { maximum: 100, message: N_('is too long (maximum is 100 entries)') },
            allow_nil: false

221 222 223
  validates :push_event_hooks_limit,
            numericality: { greater_than_or_equal_to: 0 }

224 225 226
  validates :push_event_activities_limit,
            numericality: { greater_than_or_equal_to: 0 }

227
  SUPPORTED_KEY_TYPES.each do |type|
228
    validates :"#{type}_key_restriction", presence: true, key_restriction: { type: type }
229
  end
230

N
Nick Thomas 已提交
231 232
  validates :allowed_key_types, presence: true

233
  validates_each :restricted_visibility_levels do |record, attr, value|
Z
Z.J. van de Weg 已提交
234
    value&.each do |level|
235
      unless Gitlab::VisibilityLevel.options.value?(level)
236
        record.errors.add(attr, _("'%{level}' is not a valid visibility level") % { level: level })
237 238 239 240
      end
    end
  end

241
  validates_each :import_sources do |record, attr, value|
Z
Z.J. van de Weg 已提交
242
    value&.each do |source|
243
      unless Gitlab::ImportSources.options.value?(source)
244
        record.errors.add(attr, _("'%{source}' is not a import source") % { source: source })
245 246 247 248
      end
    end
  end

B
Bob Van Landuyt 已提交
249 250
  validate :terms_exist, if: :enforce_terms?

251 252 253 254 255
  validates :external_authorization_service_default_label,
            presence: true,
            if: :external_authorization_service_enabled

  validates :external_authorization_service_url,
256
            addressable_url: true, allow_blank: true,
257 258 259 260 261 262 263 264 265 266
            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

  validates :external_auth_client_key,
            presence: true,
            if: -> (setting) { setting.external_auth_client_cert.present? }

267 268 269 270 271 272 273 274 275 276
  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?

277 278 279 280 281 282
  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? }

283 284 285 286 287 288
  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

289 290 291 292 293 294 295 296 297 298 299 300
  attr_encrypted :external_auth_client_key,
                 mode: :per_attribute_iv,
                 key: Settings.attr_encrypted_db_key_base_truncated,
                 algorithm: 'aes-256-gcm',
                 encode: true

  attr_encrypted :external_auth_client_key_pass,
                 mode: :per_attribute_iv,
                 key: Settings.attr_encrypted_db_key_base_truncated,
                 algorithm: 'aes-256-gcm',
                 encode: true

301 302 303 304 305 306
  attr_encrypted :lets_encrypt_private_key,
                 mode: :per_attribute_iv,
                 key: Settings.attr_encrypted_db_key_base_truncated,
                 algorithm: 'aes-256-gcm',
                 encode: true

307
  before_validation :ensure_uuid!
308

309
  before_save :ensure_runners_registration_token
310
  before_save :ensure_health_check_access_token
311

312
  after_commit do
B
Bob Van Landuyt 已提交
313
    reset_memoized_terms
314
  end
315
  after_commit :expire_performance_bar_allowed_user_ids_cache, if: -> { previous_changes.key?('performance_bar_allowed_group_id') }
316 317

  def self.create_from_defaults
318 319 320
    transaction(requires_new: true) do
      super
    end
321 322 323 324
  rescue ActiveRecord::RecordNotUnique
    # We already have an ApplicationSetting record, so just return it.
    current_without_cache
  end
325 326 327 328 329 330 331 332

  # 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
    Gitlab::ThreadMemoryCache.cache_backend
  end
333 334 335 336

  def recaptcha_or_login_protection_enabled
    recaptcha_enabled || login_recaptcha_protection_enabled
  end
337
end
338 339

ApplicationSetting.prepend_if_ee('EE::ApplicationSetting')