Class: HTTParty::Response

Inherits:
BasicObject
Defined in:
lib/httparty/response.rb,
lib/httparty/response/headers.rb

Overview

:nodoc:

Defined Under Namespace

Classes: Headers

Constant Summary collapse

CODES_TO_OBJ =
::Net::HTTPResponse::CODE_CLASS_TO_OBJ.merge ::Net::HTTPResponse::CODE_TO_OBJ

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request, response, parsed_block, options = {}) ⇒ Response

Returns a new instance of Response.



9
10
11
12
13
14
15
# File 'lib/httparty/response.rb', line 9

def initialize(request, response, parsed_block, options={})
  @request      = request
  @response     = response
  @body         = response.body || options[:body]
  @parsed_block = parsed_block
  @headers      = Headers.new(response.to_hash)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object (protected)



50
51
52
53
54
55
56
57
58
# File 'lib/httparty/response.rb', line 50

def method_missing(name, *args, &block)
  if parsed_response.respond_to?(name)
    parsed_response.send(name, *args, &block)
  elsif response.respond_to?(name)
    response.send(name, *args, &block)
  else
    super
  end
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



7
8
9
# File 'lib/httparty/response.rb', line 7

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



7
8
9
# File 'lib/httparty/response.rb', line 7

def headers
  @headers
end

#requestObject (readonly)

Returns the value of attribute request.



7
8
9
# File 'lib/httparty/response.rb', line 7

def request
  @request
end

#responseObject (readonly)

Returns the value of attribute response.



7
8
9
# File 'lib/httparty/response.rb', line 7

def response
  @response
end

Class Method Details

.underscore(string) ⇒ Object



3
4
5
# File 'lib/httparty/response.rb', line 3

def self.underscore(string)
  string.gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').gsub(/([a-z])([A-Z])/,'\1_\2').downcase
end

Instance Method Details

#classObject



21
22
23
# File 'lib/httparty/response.rb', line 21

def class
  Response
end

#codeObject



25
26
27
# File 'lib/httparty/response.rb', line 25

def code
  response.code.to_i
end

#inspectObject



29
30
31
32
# File 'lib/httparty/response.rb', line 29

def inspect
  inspect_id = "%x" % (object_id * 2)
  %(#<#{self.class}:0x#{inspect_id} parsed_response=#{parsed_response.inspect}, @response=#{response.inspect}, @headers=#{headers.inspect}>)
end

#parsed_responseObject



17
18
19
# File 'lib/httparty/response.rb', line 17

def parsed_response
  @parsed_response ||= @parsed_block.call
end

#respond_to?(name) ⇒ Boolean

Returns:

  • (Boolean)


43
44
45
46
# File 'lib/httparty/response.rb', line 43

def respond_to?(name)
  return true if [:request, :response, :parsed_response, :body, :headers].include?(name)
  parsed_response.respond_to?(name) || response.respond_to?(name)
end