Class: HTTP::Request
- Inherits:
-
Object
- Object
- HTTP::Request
- Extended by:
- Forwardable
- Includes:
- Headers::Mixin
- Defined in:
- lib/http/request.rb,
lib/http/request/writer.rb
Defined Under Namespace
Classes: UnsupportedMethodError, UnsupportedSchemeError, Writer
Constant Summary collapse
- USER_AGENT =
Default User-Agent header value
"http.rb/#{HTTP::VERSION}".freeze
- METHODS =
[ # RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1 :options, :get, :head, :post, :put, :delete, :trace, :connect, # RFC 2518: HTTP Extensions for Distributed Authoring -- WEBDAV :propfind, :proppatch, :mkcol, :copy, :move, :lock, :unlock, # RFC 3648: WebDAV Ordered Collections Protocol :orderpatch, # RFC 3744: WebDAV Access Control Protocol :acl, # draft-dusseault-http-patch: PATCH Method for HTTP :patch, # draft-reschke-webdav-search: WebDAV Search :search ].freeze
- SCHEMES =
Allowed schemes
[:http, :https, :ws, :wss].freeze
- PORTS =
Default ports of supported schemes
{ :http => 80, :https => 443, :ws => 80, :wss => 443 }.freeze
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#proxy ⇒ Object
readonly
Returns the value of attribute proxy.
-
#scheme ⇒ Object
readonly
Scheme is normalized to be a lowercase symbol e.g.
-
#uri ⇒ Object
readonly
"Request URI" as per RFC 2616 http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html.
-
#verb ⇒ Object
readonly
Method is given as a lowercase symbol e.g.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Attributes included from Headers::Mixin
Instance Method Summary collapse
-
#connect_using_proxy(socket) ⇒ Object
Setup tunnel through proxy for SSL request.
-
#headline ⇒ Object
Compute HTTP request header for direct or proxy request.
-
#include_proxy_authorization_header ⇒ Object
Compute and add the Proxy-Authorization header.
- #include_proxy_headers ⇒ Object
-
#initialize(opts) ⇒ Request
constructor
A new instance of Request.
- #proxy_authorization_header ⇒ Object
-
#proxy_connect_header ⇒ Object
Compute HTTP request header SSL proxy connection.
-
#proxy_connect_headers ⇒ Object
Headers to send with proxy connect request.
-
#redirect(uri, verb = @verb) ⇒ Object
Returns new Request with updated uri.
-
#socket_host ⇒ Object
Host for tcp socket.
-
#socket_port ⇒ Object
Port for tcp socket.
-
#stream(socket) ⇒ Object
Stream the request to a socket.
-
#using_authenticated_proxy? ⇒ Boolean
Is this request using an authenticated proxy?.
-
#using_proxy? ⇒ Boolean
Is this request using a proxy?.
Methods included from Headers::Mixin
Constructor Details
#initialize(opts) ⇒ Request
Returns a new instance of Request.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/http/request.rb', line 75 def initialize(opts) @verb = opts.fetch(:verb).to_s.downcase.to_sym @uri = normalize_uri(opts.fetch(:uri)) @scheme = @uri.scheme.to_s.downcase.to_sym if @uri.scheme raise(UnsupportedMethodError, "unknown method: #{verb}") unless METHODS.include?(@verb) raise(UnsupportedSchemeError, "unknown scheme: #{scheme}") unless SCHEMES.include?(@scheme) @proxy = opts[:proxy] || {} @body = opts[:body] @version = opts[:version] || "1.1" @headers = HTTP::Headers.coerce(opts[:headers] || {}) @headers[Headers::HOST] ||= default_host_header_value @headers[Headers::USER_AGENT] ||= USER_AGENT end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
67 68 69 |
# File 'lib/http/request.rb', line 67 def body @body end |
#proxy ⇒ Object (readonly)
Returns the value of attribute proxy.
67 68 69 |
# File 'lib/http/request.rb', line 67 def proxy @proxy end |
#scheme ⇒ Object (readonly)
Scheme is normalized to be a lowercase symbol e.g. :http, :https
62 63 64 |
# File 'lib/http/request.rb', line 62 def scheme @scheme end |
#uri ⇒ Object (readonly)
"Request URI" as per RFC 2616 http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html
66 67 68 |
# File 'lib/http/request.rb', line 66 def uri @uri end |
#verb ⇒ Object (readonly)
Method is given as a lowercase symbol e.g. :get, :post
59 60 61 |
# File 'lib/http/request.rb', line 59 def verb @verb end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
67 68 69 |
# File 'lib/http/request.rb', line 67 def version @version end |
Instance Method Details
#connect_using_proxy(socket) ⇒ Object
Setup tunnel through proxy for SSL request
139 140 141 |
# File 'lib/http/request.rb', line 139 def connect_using_proxy(socket) Request::Writer.new(socket, nil, proxy_connect_headers, proxy_connect_header).connect_through_proxy end |
#headline ⇒ Object
Compute HTTP request header for direct or proxy request
144 145 146 147 |
# File 'lib/http/request.rb', line 144 def headline request_uri = (using_proxy? && !uri.https?) ? uri : uri.omit(:scheme, :authority) "#{verb.to_s.upcase} #{request_uri.omit :fragment} HTTP/#{version}" end |
#include_proxy_authorization_header ⇒ Object
Compute and add the Proxy-Authorization header
129 130 131 |
# File 'lib/http/request.rb', line 129 def headers[Headers::PROXY_AUTHORIZATION] = end |
#include_proxy_headers ⇒ Object
123 124 125 126 |
# File 'lib/http/request.rb', line 123 def include_proxy_headers headers.merge!(proxy[:proxy_headers]) if proxy.key?(:proxy_headers) if using_authenticated_proxy? end |
#proxy_authorization_header ⇒ Object
133 134 135 136 |
# File 'lib/http/request.rb', line 133 def digest = Base64.strict_encode64("#{proxy[:proxy_username]}:#{proxy[:proxy_password]}") "Basic #{digest}" end |
#proxy_connect_header ⇒ Object
Compute HTTP request header SSL proxy connection
150 151 152 |
# File 'lib/http/request.rb', line 150 def proxy_connect_header "CONNECT #{host}:#{port} HTTP/#{version}" end |
#proxy_connect_headers ⇒ Object
Headers to send with proxy connect request
155 156 157 158 159 160 161 162 163 164 |
# File 'lib/http/request.rb', line 155 def proxy_connect_headers connect_headers = HTTP::Headers.coerce( Headers::HOST => headers[Headers::HOST], Headers::USER_AGENT => headers[Headers::USER_AGENT] ) connect_headers[Headers::PROXY_AUTHORIZATION] = if using_authenticated_proxy? connect_headers.merge!(proxy[:proxy_headers]) if proxy.key?(:proxy_headers) connect_headers end |
#redirect(uri, verb = @verb) ⇒ Object
Returns new Request with updated uri
93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/http/request.rb', line 93 def redirect(uri, verb = @verb) req = self.class.new( :verb => verb, :uri => @uri.join(uri), :headers => headers, :proxy => proxy, :body => body, :version => version ) req[Headers::HOST] = req.uri.host req end |
#socket_host ⇒ Object
Host for tcp socket
167 168 169 |
# File 'lib/http/request.rb', line 167 def socket_host using_proxy? ? proxy[:proxy_address] : host end |
#socket_port ⇒ Object
Port for tcp socket
172 173 174 |
# File 'lib/http/request.rb', line 172 def socket_port using_proxy? ? proxy[:proxy_port] : port end |
#stream(socket) ⇒ Object
Stream the request to a socket
108 109 110 111 |
# File 'lib/http/request.rb', line 108 def stream(socket) include_proxy_headers if using_proxy? && !@uri.https? Request::Writer.new(socket, body, headers, headline).stream end |
#using_authenticated_proxy? ⇒ Boolean
Is this request using an authenticated proxy?
119 120 121 |
# File 'lib/http/request.rb', line 119 def using_authenticated_proxy? proxy && proxy.keys.size >= 4 end |
#using_proxy? ⇒ Boolean
Is this request using a proxy?
114 115 116 |
# File 'lib/http/request.rb', line 114 def using_proxy? proxy && proxy.keys.size >= 2 end |