Class: OAuth2::Authenticator
- Inherits:
-
Object
- Object
- OAuth2::Authenticator
- Defined in:
- lib/oauth2/authenticator.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#mode ⇒ Object
readonly
Returns the value of attribute mode.
-
#secret ⇒ Object
readonly
Returns the value of attribute secret.
Class Method Summary collapse
Instance Method Summary collapse
-
#apply(params) ⇒ Hash
Apply the request credentials used to authenticate to the Authorization Server.
-
#initialize(id, secret, mode) ⇒ Authenticator
constructor
A new instance of Authenticator.
Constructor Details
#initialize(id, secret, mode) ⇒ Authenticator
Returns a new instance of Authenticator.
9 10 11 12 13 |
# File 'lib/oauth2/authenticator.rb', line 9 def initialize(id, secret, mode) @id = id @secret = secret @mode = mode end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
7 8 9 |
# File 'lib/oauth2/authenticator.rb', line 7 def id @id end |
#mode ⇒ Object (readonly)
Returns the value of attribute mode.
7 8 9 |
# File 'lib/oauth2/authenticator.rb', line 7 def mode @mode end |
#secret ⇒ Object (readonly)
Returns the value of attribute secret.
7 8 9 |
# File 'lib/oauth2/authenticator.rb', line 7 def secret @secret end |
Class Method Details
.encode_basic_auth(user, password) ⇒ Object
39 40 41 |
# File 'lib/oauth2/authenticator.rb', line 39 def self.encode_basic_auth(user, password) "Basic #{Base64.strict_encode64("#{user}:#{password}")}" end |
Instance Method Details
#apply(params) ⇒ Hash
Apply the request credentials used to authenticate to the Authorization Server
Depending on configuration, this might be as request params or as an Authorization header.
User-provided params and header take precedence.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/oauth2/authenticator.rb', line 24 def apply(params) case mode.to_sym when :basic_auth apply_basic_auth(params) when :request_body apply_params_auth(params) when :tls_client_auth apply_client_id(params) when :private_key_jwt params else raise NotImplementedError end end |