Class: Net::HTTPResponse
- Inherits:
-
Object
- Object
- Net::HTTPResponse
- Includes:
- HTTPHeader
- Defined in:
- lib/net/http/response.rb,
lib/net/http/responses.rb
Overview
HTTP response class.
This class wraps together the response header and the response body (the entity requested).
It mixes in the HTTPHeader module, which provides access to response header values both via hash-like methods and via individual readers.
Note that each possible HTTP response code defines its own HTTPResponse subclass. All classes are defined under the Net module. Indentation indicates inheritance. For a list of the classes see Net::HTTP.
Correspondence HTTP code => class
is stored in CODE_TO_OBJ constant:
Net::HTTPResponse::CODE_TO_OBJ['404'] #=> Net::HTTPNotFound
Direct Known Subclasses
HTTPClientError, HTTPInformation, HTTPRedirection, HTTPServerError, HTTPSuccess, HTTPUnknownResponse
Defined Under Namespace
Classes: Inflater
Constant Summary collapse
- CODE_CLASS_TO_OBJ =
{ '1' => Net::HTTPInformation, '2' => Net::HTTPSuccess, '3' => Net::HTTPRedirection, '4' => Net::HTTPClientError, '5' => Net::HTTPServerError }
- CODE_TO_OBJ =
{ '100' => Net::HTTPContinue, '101' => Net::HTTPSwitchProtocol, '102' => Net::HTTPProcessing, '103' => Net::HTTPEarlyHints, '200' => Net::HTTPOK, '201' => Net::HTTPCreated, '202' => Net::HTTPAccepted, '203' => Net::HTTPNonAuthoritativeInformation, '204' => Net::HTTPNoContent, '205' => Net::HTTPResetContent, '206' => Net::HTTPPartialContent, '207' => Net::HTTPMultiStatus, '208' => Net::HTTPAlreadyReported, '226' => Net::HTTPIMUsed, '300' => Net::HTTPMultipleChoices, '301' => Net::HTTPMovedPermanently, '302' => Net::HTTPFound, '303' => Net::HTTPSeeOther, '304' => Net::HTTPNotModified, '305' => Net::HTTPUseProxy, '307' => Net::HTTPTemporaryRedirect, '308' => Net::HTTPPermanentRedirect, '400' => Net::HTTPBadRequest, '401' => Net::HTTPUnauthorized, '402' => Net::HTTPPaymentRequired, '403' => Net::HTTPForbidden, '404' => Net::HTTPNotFound, '405' => Net::HTTPMethodNotAllowed, '406' => Net::HTTPNotAcceptable, '407' => Net::HTTPProxyAuthenticationRequired, '408' => Net::HTTPRequestTimeout, '409' => Net::HTTPConflict, '410' => Net::HTTPGone, '411' => Net::HTTPLengthRequired, '412' => Net::HTTPPreconditionFailed, '413' => Net::HTTPPayloadTooLarge, '414' => Net::HTTPURITooLong, '415' => Net::HTTPUnsupportedMediaType, '416' => Net::HTTPRangeNotSatisfiable, '417' => Net::HTTPExpectationFailed, '421' => Net::HTTPMisdirectedRequest, '422' => Net::HTTPUnprocessableEntity, '423' => Net::HTTPLocked, '424' => Net::HTTPFailedDependency, '426' => Net::HTTPUpgradeRequired, '428' => Net::HTTPPreconditionRequired, '429' => Net::HTTPTooManyRequests, '431' => Net::HTTPRequestHeaderFieldsTooLarge, '451' => Net::HTTPUnavailableForLegalReasons, '500' => Net::HTTPInternalServerError, '501' => Net::HTTPNotImplemented, '502' => Net::HTTPBadGateway, '503' => Net::HTTPServiceUnavailable, '504' => Net::HTTPGatewayTimeout, '505' => Net::HTTPVersionNotSupported, '506' => Net::HTTPVariantAlsoNegotiates, '507' => Net::HTTPInsufficientStorage, '508' => Net::HTTPLoopDetected, '510' => Net::HTTPNotExtended, '511' => Net::HTTPNetworkAuthenticationRequired, }
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
The HTTP result code string.
-
#decode_content ⇒ Object
Set to true automatically when the request did not contain an Accept-Encoding header from the user.
-
#http_version ⇒ Object
readonly
The HTTP version supported by the server.
-
#message ⇒ Object
(also: #msg)
readonly
The HTTP result message sent by the server.
-
#uri ⇒ Object
The URI used to fetch this response.
Class Method Summary collapse
-
.body_permitted? ⇒ Boolean
true if the response has a body.
-
.exception_type ⇒ Object
:nodoc: internal use only.
-
.read_new(sock) ⇒ Object
:nodoc: internal use only.
Instance Method Summary collapse
-
#body ⇒ Object
(also: #entity)
Returns the full entity body.
-
#body=(value) ⇒ Object
Because it may be necessary to modify the body, Eg, decompression this method facilitates that.
-
#code_type ⇒ Object
response <-> exception relationship.
-
#error! ⇒ Object
:nodoc:.
-
#error_type ⇒ Object
:nodoc:.
-
#header ⇒ Object
:nodoc:.
-
#initialize(httpv, code, msg) ⇒ HTTPResponse
constructor
:nodoc: internal use only.
- #inspect ⇒ Object
-
#read_body(dest = nil, &block) ⇒ Object
Gets the entity body returned by the remote HTTP server.
-
#read_header ⇒ Object
:nodoc:.
-
#reading_body(sock, reqmethodallowbody) ⇒ Object
body.
-
#response ⇒ Object
header (for backward compatibility only; DO NOT USE).
-
#value ⇒ Object
Raises an HTTP error if the response is not 2xx (success).
Methods included from HTTPHeader
#[], #[]=, #add_field, #basic_auth, #chunked?, #connection_close?, #connection_keep_alive?, #content_length, #content_length=, #content_range, #content_type, #delete, #each_capitalized, #each_capitalized_name, #each_header, #each_name, #each_value, #fetch, #get_fields, #initialize_http_header, #key?, #main_type, #proxy_basic_auth, #range, #range_length, #set_content_type, #set_form, #set_form_data, #set_range, #size, #sub_type, #to_hash, #type_params
Constructor Details
#initialize(httpv, code, msg) ⇒ HTTPResponse
:nodoc: internal use only
78 79 80 81 82 83 84 85 86 87 |
# File 'lib/net/http/response.rb', line 78 def initialize(httpv, code, msg) #:nodoc: internal use only @http_version = httpv @code = code @message = msg initialize_http_header nil @body = nil @read = false @uri = nil @decode_content = false end |
Instance Attribute Details
#code ⇒ Object (readonly)
The HTTP result code string. For example, ‘302’. You can also determine the response type by examining which response subclass the response object is an instance of.
95 96 97 |
# File 'lib/net/http/response.rb', line 95 def code @code end |
#decode_content ⇒ Object
Set to true automatically when the request did not contain an Accept-Encoding header from the user.
107 108 109 |
# File 'lib/net/http/response.rb', line 107 def decode_content @decode_content end |
#http_version ⇒ Object (readonly)
The HTTP version supported by the server.
90 91 92 |
# File 'lib/net/http/response.rb', line 90 def http_version @http_version end |
#message ⇒ Object (readonly) Also known as: msg
The HTTP result message sent by the server. For example, ‘Not Found’.
98 99 100 |
# File 'lib/net/http/response.rb', line 98 def @message end |
#uri ⇒ Object
The URI used to fetch this response. The response URI is only available if a URI was used to create the request.
103 104 105 |
# File 'lib/net/http/response.rb', line 103 def uri @uri end |
Class Method Details
.body_permitted? ⇒ Boolean
true if the response has a body.
22 23 24 |
# File 'lib/net/http/response.rb', line 22 def body_permitted? self::HAS_BODY end |
.exception_type ⇒ Object
:nodoc: internal use only
26 27 28 |
# File 'lib/net/http/response.rb', line 26 def exception_type # :nodoc: internal use only self::EXCEPTION_TYPE end |
.read_new(sock) ⇒ Object
:nodoc: internal use only
30 31 32 33 34 35 36 37 |
# File 'lib/net/http/response.rb', line 30 def read_new(sock) #:nodoc: internal use only httpv, code, msg = read_status_line(sock) res = response_class(code).new(httpv, code, msg) each_response_header(sock) do |k,v| res.add_field k, v end res end |
Instance Method Details
#body ⇒ Object Also known as: entity
Returns the full entity body.
Calling this method a second or subsequent time will return the string already read.
http.request_get('/index.html') {|res|
puts res.body
}
http.request_get('/index.html') {|res|
p res.body.object_id # 538149362
p res.body.object_id # 538149362
}
234 235 236 |
# File 'lib/net/http/response.rb', line 234 def body read_body() end |
#body=(value) ⇒ Object
Because it may be necessary to modify the body, Eg, decompression this method facilitates that.
240 241 242 |
# File 'lib/net/http/response.rb', line 240 def body=(value) @body = value end |
#code_type ⇒ Object
response <-> exception relationship
117 118 119 |
# File 'lib/net/http/response.rb', line 117 def code_type #:nodoc: self.class end |
#error! ⇒ Object
:nodoc:
121 122 123 124 125 |
# File 'lib/net/http/response.rb', line 121 def error! #:nodoc: = @code += ' ' + @message.dump if @message raise error_type().new(, self) end |
#error_type ⇒ Object
:nodoc:
127 128 129 |
# File 'lib/net/http/response.rb', line 127 def error_type #:nodoc: self.class::EXCEPTION_TYPE end |
#header ⇒ Object
:nodoc:
149 150 151 152 |
# File 'lib/net/http/response.rb', line 149 def header #:nodoc: warn "Net::HTTPResponse#header is obsolete", uplevel: 1 if $VERBOSE self end |
#inspect ⇒ Object
109 110 111 |
# File 'lib/net/http/response.rb', line 109 def inspect "#<#{self.class} #{@code} #{@message} readbody=#{@read}>" end |
#read_body(dest = nil, &block) ⇒ Object
Gets the entity body returned by the remote HTTP server.
If a block is given, the body is passed to the block, and the body is provided in fragments, as it is read in from the socket.
If dest
argument is given, response is read into that variable, with dest#<<
method (it could be String or IO, or any other object responding to <<
).
Calling this method a second or subsequent time for the same HTTPResponse object will return the value already read.
http.request_get('/index.html') {|res|
puts res.read_body
}
http.request_get('/index.html') {|res|
p res.read_body.object_id # 538149362
p res.read_body.object_id # 538149362
}
# using iterator
http.request_get('/index.html') {|res|
res.read_body do |segment|
print segment
end
}
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/net/http/response.rb', line 202 def read_body(dest = nil, &block) if @read raise IOError, "#{self.class}\#read_body called twice" if dest or block return @body end to = procdest(dest, block) stream_check if @body_exist read_body_0 to @body = to else @body = nil end @read = true @body end |
#read_header ⇒ Object
:nodoc:
154 155 156 157 |
# File 'lib/net/http/response.rb', line 154 def read_header #:nodoc: warn "Net::HTTPResponse#read_header is obsolete", uplevel: 1 if $VERBOSE self end |
#reading_body(sock, reqmethodallowbody) ⇒ Object
body
163 164 165 166 167 168 169 170 171 172 |
# File 'lib/net/http/response.rb', line 163 def reading_body(sock, reqmethodallowbody) #:nodoc: internal use only @socket = sock @body_exist = reqmethodallowbody && self.class.body_permitted? begin yield self.body # ensure to read body ensure @socket = nil end end |
#response ⇒ Object
header (for backward compatibility only; DO NOT USE)
144 145 146 147 |
# File 'lib/net/http/response.rb', line 144 def response #:nodoc: warn "Net::HTTPResponse#response is obsolete", uplevel: 1 if $VERBOSE self end |
#value ⇒ Object
Raises an HTTP error if the response is not 2xx (success).
132 133 134 |
# File 'lib/net/http/response.rb', line 132 def value error! unless self.kind_of?(Net::HTTPSuccess) end |