Class: ActionController::TestRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/oauth/client/action_controller_request.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.use_oauth=(bool) ⇒ Object



26
27
28
# File 'lib/oauth/client/action_controller_request.rb', line 26

def self.use_oauth=(bool)
  @use_oauth = bool
end

.use_oauth?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/oauth/client/action_controller_request.rb', line 30

def self.use_oauth?
  @use_oauth
end

Instance Method Details

#apply_oauth!Object



43
44
45
46
47
48
49
50
# File 'lib/oauth/client/action_controller_request.rb', line 43

def apply_oauth!
  return unless ActionController::TestRequest.use_oauth? && @oauth_options

  @oauth_helper = OAuth::Client::Helper.new(self, @oauth_options.merge(:request_uri => (respond_to?(:fullpath) ? fullpath : request_uri)))
  @oauth_helper.amend_user_agent_header(env)

  self.send("set_oauth_#{@oauth_options[:scheme]}")
end

#configure_oauth(consumer = nil, token = nil, options = {}) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/oauth/client/action_controller_request.rb', line 34

def configure_oauth(consumer = nil, token = nil, options = {})
  @oauth_options = { :consumer  => consumer,
                     :token     => token,
                     :scheme    => 'header',
                     :signature_method => nil,
                     :nonce     => nil,
                     :timestamp => nil }.merge(options)
end

#set_oauth_headerObject



52
53
54
# File 'lib/oauth/client/action_controller_request.rb', line 52

def set_oauth_header
  env['Authorization'] = @oauth_helper.header
end

#set_oauth_parametersObject



56
57
58
59
# File 'lib/oauth/client/action_controller_request.rb', line 56

def set_oauth_parameters
  @query_parameters = @oauth_helper.parameters_with_oauth
  @query_parameters.merge!(:oauth_signature => @oauth_helper.signature)
end

#set_oauth_query_stringObject



61
62
# File 'lib/oauth/client/action_controller_request.rb', line 61

def set_oauth_query_string
end