Class: Doorkeeper::OAuth::TokenRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/doorkeeper/oauth/token_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pre_auth, resource_owner) ⇒ TokenRequest

Returns a new instance of TokenRequest.



8
9
10
11
# File 'lib/doorkeeper/oauth/token_request.rb', line 8

def initialize(pre_auth, resource_owner)
  @pre_auth = pre_auth
  @resource_owner = resource_owner
end

Instance Attribute Details

#pre_authObject (readonly)

Returns the value of attribute pre_auth.



6
7
8
# File 'lib/doorkeeper/oauth/token_request.rb', line 6

def pre_auth
  @pre_auth
end

#resource_ownerObject (readonly)

Returns the value of attribute resource_owner.



6
7
8
# File 'lib/doorkeeper/oauth/token_request.rb', line 6

def resource_owner
  @resource_owner
end

Instance Method Details

#authorizeObject



13
14
15
16
17
# File 'lib/doorkeeper/oauth/token_request.rb', line 13

def authorize
  auth = Authorization::Token.new(pre_auth, resource_owner)
  auth.issue_token!
  CodeResponse.new(pre_auth, auth, response_on_fragment: true)
end

#denyObject



19
20
21
22
# File 'lib/doorkeeper/oauth/token_request.rb', line 19

def deny
  pre_auth.error = :access_denied
  pre_auth.error_response
end