Class: Grape::Middleware::Auth::Base
- Inherits:
-
Base
- Object
- Base
- Grape::Middleware::Auth::Base
show all
- Defined in:
- lib/grape/middleware/auth/base.rb
Instance Attribute Summary collapse
Attributes inherited from Base
#app, #env, #options
Instance Method Summary
collapse
Methods inherited from Base
#after, #call, #call!, #content_type, #content_type_for, #content_types, #default_options, #mime_types, #request, #response
Constructor Details
#initialize(app, options = {}, &authenticator) ⇒ Base
9
10
11
12
|
# File 'lib/grape/middleware/auth/base.rb', line 9
def initialize(app, options = {}, &authenticator)
super(app, options)
@authenticator = authenticator
end
|
Instance Attribute Details
#authenticator ⇒ Object
Returns the value of attribute authenticator.
7
8
9
|
# File 'lib/grape/middleware/auth/base.rb', line 7
def authenticator
@authenticator
end
|
Instance Method Details
#base_request ⇒ Object
14
15
16
|
# File 'lib/grape/middleware/auth/base.rb', line 14
def base_request
raise NotImplementedError, "You must implement base_request."
end
|
#before ⇒ Object
22
23
24
25
26
|
# File 'lib/grape/middleware/auth/base.rb', line 22
def before
unless authenticator.call(*credentials)
throw :error, status: 401, message: "API Authorization Failed."
end
end
|
#credentials ⇒ Object
18
19
20
|
# File 'lib/grape/middleware/auth/base.rb', line 18
def credentials
base_request.provided? ? base_request.credentials : [nil, nil]
end
|