43 lines
1.5 KiB
Ruby
43 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Clusters
|
|
class Agent < ApplicationRecord
|
|
self.table_name = 'cluster_agents'
|
|
|
|
INACTIVE_AFTER = 1.hour.freeze
|
|
|
|
belongs_to :created_by_user, class_name: 'User', optional: true
|
|
belongs_to :project, class_name: '::Project' # Otherwise, it will load ::Clusters::Project
|
|
|
|
has_many :agent_tokens, class_name: 'Clusters::AgentToken'
|
|
has_many :last_used_agent_tokens, -> { order_last_used_at_desc }, class_name: 'Clusters::AgentToken', inverse_of: :agent
|
|
|
|
has_many :group_authorizations, class_name: 'Clusters::Agents::GroupAuthorization'
|
|
has_many :authorized_groups, class_name: '::Group', through: :group_authorizations, source: :group
|
|
|
|
has_many :project_authorizations, class_name: 'Clusters::Agents::ProjectAuthorization'
|
|
has_many :authorized_projects, class_name: '::Project', through: :project_authorizations, source: :project
|
|
|
|
has_many :activity_events, -> { in_timeline_order }, class_name: 'Clusters::Agents::ActivityEvent', inverse_of: :agent
|
|
|
|
scope :ordered_by_name, -> { order(:name) }
|
|
scope :with_name, -> (name) { where(name: name) }
|
|
|
|
validates :name,
|
|
presence: true,
|
|
length: { maximum: 63 },
|
|
uniqueness: { scope: :project_id },
|
|
format: {
|
|
with: Gitlab::Regex.cluster_agent_name_regex,
|
|
message: Gitlab::Regex.cluster_agent_name_regex_message
|
|
}
|
|
|
|
def has_access_to?(requested_project)
|
|
requested_project == project
|
|
end
|
|
|
|
def active?
|
|
agent_tokens.where("last_used_at > ?", INACTIVE_AFTER.ago).exists?
|
|
end
|
|
end
|
|
end
|