Class: Polipus::HTTP
- Inherits:
-
Object
- Object
- Polipus::HTTP
- Defined in:
- lib/polipus/http.rb
Constant Summary collapse
- REDIRECT_LIMIT =
Maximum number of redirects to follow on each get_response
5
Instance Method Summary collapse
-
#accept_cookies? ⇒ Boolean
Does this HTTP client accept cookies from the server?.
- #cookie_jar ⇒ Object
-
#fetch_page(url, referer = nil, depth = nil) ⇒ Object
Fetch a single Page from the response of an HTTP request to url.
-
#fetch_pages(url, referer = nil, depth = nil) ⇒ Object
Create new Pages from the response of an HTTP request to url, including redirects.
-
#initialize(opts = {}) ⇒ HTTP
constructor
A new instance of HTTP.
-
#open_timeout ⇒ Object
HTTP open timeout in seconds.
-
#proxy_host ⇒ Object
The proxy address string.
-
#proxy_host_port ⇒ Object
Shorthand to get proxy info with a single call It returns an array of [‘addr’, port].
-
#proxy_port ⇒ Object
The proxy port.
-
#read_timeout ⇒ Object
HTTP read timeout in seconds.
-
#redirect_limit ⇒ Object
The maximum number of redirects to follow.
-
#user_agent ⇒ Object
The user-agent string which will be sent with each request, or nil if no such option is set.
Constructor Details
#initialize(opts = {}) ⇒ HTTP
Returns a new instance of HTTP.
11 12 13 14 15 |
# File 'lib/polipus/http.rb', line 11 def initialize(opts = {}) @connections = {} @connections_hits = {} @opts = opts end |
Instance Method Details
#accept_cookies? ⇒ Boolean
Does this HTTP client accept cookies from the server?
114 115 116 |
# File 'lib/polipus/http.rb', line 114 def @opts[:accept_cookies] end |
#cookie_jar ⇒ Object
118 119 120 121 |
# File 'lib/polipus/http.rb', line 118 def @opts[:cookie_jar] ||= ::HTTP::CookieJar.new @opts[:cookie_jar] end |
#fetch_page(url, referer = nil, depth = nil) ⇒ Object
Fetch a single Page from the response of an HTTP request to url. Just gets the final destination page.
21 22 23 |
# File 'lib/polipus/http.rb', line 21 def fetch_page(url, referer = nil, depth = nil) fetch_pages(url, referer, depth).last end |
#fetch_pages(url, referer = nil, depth = nil) ⇒ Object
Create new Pages from the response of an HTTP request to url, including redirects
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/polipus/http.rb', line 29 def fetch_pages(url, referer = nil, depth = nil) begin url = URI(url) unless url.is_a?(URI) pages = [] get(url, referer) do |response, code, location, redirect_to, response_time| body = response.body.dup if response.to_hash.fetch('content-encoding', [])[0] == 'gzip' gzip = Zlib::GzipReader.new(StringIO.new(body)) body = gzip.read end pages << Page.new(location, :body => response.body.dup, :code => code, :headers => response.to_hash, :referer => referer, :depth => depth, :redirect_to => redirect_to, :response_time => response_time) end return pages rescue StandardError => e if verbose? puts e.inspect puts e.backtrace end return [Page.new(url, :error => e)] end end |
#open_timeout ⇒ Object
HTTP open timeout in seconds
108 109 110 |
# File 'lib/polipus/http.rb', line 108 def open_timeout @opts[:open_timeout] end |
#proxy_host ⇒ Object
The proxy address string
77 78 79 80 |
# File 'lib/polipus/http.rb', line 77 def proxy_host return proxy_host_port.first unless @opts[:proxy_host_port].nil? @opts[:proxy_host].respond_to?(:call) ? @opts[:proxy_host].call(self) : @opts[:proxy_host] end |
#proxy_host_port ⇒ Object
Shorthand to get proxy info with a single call It returns an array of [‘addr’, port]
94 95 96 |
# File 'lib/polipus/http.rb', line 94 def proxy_host_port @opts[:proxy_host_port].respond_to?(:call) ? @opts[:proxy_host_port].call(self) : @opts[:proxy_host_port] end |
#proxy_port ⇒ Object
The proxy port
85 86 87 88 |
# File 'lib/polipus/http.rb', line 85 def proxy_port return proxy_host_port.last unless @opts[:proxy_host_port].nil? @opts[:proxy_port].respond_to?(:call) ? @opts[:proxy_port].call(self) : @opts[:proxy_port] end |
#read_timeout ⇒ Object
HTTP read timeout in seconds
101 102 103 |
# File 'lib/polipus/http.rb', line 101 def read_timeout @opts[:read_timeout] end |
#redirect_limit ⇒ Object
The maximum number of redirects to follow
61 62 63 |
# File 'lib/polipus/http.rb', line 61 def redirect_limit @opts[:redirect_limit] || REDIRECT_LIMIT end |
#user_agent ⇒ Object
The user-agent string which will be sent with each request, or nil if no such option is set
69 70 71 |
# File 'lib/polipus/http.rb', line 69 def user_agent @opts[:user_agent] end |