debian-mirror-gitlab/app/models/namespace_setting.rb

75 lines
2.3 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
class NamespaceSetting < ApplicationRecord
2021-04-29 21:17:54 +05:30
include CascadingNamespaceSettingAttribute
cascading_attr :delayed_project_removal
2020-07-28 23:09:34 +05:30
belongs_to :namespace, inverse_of: :namespace_settings
2021-01-03 14:25:43 +05:30
validate :default_branch_name_content
validate :allow_mfa_for_group
2021-04-29 21:17:54 +05:30
validate :allow_resource_access_token_creation_for_group
2021-01-03 14:25:43 +05:30
2021-10-27 15:23:28 +05:30
before_save :set_prevent_sharing_groups_outside_hierarchy, if: -> { user_cap_enabled? }
after_save :disable_project_sharing!, if: -> { user_cap_enabled? }
2021-01-29 00:20:46 +05:30
before_validation :normalize_default_branch_name
2021-04-29 21:17:54 +05:30
NAMESPACE_SETTINGS_PARAMS = [:default_branch_name, :delayed_project_removal,
2021-09-04 01:27:46 +05:30
:lock_delayed_project_removal, :resource_access_token_creation_allowed,
2021-09-30 23:02:18 +05:30
:prevent_sharing_groups_outside_hierarchy, :new_user_signups_cap].freeze
2021-01-03 14:25:43 +05:30
2020-07-28 23:09:34 +05:30
self.primary_key = :namespace_id
2021-01-03 14:25:43 +05:30
2021-10-27 15:23:28 +05:30
def prevent_sharing_groups_outside_hierarchy
return super if namespace.root?
namespace.root_ancestor.prevent_sharing_groups_outside_hierarchy
end
2021-01-29 00:20:46 +05:30
private
def normalize_default_branch_name
2021-10-27 15:23:28 +05:30
self.default_branch_name = if default_branch_name.blank?
nil
else
Sanitize.fragment(self.default_branch_name)
end
2021-01-29 00:20:46 +05:30
end
2021-01-03 14:25:43 +05:30
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
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-29 21:17:54 +05:30
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-10-27 15:23:28 +05:30
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-28 23:09:34 +05:30
end
2021-06-08 01:23:25 +05:30
NamespaceSetting.prepend_mod_with('NamespaceSetting')