Class: Request::OAuth2
- Inherits:
-
Faraday::Middleware
- Object
- Faraday::Middleware
- Request::OAuth2
- Defined in:
- lib/faraday/oauth2.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, client_id, access_token = nil) ⇒ OAuth2
constructor
A new instance of OAuth2.
Constructor Details
#initialize(app, client_id, access_token = nil) ⇒ OAuth2
Returns a new instance of OAuth2.
30 31 32 33 34 |
# File 'lib/faraday/oauth2.rb', line 30 def initialize(app, client_id, access_token=nil) @app = app @client_id = client_id @access_token = access_token end |
Instance Method Details
#call(env) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/faraday/oauth2.rb', line 7 def call(env) if env[:method] == :get or env[:method] == :delete env[:url].query_values = {} if env[:url].query_values.nil? if @access_token and not env[:url].query_values["client_secret"] env[:url].query_values = env[:url].query_values.merge(:access_token => @access_token) env[:request_headers] = env[:request_headers].merge('Authorization' => "Token token=\"#{@access_token}\"") elsif @client_id env[:url].query_values = env[:url].query_values.merge(:client_id => @client_id) end else if @access_token and not env[:body] && env[:body][:client_secret] env[:body] = {} if env[:body].nil? env[:body] = env[:body].merge(:access_token => @access_token) env[:request_headers] = env[:request_headers].merge('Authorization' => "Token token=\"#{@access_token}\"") elsif @client_id env[:body] = env[:body].merge(:client_id => @client_id) end end @app.call env end |