-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathcontroller.rb
More file actions
67 lines (55 loc) · 1.99 KB
/
controller.rb
File metadata and controls
67 lines (55 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module Doorkeeper
module Helpers
module Controller
extend ActiveSupport::Concern
private
def authenticate_resource_owner!
current_resource_owner
end
def current_resource_owner
instance_eval(&Doorkeeper.configuration.authenticate_resource_owner)
end
def resource_owner_from_credentials
instance_eval(&Doorkeeper.configuration.resource_owner_from_credentials)
end
def authenticate_admin!
instance_eval(&Doorkeeper.configuration.authenticate_admin)
end
def server
@server ||= Server.new(self)
end
def doorkeeper_token
@token ||= OAuth::Token.authenticate request, *config_methods
end
def config_methods
@methods ||= Doorkeeper.configuration.access_token_methods
end
def get_error_response_from_exception(exception)
error_name = case exception
when Errors::InvalidTokenStrategy
:unsupported_grant_type
when Errors::InvalidAuthorizationStrategy
:unsupported_response_type
when Errors::MissingRequestStrategy
:invalid_request
when Errors::InvalidTokenReuse
:invalid_request
when Errors::InvalidGrantReuse
:invalid_grant
when Errors::DoorkeeperError
exception.message
end
OAuth::ErrorResponse.new name: error_name, state: params[:state]
end
def handle_token_exception(exception)
error = get_error_response_from_exception exception
headers.merge! error.headers
self.response_body = error.body.to_json
self.status = error.status
end
def skip_authorization?
!!instance_exec([@server.current_resource_owner, @pre_auth.client], &Doorkeeper.configuration.skip_authorization)
end
end
end
end