module Doorkeeper::AccessGrantMixin::ClassMethods

Public Instance Methods

by_token(token) click to toggle source

Searches for Doorkeeper::AccessGrant record with the specific token value.

@param token [#to_s] token value (any object that responds to ‘#to_s`)

@return [Doorkeeper::AccessGrant, nil]

AccessGrant object or nil if there is no record with such token
# File lib/doorkeeper/models/access_grant_mixin.rb, line 30
def by_token(token)
  find_by_plaintext_token(:token, token)
end
fallback_secret_strategy() click to toggle source

Determine the fallback storing strategy Unless configured, there will be no fallback

@return [Doorkeeper::SecretStoring::Base]

# File lib/doorkeeper/models/access_grant_mixin.rb, line 115
def fallback_secret_strategy
  ::Doorkeeper.config.token_secret_fallback_strategy
end
generate_code_challenge(code_verifier) click to toggle source

@param code_verifier [#to_s] a one time use value (any object that responds to ‘#to_s`)

@return [#to_s] An encoded code challenge based on the provided verifier suitable for PKCE validation

# File lib/doorkeeper/models/access_grant_mixin.rb, line 91
def generate_code_challenge(code_verifier)
  Base64.urlsafe_encode64(Digest::SHA256.digest(code_verifier), padding: false)
end
pkce_supported?() click to toggle source
# File lib/doorkeeper/models/access_grant_mixin.rb, line 95
def pkce_supported?
  column_names.include?("code_challenge")
end
revoke_all_for(application_id, resource_owner, clock = Time) click to toggle source

Revokes AccessGrant records that have not been revoked and associated with the specific Application and Resource Owner.

@param application_id [Integer]

ID of the Application

@param resource_owner [ActiveRecord::Base, Integer]

instance of the Resource Owner model or it's ID
# File lib/doorkeeper/models/access_grant_mixin.rb, line 42
def revoke_all_for(application_id, resource_owner, clock = Time)
  by_resource_owner(resource_owner)
    .where(
      application_id: application_id,
      revoked_at: nil,
    )
    .update_all(revoked_at: clock.now.utc)
end
secret_strategy() click to toggle source

Determines the secret storing transformer Unless configured otherwise, uses the plain secret strategy

@return [Doorkeeper::SecretStoring::Base]

# File lib/doorkeeper/models/access_grant_mixin.rb, line 105
def secret_strategy
  ::Doorkeeper.config.token_secret_strategy
end