Class: HTTP::Response

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Headers::Mixin
Defined in:
lib/http/response.rb,
lib/http/response/body.rb,
lib/http/response/parser.rb,
lib/http/response/status.rb,
lib/http/response/status/reasons.rb

Defined Under Namespace

Classes: Body, Parser, Status

Instance Attribute Summary collapse

Attributes included from Headers::Mixin

#headers

Instance Method Summary collapse

Methods included from Headers::Mixin

#[], #[]=

Constructor Details

#initialize(opts) ⇒ Response

Inits a new instance

Parameters:

  • opts (Hash)

    a customizable set of options

Options Hash (opts):

  • :status (Integer)

    Status code

  • :version (String)

    HTTP version

  • :headers (Hash)
  • :proxy_headers (Hash)
  • :connection (HTTP::Connection)
  • :encoding (String)

    Encoding to use when reading body

  • :body (String)
  • :uri (String)


40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/http/response.rb', line 40

def initialize(opts)
  @version       = opts.fetch(:version)
  @uri           = HTTP::URI.parse(opts.fetch(:uri)) if opts.include? :uri
  @status        = HTTP::Response::Status.new(opts.fetch(:status))
  @headers       = HTTP::Headers.coerce(opts[:headers] || {})
  @proxy_headers = HTTP::Headers.coerce(opts[:proxy_headers] || {})

  if opts.include?(:connection)
    connection = opts.fetch(:connection)
    encoding   = opts[:encoding] || charset || Encoding::BINARY

    @body = Response::Body.new(connection, encoding)
  else
    @body = opts.fetch(:body)
  end
end

Instance Attribute Details

#bodyBody (readonly)

Returns:



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

def body
  @body
end

#proxy_headersHash (readonly)

Returns:

  • (Hash)


28
29
30
# File 'lib/http/response.rb', line 28

def proxy_headers
  @proxy_headers
end

#statusStatus (readonly)

Returns:



19
20
21
# File 'lib/http/response.rb', line 19

def status
  @status
end

#uriURI? (readonly)

Returns:



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

def uri
  @uri
end

Instance Method Details

#charsetString?

Charset of response (if any)

Returns:

  • (String, nil)


120
# File 'lib/http/response.rb', line 120

def_delegator :content_type, :charset

#codeFixnum

Returns status code.

Returns:

  • (Fixnum)

    status code



63
# File 'lib/http/response.rb', line 63

def_delegator :status, :code

#content_lengthnil, Integer

Value of the Content-Length header.

Returns:

  • (nil)

    if Content-Length was not given, or it's value was invalid (not an integer, e.g. empty string or string with non-digits).

  • (Integer)

    otherwise



94
95
96
97
98
99
100
101
102
103
# File 'lib/http/response.rb', line 94

def content_length
  value = @headers[Headers::CONTENT_LENGTH]
  return unless value

  begin
    Integer(value)
  rescue ArgumentError
    nil
  end
end

#content_typeHTTP::ContentType

Parsed Content-Type header

Returns:



108
109
110
# File 'lib/http/response.rb', line 108

def content_type
  @content_type ||= ContentType.parse headers[Headers::CONTENT_TYPE]
end

#cookiesObject



122
123
124
125
126
# File 'lib/http/response.rb', line 122

def cookies
  @cookies ||= headers.each_with_object CookieJar.new do |(k, v), jar|
    jar.parse(v, uri) if k == Headers::SET_COOKIE
  end
end

#flushResponse

Flushes body and returns self-reference

Returns:



84
85
86
87
# File 'lib/http/response.rb', line 84

def flush
  body.to_s
  self
end

#inspectObject

Inspect a response



139
140
141
# File 'lib/http/response.rb', line 139

def inspect
  "#<#{self.class}/#{@version} #{code} #{reason} #{headers.to_h.inspect}>"
end

#mime_typeString?

MIME type of response (if any)

Returns:

  • (String, nil)


115
# File 'lib/http/response.rb', line 115

def_delegator :content_type, :mime_type

#parse(as = nil) ⇒ Object

Parse response body with corresponding MIME type adapter.

Parameters:

  • as (#to_s) (defaults to: nil)

    Parse as given MIME type instead of the one determined from headers

Returns:

  • (Object)

Raises:



134
135
136
# File 'lib/http/response.rb', line 134

def parse(as = nil)
  MimeType[as || mime_type].decode to_s
end

#readpartialObject



72
# File 'lib/http/response.rb', line 72

def_delegator :body, :readpartial

#reasonString?

Returns status message.

Returns:

  • (String, nil)

    status message



59
# File 'lib/http/response.rb', line 59

def_delegator :status, :reason

#to_aArray(Fixnum, Hash, String)

Returns an Array ala Rack: [status, headers, body]

Returns:

  • (Array(Fixnum, Hash, String))


77
78
79
# File 'lib/http/response.rb', line 77

def to_a
  [status.to_i, headers.to_h, body.to_s]
end

#to_sString Also known as: to_str

Returns eagerly consume the entire body as a string.

Returns:

  • (String)

    eagerly consume the entire body as a string



67
# File 'lib/http/response.rb', line 67

def_delegator :body, :to_s