Sha256: 8d0b84035f30fa2684ad1f49a6f9ea05cc378d2fe83ff197c941d81537e388ac
Contents?: true
Size: 1.37 KB
Versions: 5
Compression:
Stored size: 1.37 KB
Contents
module Doorkeeper module OAuth class AuthorizationCodeRequest include Validations include OAuth::RequestConcern validate :attributes, error: :invalid_request validate :client, error: :invalid_client validate :grant, error: :invalid_grant validate :redirect_uri, error: :invalid_grant attr_accessor :server, :grant, :client, :redirect_uri, :access_token def initialize(server, grant, client, parameters = {}) @server = server @client = client @grant = grant @redirect_uri = parameters[:redirect_uri] end private def before_successful_response grant.transaction do grant.lock! raise Errors::InvalidGrantReuse if grant.revoked? grant.revoke find_or_create_access_token(grant.application, grant.resource_owner_id, grant.scopes, server) end end def validate_attributes redirect_uri.present? end def validate_client !!client end def validate_grant return false unless grant && grant.application_id == client.id grant.accessible? end def validate_redirect_uri grant.redirect_uri == redirect_uri end end end end
Version data entries
5 entries across 5 versions & 1 rubygems