Remove scopes from tokens Squashed commits: [83db38f] Add redirect uris to supported metadata
22 lines
560 B
Ruby
22 lines
560 B
Ruby
class OpenidConnect::OAuthAccessToken < ActiveRecord::Base
|
|
belongs_to :authorization
|
|
|
|
before_validation :setup, on: :create
|
|
|
|
validates :token, presence: true, uniqueness: true
|
|
validates :authorization, presence: true
|
|
|
|
scope :valid, ->(time) { where("expires_at >= ?", time) }
|
|
|
|
def setup
|
|
self.token = SecureRandom.hex(32)
|
|
self.expires_at = 24.hours.from_now
|
|
end
|
|
|
|
def bearer_token
|
|
@bearer_token ||= Rack::OAuth2::AccessToken::Bearer.new(
|
|
access_token: token,
|
|
expires_in: (expires_at - Time.now.utc).to_i
|
|
)
|
|
end
|
|
end
|