# frozen_string_literal: true module Organizations class Organization < ApplicationRecord DEFAULT_ORGANIZATION_ID = 1 scope :without_default, -> { where.not(id: DEFAULT_ORGANIZATION_ID) } before_destroy :check_if_default_organization has_many :namespaces has_many :groups has_many :projects has_one :settings, class_name: "OrganizationSetting" has_one :organization_detail, inverse_of: :organization, autosave: true has_many :organization_users, inverse_of: :organization has_many :users, through: :organization_users, inverse_of: :organizations validates :name, presence: true, length: { maximum: 255 } validates :path, presence: true, uniqueness: { case_sensitive: false }, 'organizations/path': true, length: { minimum: 2, maximum: 255 } delegate :description, :avatar, :avatar_url, to: :organization_detail accepts_nested_attributes_for :organization_detail def self.default_organization find_by(id: DEFAULT_ORGANIZATION_ID) end def organization_detail super.presence || build_organization_detail end def default? id == DEFAULT_ORGANIZATION_ID end def to_param path end def user?(user) organization_users.exists?(user: user) end def web_url(only_path: nil) Gitlab::UrlBuilder.build(self, only_path: only_path) end private def check_if_default_organization return unless default? raise ActiveRecord::RecordNotDestroyed, _('Cannot delete the default organization') end end end