gitlab-org--gitlab-foss/app/models/personal_access_token.rb

26 lines
626 B
Ruby
Raw Normal View History

class PersonalAccessToken < ActiveRecord::Base
include Expirable
include TokenAuthenticatable
add_authentication_token_field :token
serialize :scopes, Array
belongs_to :user
before_save :ensure_token
2017-02-27 18:56:54 +00:00
scope :active, -> { where("revoked = false AND (expires_at >= NOW() OR expires_at IS NULL)") }
scope :inactive, -> { where("revoked = true OR expires_at < NOW()") }
2017-02-27 18:56:54 +00:00
scope :with_impersonation, -> { where(impersonation: true) }
scope :without_impersonation, -> { where(impersonation: false) }
2016-04-15 15:24:20 +00:00
def revoke!
self.revoked = true
self.save
end
def active?
!revoked? && !expired?
end
end