Class: HTTParty::Response

Inherits:
BasicObject
Defined in:
lib/httparty/response/headers.rb,
lib/httparty/response.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
16
17
18
19
20
# File 'lib/httparty/response.rb', line 9

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

  if request.options[:logger]
    logger = ::HTTParty::Logger.build(request.options[:logger], request.options[:log_level], request.options[:log_format])
    logger.format(request, self)
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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



65
66
67
68
69
70
71
72
73
# File 'lib/httparty/response.rb', line 65

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



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

def class
  Response
end

#codeObject



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

def code
  response.code.to_i
end

#inspectObject



39
40
41
42
# File 'lib/httparty/response.rb', line 39

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

#parsed_responseObject



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

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

#respond_to?(name, include_all = false) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
61
# File 'lib/httparty/response.rb', line 58

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

#tap {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



34
35
36
37
# File 'lib/httparty/response.rb', line 34

def tap
  yield self
  self
end