2020-07-16 11:09:38 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class NamespaceSetting < ApplicationRecord
|
2021-04-07 14:09:45 -04:00
|
|
|
include CascadingNamespaceSettingAttribute
|
2021-09-08 05:09:10 -04:00
|
|
|
include Sanitizable
|
2021-04-07 14:09:45 -04:00
|
|
|
|
|
|
|
cascading_attr :delayed_project_removal
|
|
|
|
|
2020-07-16 11:09:38 -04:00
|
|
|
belongs_to :namespace, inverse_of: :namespace_settings
|
|
|
|
|
2020-10-08 20:08:41 -04:00
|
|
|
validate :default_branch_name_content
|
2020-10-13 11:08:53 -04:00
|
|
|
validate :allow_mfa_for_group
|
2021-04-05 23:09:02 -04:00
|
|
|
validate :allow_resource_access_token_creation_for_group
|
2020-10-08 20:08:41 -04:00
|
|
|
|
2021-08-10 08:11:00 -04:00
|
|
|
before_save :set_prevent_sharing_groups_outside_hierarchy, if: -> { user_cap_enabled? }
|
|
|
|
after_save :disable_project_sharing!, if: -> { user_cap_enabled? }
|
|
|
|
|
2020-11-04 10:08:41 -05:00
|
|
|
before_validation :normalize_default_branch_name
|
|
|
|
|
2021-08-26 08:10:28 -04:00
|
|
|
enum jobs_to_be_done: { basics: 0, move_repository: 1, code_storage: 2, exploring: 3, ci: 4, other: 5 }, _suffix: true
|
|
|
|
|
2021-04-07 14:09:45 -04:00
|
|
|
NAMESPACE_SETTINGS_PARAMS = [:default_branch_name, :delayed_project_removal,
|
2021-06-14 20:10:11 -04:00
|
|
|
:lock_delayed_project_removal, :resource_access_token_creation_allowed,
|
2021-08-26 08:10:28 -04:00
|
|
|
:prevent_sharing_groups_outside_hierarchy, :new_user_signups_cap,
|
|
|
|
:setup_for_company, :jobs_to_be_done].freeze
|
2020-10-08 20:08:41 -04:00
|
|
|
|
2020-07-16 11:09:38 -04:00
|
|
|
self.primary_key = :namespace_id
|
2020-10-08 20:08:41 -04:00
|
|
|
|
2021-09-08 05:09:10 -04:00
|
|
|
sanitizes! :default_branch_name
|
|
|
|
|
2021-08-10 08:11:00 -04:00
|
|
|
def prevent_sharing_groups_outside_hierarchy
|
|
|
|
return super if namespace.root?
|
|
|
|
|
|
|
|
namespace.root_ancestor.prevent_sharing_groups_outside_hierarchy
|
|
|
|
end
|
|
|
|
|
2020-11-04 10:08:41 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def normalize_default_branch_name
|
2021-09-08 05:09:10 -04:00
|
|
|
self.default_branch_name = default_branch_name.presence
|
2020-11-04 10:08:41 -05:00
|
|
|
end
|
|
|
|
|
2020-10-08 20:08:41 -04:00
|
|
|
def default_branch_name_content
|
|
|
|
return if default_branch_name.nil?
|
|
|
|
|
|
|
|
if default_branch_name.blank?
|
|
|
|
errors.add(:default_branch_name, "can not be an empty string")
|
|
|
|
end
|
|
|
|
end
|
2020-10-13 11:08:53 -04:00
|
|
|
|
|
|
|
def allow_mfa_for_group
|
|
|
|
if namespace&.subgroup? && allow_mfa_for_subgroups == false
|
|
|
|
errors.add(:allow_mfa_for_subgroups, _('is not allowed since the group is not top-level group.'))
|
|
|
|
end
|
|
|
|
end
|
2021-04-05 23:09:02 -04:00
|
|
|
|
|
|
|
def allow_resource_access_token_creation_for_group
|
|
|
|
if namespace&.subgroup? && !resource_access_token_creation_allowed
|
|
|
|
errors.add(:resource_access_token_creation_allowed, _('is not allowed since the group is not top-level group.'))
|
|
|
|
end
|
|
|
|
end
|
2021-08-10 08:11:00 -04:00
|
|
|
|
|
|
|
def set_prevent_sharing_groups_outside_hierarchy
|
|
|
|
self.prevent_sharing_groups_outside_hierarchy = true
|
|
|
|
end
|
|
|
|
|
|
|
|
def disable_project_sharing!
|
|
|
|
namespace.update_attribute(:share_with_group_lock, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_cap_enabled?
|
|
|
|
new_user_signups_cap.present? && namespace.root?
|
|
|
|
end
|
2020-07-16 11:09:38 -04:00
|
|
|
end
|
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
NamespaceSetting.prepend_mod_with('NamespaceSetting')
|