29 lines
857 B
Ruby
29 lines
857 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(arel_table[:last_used_at].desc.nulls_last) }
|
|
scope :with_status, -> (status) { where(status: status) }
|
|
|
|
enum status: {
|
|
active: 0,
|
|
revoked: 1
|
|
}
|
|
end
|
|
end
|