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

3
class ApplicationSetting < ActiveRecord::Base
4
  include CacheableAttributes
5
  include CacheMarkdownField
6
  include TokenAuthenticatable
Z
Zeger-Jan van de Weg 已提交
7
  include IgnorableColumn
8
  include ChronicDurationAttribute
9

10
  add_authentication_token_field :runners_registration_token
11
  add_authentication_token_field :health_check_access_token
12

13 14 15 16 17 18
  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
19

20 21
  # Setting a key restriction to `-1` means that all keys of this type are
  # forbidden.
22
  FORBIDDEN_KEY_VALUE = KeyRestrictionValidator::FORBIDDEN
23 24
  SUPPORTED_KEY_TYPES = %i[rsa dsa ecdsa ed25519].freeze

25 26 27 28 29 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
31

Z
Zeger-Jan van de Weg 已提交
32 33 34 35 36
  ignore_column :circuitbreaker_failure_count_threshold
  ignore_column :circuitbreaker_failure_reset_time
  ignore_column :circuitbreaker_storage_timeout
  ignore_column :circuitbreaker_access_retries
  ignore_column :circuitbreaker_check_interval
37 38
  ignore_column :koding_url
  ignore_column :koding_enabled
Z
Zeger-Jan van de Weg 已提交
39

40 41 42 43 44
  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

45
  attr_accessor :domain_whitelist_raw, :domain_blacklist_raw
46

47 48
  default_value_for :id, 1

49 50
  chronic_duration_attr_writer :archive_builds_in_human_readable, :archive_builds_in_seconds

51 52
  validates :uuid, presence: true

53
  validates :session_expire_delay,
54 55
            presence: true,
            numericality: { only_integer: true, greater_than_or_equal_to: 0 }
56

57
  validates :home_page_url,
58 59
            allow_blank: true,
            url: true,
R
Robin Bobbitt 已提交
60 61 62 63 64 65
            if: :home_page_url_column_exists?

  validates :help_page_support_url,
            allow_blank: true,
            url: true,
            if: :help_page_support_url_column_exists?
66

67
  validates :after_sign_out_path,
68 69
            allow_blank: true,
            url: true
70

D
Douwe Maan 已提交
71
  validates :admin_notification_email,
72
            email: true,
73
            allow_blank: true
D
Douwe Maan 已提交
74

75
  validates :two_factor_grace_period,
76 77 78 79 80 81 82 83 84
            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
85

J
Jeroen Nijhof 已提交
86 87 88 89
  validates :sentry_dsn,
            presence: true,
            if: :sentry_enabled

90 91 92 93
  validates :clientside_sentry_dsn,
            presence: true,
            if: :clientside_sentry_enabled

94 95 96 97
  validates :akismet_api_key,
            presence: true,
            if: :akismet_enabled

P
Pawel Chojnacki 已提交
98 99 100 101 102 103 104 105 106 107
  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

108 109 110 111
  validates :plantuml_url,
            presence: true,
            if: :plantuml_enabled

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

194
  SUPPORTED_KEY_TYPES.each do |type|
195
    validates :"#{type}_key_restriction", presence: true, key_restriction: { type: type }
196
  end
197

N
Nick Thomas 已提交
198 199
  validates :allowed_key_types, presence: true

200
  validates_each :restricted_visibility_levels do |record, attr, value|
Z
Z.J. van de Weg 已提交
201
    value&.each do |level|
202
      unless Gitlab::VisibilityLevel.options.value?(level)
Z
Z.J. van de Weg 已提交
203
        record.errors.add(attr, "'#{level}' is not a valid visibility level")
204 205 206 207
      end
    end
  end

208
  validates_each :import_sources do |record, attr, value|
Z
Z.J. van de Weg 已提交
209
    value&.each do |source|
210
      unless Gitlab::ImportSources.options.value?(source)
Z
Z.J. van de Weg 已提交
211
        record.errors.add(attr, "'#{source}' is not a import source")
212 213 214 215
      end
    end
  end

B
Bob Van Landuyt 已提交
216 217
  validate :terms_exist, if: :enforce_terms?

218
  before_validation :ensure_uuid!
S
Stan Hu 已提交
219
  before_validation :strip_sentry_values
220

221
  before_save :ensure_runners_registration_token
222
  before_save :ensure_health_check_access_token
223

224
  after_commit do
B
Bob Van Landuyt 已提交
225
    reset_memoized_terms
226
  end
227
  after_commit :expire_performance_bar_allowed_user_ids_cache, if: -> { previous_changes.key?('performance_bar_allowed_group_id') }
228

229
  def self.defaults
230 231 232
    {
      after_sign_up_text: nil,
      akismet_enabled: false,
233
      allow_local_requests_from_hooks_and_services: false,
234
      authorized_keys_enabled: true, # TODO default to false if the instance is configured to use AuthorizedKeysCommand
235
      container_registry_token_expire_delay: 5,
236
      default_artifacts_expire_in: '30 days',
237
      default_branch_protection: Settings.gitlab['default_branch_protection'],
238
      default_group_visibility: Settings.gitlab.default_projects_features['visibility_level'],
239 240 241 242 243
      default_project_visibility: Settings.gitlab.default_projects_features['visibility_level'],
      default_projects_limit: Settings.gitlab['default_projects_limit'],
      default_snippet_visibility: Settings.gitlab.default_projects_features['visibility_level'],
      disabled_oauth_sign_in_sources: [],
      domain_whitelist: Settings.gitlab['domain_whitelist'],
244 245 246
      dsa_key_restriction: 0,
      ecdsa_key_restriction: 0,
      ed25519_key_restriction: 0,
247 248 249
      gitaly_timeout_default: 55,
      gitaly_timeout_fast: 10,
      gitaly_timeout_medium: 30,
250
      gravatar_enabled: Settings.gravatar['enabled'],
R
Robin Bobbitt 已提交
251
      help_page_hide_commercial_content: false,
252 253
      help_page_text: nil,
      hide_third_party_offers: false,
254 255 256 257 258
      housekeeping_bitmaps_enabled: true,
      housekeeping_enabled: true,
      housekeeping_full_repack_period: 50,
      housekeeping_gc_period: 200,
      housekeeping_incremental_repack_period: 10,
259
      import_sources: Settings.gitlab['import_sources'],
260 261
      max_artifacts_size: Settings.artifacts['max_size'],
      max_attachment_size: Settings.gitlab['max_attachment_size'],
262
      mirror_available: true,
263
      password_authentication_enabled_for_git: true,
264
      password_authentication_enabled_for_web: Settings.gitlab['signin_enabled'],
265
      performance_bar_allowed_group_id: nil,
266
      rsa_key_restriction: 0,
267 268
      plantuml_enabled: false,
      plantuml_url: nil,
269
      polling_interval_multiplier: 1,
270
      project_export_enabled: true,
271 272 273 274 275 276 277 278 279 280 281
      recaptcha_enabled: false,
      repository_checks_enabled: true,
      repository_storages: ['default'],
      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,
      sign_in_text: nil,
      signup_enabled: Settings.gitlab['signup_enabled'],
282
      terminal_max_session_time: 0,
M
Michael Kozono 已提交
283 284
      throttle_authenticated_api_enabled: false,
      throttle_authenticated_api_period_in_seconds: 3600,
285 286 287 288 289 290 291
      throttle_authenticated_api_requests_per_period: 7200,
      throttle_authenticated_web_enabled: false,
      throttle_authenticated_web_period_in_seconds: 3600,
      throttle_authenticated_web_requests_per_period: 7200,
      throttle_unauthenticated_enabled: false,
      throttle_unauthenticated_period_in_seconds: 3600,
      throttle_unauthenticated_requests_per_period: 3600,
292
      two_factor_grace_period: 48,
293 294 295
      unique_ips_limit_enabled: false,
      unique_ips_limit_per_user: 10,
      unique_ips_limit_time_window: 3600,
A
Andrew Newdigate 已提交
296
      usage_ping_enabled: Settings.gitlab['usage_ping_enabled'],
297
      instance_statistics_visibility_private: false,
298
      user_default_external: false,
299
      user_default_internal_regex: nil,
300
      user_show_add_ssh_key_message: true,
301 302
      usage_stats_set_by_user_id: nil,
      diff_max_patch_bytes: Gitlab::Git::Diff::DEFAULT_MAX_PATCH_BYTES
303 304 305
    }
  end

306
  def self.create_from_defaults
307
    create(defaults)
308
  end
309

310 311 312 313 314 315 316 317
  def self.human_attribute_name(attr, _options = {})
    if attr == :default_artifacts_expire_in
      'Default artifacts expiration'
    else
      super
    end
  end

R
Robin Bobbitt 已提交
318
  def home_page_url_column_exists?
319
    ::Gitlab::Database.cached_column_exists?(:application_settings, :home_page_url)
320
  end
321

R
Robin Bobbitt 已提交
322
  def help_page_support_url_column_exists?
323
    ::Gitlab::Database.cached_column_exists?(:application_settings, :help_page_support_url)
R
Robin Bobbitt 已提交
324 325
  end

326 327 328 329 330
  def disabled_oauth_sign_in_sources=(sources)
    sources = (sources || []).map(&:to_s) & Devise.omniauth_providers.map(&:to_s)
    super(sources)
  end

331
  def domain_whitelist_raw
Z
Z.J. van de Weg 已提交
332
    self.domain_whitelist&.join("\n")
333 334
  end

335
  def domain_blacklist_raw
Z
Z.J. van de Weg 已提交
336
    self.domain_blacklist&.join("\n")
337 338
  end

339 340 341 342 343
  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
344
  end
345

346 347
  def domain_blacklist_raw=(values)
    self.domain_blacklist = []
348
    self.domain_blacklist = values.split(DOMAIN_LIST_SEPARATOR)
349
    self.domain_blacklist.reject! { |d| d.empty? }
350
    self.domain_blacklist
351 352 353 354 355 356
  end

  def domain_blacklist_file=(file)
    self.domain_blacklist_raw = file.read
  end

357
  def repository_storages
358
    Array(read_attribute(:repository_storages))
359 360
  end

361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
  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

S
Stan Hu 已提交
377 378 379 380 381
  def strip_sentry_values
    sentry_dsn.strip! if sentry_dsn.present?
    clientside_sentry_dsn.strip! if clientside_sentry_dsn.present?
  end

382 383 384 385
  def performance_bar_allowed_group
    Group.find_by_id(performance_bar_allowed_group_id)
  end

386 387 388
  # Return true if the Performance Bar is enabled for a given group
  def performance_bar_enabled
    performance_bar_allowed_group_id.present?
389 390
  end

391 392 393 394 395 396
  # Choose one of the available repository storage options. Currently all have
  # equal weighting.
  def pick_repository_storage
    repository_storages.sample
  end

397 398 399
  def runners_registration_token
    ensure_runners_registration_token!
  end
400 401 402 403

  def health_check_access_token
    ensure_health_check_access_token!
  end
404

405 406 407 408 409 410 411 412
  def usage_ping_can_be_configured?
    Settings.gitlab.usage_ping_enabled
  end

  def usage_ping_enabled
    usage_ping_can_be_configured? && super
  end

413 414 415 416 417 418 419 420 421
  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"

N
Nick Thomas 已提交
422
    has_attribute?(attr_name) ? public_send(attr_name) : FORBIDDEN_KEY_VALUE # rubocop:disable GitlabSecurity/PublicSend
423 424
  end

425 426 427 428 429 430 431 432
  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

433 434 435 436 437 438 439 440
  def user_default_internal_regex_enabled?
    user_default_external? && user_default_internal_regex.present?
  end

  def user_default_internal_regex_instance
    Regexp.new(user_default_internal_regex, Regexp::IGNORECASE)
  end

B
Bob Van Landuyt 已提交
441 442 443 444 445 446 447 448 449 450
  delegate :terms, to: :latest_terms, allow_nil: true
  def latest_terms
    @latest_terms ||= Term.latest
  end

  def reset_memoized_terms
    @latest_terms = nil
    latest_terms
  end

451 452 453 454
  def archive_builds_older_than
    archive_builds_in_seconds.seconds.ago if archive_builds_in_seconds
  end

455 456
  private

457 458 459 460 461 462
  def ensure_uuid!
    return if uuid?

    self.uuid = SecureRandom.uuid
  end

463 464 465 466 467
  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
B
Bob Van Landuyt 已提交
468 469 470 471 472 473

  def terms_exist
    return unless enforce_terms?

    errors.add(:terms, "You need to set terms to be enforced") unless terms.present?
  end
474 475 476 477

  def expire_performance_bar_allowed_user_ids_cache
    Gitlab::PerformanceBar.expire_allowed_user_ids_cache
  end
478
end