gitlab-org--gitlab-foss/app/models/clusters/agent_token.rb

30 lines
875 B
Ruby

# frozen_string_literal: true
module Clusters
class AgentToken < ApplicationRecord
include RedisCacheable
include TokenAuthenticatable
add_authentication_token_field :token, encrypted: :required, token_generator: -> { Devise.friendly_token(50) }
cached_attr_reader :last_used_at
self.table_name = 'cluster_agent_tokens'
belongs_to :agent, class_name: 'Clusters::Agent', optional: false
belongs_to :created_by_user, class_name: 'User', optional: true
before_save :ensure_token
validates :description, length: { maximum: 1024 }
validates :name, presence: true, length: { maximum: 255 }
scope :order_last_used_at_desc, -> { order(::Gitlab::Database.nulls_last_order('last_used_at', 'DESC')) }
scope :with_status, -> (status) { where(status: status) }
enum status: {
active: 0,
revoked: 1
}
end
end