Class: HTTP::Response
- Inherits:
-
Object
- Object
- HTTP::Response
- 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/inflater.rb,
lib/http/response/status/reasons.rb
Defined Under Namespace
Classes: Body, Inflater, Parser, Status
Instance Attribute Summary collapse
- #body ⇒ Body readonly
- #proxy_headers ⇒ Hash readonly
- #status ⇒ Status readonly
- #uri ⇒ URI? readonly
Attributes included from Headers::Mixin
Instance Method Summary collapse
-
#charset ⇒ String?
Charset of response (if any).
-
#code ⇒ Fixnum
Status code.
-
#connection ⇒ HTTP::Connection
The connection object used to make the corresponding request.
-
#content_length ⇒ nil, Integer
Value of the Content-Length header.
-
#content_type ⇒ HTTP::ContentType
Parsed Content-Type header.
- #cookies ⇒ Object
-
#flush ⇒ Response
Flushes body and returns self-reference.
-
#initialize(opts) ⇒ Response
constructor
Inits a new instance.
-
#inspect ⇒ Object
Inspect a response.
-
#mime_type ⇒ String?
MIME type of response (if any).
-
#parse(as = nil) ⇒ Object
Parse response body with corresponding MIME type adapter.
- #readpartial ⇒ Object
-
#reason ⇒ String?
Status message.
-
#to_a ⇒ Array(Fixnum, Hash, String)
Returns an Array ala Rack:
[status, headers, body]. -
#to_s ⇒ String
(also: #to_str)
Eagerly consume the entire body as a string.
Methods included from Headers::Mixin
Constructor Details
#initialize(opts) ⇒ Response
Inits a new instance
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/http/response.rb', line 41 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 stream = body_stream_for(connection, opts) @body = Response::Body.new(stream, encoding) else @body = opts.fetch(:body) end end |
Instance Attribute Details
#proxy_headers ⇒ Hash (readonly)
29 30 31 |
# File 'lib/http/response.rb', line 29 def proxy_headers @proxy_headers end |
Instance Method Details
#charset ⇒ String?
Charset of response (if any)
126 |
# File 'lib/http/response.rb', line 126 def_delegator :content_type, :charset |
#code ⇒ Fixnum
Returns status code.
65 |
# File 'lib/http/response.rb', line 65 def_delegator :status, :code |
#connection ⇒ HTTP::Connection
The connection object used to make the corresponding request.
78 |
# File 'lib/http/response.rb', line 78 def_delegator :body, :connection |
#content_length ⇒ nil, Integer
Value of the Content-Length header.
100 101 102 103 104 105 106 107 108 109 |
# File 'lib/http/response.rb', line 100 def content_length value = @headers[Headers::CONTENT_LENGTH] return unless value begin Integer(value) rescue ArgumentError nil end end |
#content_type ⇒ HTTP::ContentType
Parsed Content-Type header
114 115 116 |
# File 'lib/http/response.rb', line 114 def content_type @content_type ||= ContentType.parse headers[Headers::CONTENT_TYPE] end |
#cookies ⇒ Object
128 129 130 131 132 |
# File 'lib/http/response.rb', line 128 def @cookies ||= headers.each_with_object CookieJar.new do |(k, v), jar| jar.parse(v, uri) if k == Headers::SET_COOKIE end end |
#flush ⇒ Response
Flushes body and returns self-reference
90 91 92 93 |
# File 'lib/http/response.rb', line 90 def flush body.to_s self end |
#inspect ⇒ Object
Inspect a response
145 146 147 |
# File 'lib/http/response.rb', line 145 def inspect "#<#{self.class}/#{@version} #{code} #{reason} #{headers.to_h.inspect}>" end |
#mime_type ⇒ String?
MIME type of response (if any)
121 |
# File 'lib/http/response.rb', line 121 def_delegator :content_type, :mime_type |
#parse(as = nil) ⇒ Object
Parse response body with corresponding MIME type adapter.
140 141 142 |
# File 'lib/http/response.rb', line 140 def parse(as = nil) MimeType[as || mime_type].decode to_s end |
#readpartial ⇒ Object
74 |
# File 'lib/http/response.rb', line 74 def_delegator :body, :readpartial |
#reason ⇒ String?
Returns status message.
61 |
# File 'lib/http/response.rb', line 61 def_delegator :status, :reason |
#to_a ⇒ Array(Fixnum, Hash, String)
Returns an Array ala Rack: [status, headers, body]
83 84 85 |
# File 'lib/http/response.rb', line 83 def to_a [status.to_i, headers.to_h, body.to_s] end |
#to_s ⇒ String Also known as: to_str
Returns eagerly consume the entire body as a string.
69 |
# File 'lib/http/response.rb', line 69 def_delegator :body, :to_s |