Class: Typhoeus::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/typhoeus/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ Response

Returns a new instance of Response.



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/typhoeus/response.rb', line 15

def initialize(params = {})
  @code                  = params[:code]
  @curl_return_code      = params[:curl_return_code]
  @curl_error_message    = params[:curl_error_message]
  @status_message        = params[:status_message]
  @http_version          = params[:http_version]
  @headers               = params[:headers]
  @body                  = params[:body]
  @time                  = params[:time]
  @requested_url         = params[:requested_url]
  @requested_http_method = params[:requested_http_method]
  @start_time            = params[:start_time]
  @start_transfer_time   = params[:start_transfer_time]
  @app_connect_time      = params[:app_connect_time]
  @pretransfer_time      = params[:pretransfer_time]
  @connect_time          = params[:connect_time]
  @name_lookup_time      = params[:name_lookup_time]
  @request               = params[:request]
  @effective_url         = params[:effective_url]
  @primary_ip            = params[:primary_ip]
  @mock                  = params[:mock] || false  # default
  @headers_hash          = NormalizedHeaderHash.new(params[:headers_hash]) if params[:headers_hash]
end

Instance Attribute Details

#app_connect_timeObject (readonly)

Returns the value of attribute app_connect_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def app_connect_time
  @app_connect_time
end

#bodyObject (readonly)

Returns the value of attribute body.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def code
  @code
end

#connect_timeObject (readonly)

Returns the value of attribute connect_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def connect_time
  @connect_time
end

#curl_error_messageObject (readonly)

Returns the value of attribute curl_error_message.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def curl_error_message
  @curl_error_message
end

#curl_return_codeObject (readonly)

Returns the value of attribute curl_return_code.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def curl_return_code
  @curl_return_code
end

#effective_urlObject (readonly)

Returns the value of attribute effective_url.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def effective_url
  @effective_url
end

#headersObject (readonly)

Returns the value of attribute headers.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def headers
  @headers
end

#headers_hashObject



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/typhoeus/response.rb', line 48

def headers_hash
  @headers_hash ||= begin
    headers.split("\n").map {|o| o.strip}.inject(Typhoeus::NormalizedHeaderHash.new) do |hash, o|
      if o.empty? || o =~ /^HTTP\/[\d\.]+/
        hash
      else
        i = o.index(":") || o.size
        key = o.slice(0, i)
        value = o.slice(i + 1, o.size)
        value = value.strip unless value.nil?
        if hash.has_key? key
          hash[key] = [hash[key], value].flatten
        else
          hash[key] = value
        end

        hash
      end
    end
  end
end

#mockObject

Returns the value of attribute mock.



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

def mock
  @mock
end

#name_lookup_timeObject (readonly)

Returns the value of attribute name_lookup_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def name_lookup_time
  @name_lookup_time
end

#pretransfer_timeObject (readonly)

Returns the value of attribute pretransfer_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def pretransfer_time
  @pretransfer_time
end

#primary_ipObject (readonly)

Returns the value of attribute primary_ip.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def primary_ip
  @primary_ip
end

#requestObject

Returns the value of attribute request.



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

def request
  @request
end

#requested_http_methodObject (readonly)

Returns the value of attribute requested_http_method.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def requested_http_method
  @requested_http_method
end

#requested_remote_methodObject (readonly)

Returns the value of attribute requested_remote_method.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def requested_remote_method
  @requested_remote_method
end

#requested_urlObject (readonly)

Returns the value of attribute requested_url.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def requested_url
  @requested_url
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def start_time
  @start_time
end

#start_transfer_timeObject (readonly)

Returns the value of attribute start_transfer_time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def start_transfer_time
  @start_transfer_time
end

#timeObject (readonly)

Returns the value of attribute time.



4
5
6
# File 'lib/typhoeus/response.rb', line 4

def time
  @time
end

Instance Method Details

#http_versionObject



87
88
89
# File 'lib/typhoeus/response.rb', line 87

def http_version
  @http_version ||= first_header_line ? first_header_line[/HTTP\/(\S+)/, 1] : nil
end

#mock?Boolean

Returns true if this is a mock response.

Returns:

  • (Boolean)


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

def mock?
  @mock
end

#modified?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/typhoeus/response.rb', line 95

def modified?
  @code != 304
end

#status_messageObject



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/typhoeus/response.rb', line 70

def status_message
  return @status_message if @status_message != nil

  # HTTP servers can choose not to include the explanation to HTTP codes. The RFC
  # states this (http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4):
  # Except when responding to a HEAD request, the server SHOULD include an entity containing
  # an explanation of the error situation [...]
  # This means 'HTTP/1.1 404' is as valid as 'HTTP/1.1 404 Not Found' and we have to handle it.

  # Regexp doc: http://rubular.com/r/eAr1oVYsVa
  if first_header_line != nil and first_header_line[/\d{3} (.*)$/, 1] != nil
    @status_message = first_header_line[/\d{3} (.*)$/, 1].chomp
  else
    @status_message = nil
  end
end

#success?Boolean

Returns:

  • (Boolean)


91
92
93
# File 'lib/typhoeus/response.rb', line 91

def success?
  @code >= 200 && @code < 300
end

#timed_out?Boolean

Returns:

  • (Boolean)


99
100
101
# File 'lib/typhoeus/response.rb', line 99

def timed_out?
  curl_return_code == 28
end