Class: ActionController::TestRequest
- Inherits:
-
Object
- Object
- ActionController::TestRequest
- Defined in:
- lib/oauth/client/action_controller_request.rb
Class Attribute Summary collapse
-
.use_oauth ⇒ Object
writeonly
Sets the attribute use_oauth.
Class Method Summary collapse
Instance Method Summary collapse
- #apply_oauth! ⇒ Object
- #configure_oauth(consumer = nil, token = nil, options = {}) ⇒ Object
- #set_oauth_header ⇒ Object
- #set_oauth_parameters ⇒ Object
- #set_oauth_query_string ⇒ Object
Class Attribute Details
.use_oauth=(value) ⇒ Object (writeonly)
Sets the attribute use_oauth
30 31 32 |
# File 'lib/oauth/client/action_controller_request.rb', line 30 def use_oauth=(value) @use_oauth = value end |
Class Method Details
.use_oauth? ⇒ Boolean
33 34 35 |
# File 'lib/oauth/client/action_controller_request.rb', line 33 def self.use_oauth? @use_oauth end |
Instance Method Details
#apply_oauth! ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/oauth/client/action_controller_request.rb', line 48 def apply_oauth! return unless ActionController::TestRequest.use_oauth? && @oauth_helper = OAuth::Client::Helper.new( self, .merge(request_uri: (respond_to?(:fullpath) ? fullpath : request_uri)), ) @oauth_helper.amend_user_agent_header(env) send("set_oauth_#{@oauth_options[:scheme]}") end |
#configure_oauth(consumer = nil, token = nil, options = {}) ⇒ Object
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/oauth/client/action_controller_request.rb', line 37 def configure_oauth(consumer = nil, token = nil, = {}) = { consumer: consumer, token: token, scheme: "header", signature_method: nil, nonce: nil, timestamp: nil, }.merge() end |
#set_oauth_header ⇒ Object
60 61 62 |
# File 'lib/oauth/client/action_controller_request.rb', line 60 def set_oauth_header env["Authorization"] = @oauth_helper.header end |
#set_oauth_parameters ⇒ Object
64 65 66 67 |
# File 'lib/oauth/client/action_controller_request.rb', line 64 def set_oauth_parameters @query_parameters = @oauth_helper.parameters_with_oauth @query_parameters.merge!(oauth_signature: @oauth_helper.signature) end |
#set_oauth_query_string ⇒ Object
69 70 |
# File 'lib/oauth/client/action_controller_request.rb', line 69 def set_oauth_query_string end |