mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
34 lines
1.0 KiB
Ruby
34 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class RunnerNamespace < Ci::ApplicationRecord
|
|
include Limitable
|
|
|
|
self.limit_name = 'ci_registered_group_runners'
|
|
self.limit_scope = :group
|
|
self.limit_relation = :recent_runners
|
|
|
|
belongs_to :runner, inverse_of: :runner_namespaces
|
|
belongs_to :namespace, inverse_of: :runner_namespaces, class_name: '::Namespace'
|
|
belongs_to :group, class_name: '::Group', foreign_key: :namespace_id
|
|
|
|
validates :runner_id, uniqueness: { scope: :namespace_id }
|
|
# NOTE: `on:` hook can be removed the milestone after https://gitlab.com/gitlab-org/gitlab/-/merge_requests/155761
|
|
# is merged
|
|
validates :namespace, presence: true, on: [:create, :update]
|
|
validate :group_runner_type
|
|
|
|
scope :for_runner, ->(runner_id) { where(runner_id: runner_id) }
|
|
|
|
def recent_runners
|
|
::Ci::Runner.belonging_to_group(namespace_id).recent
|
|
end
|
|
|
|
private
|
|
|
|
def group_runner_type
|
|
errors.add(:runner, 'is not a group runner') unless runner&.group_type?
|
|
end
|
|
end
|
|
end
|