Class: Typhoeus::Request
- Inherits:
-
Object
- Object
- Typhoeus::Request
- Defined in:
- lib/typhoeus/request.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#cache_timeout ⇒ Object
Returns the value of attribute cache_timeout.
-
#disable_ssl_peer_verification ⇒ Object
Returns the value of attribute disable_ssl_peer_verification.
-
#follow_location ⇒ Object
Returns the value of attribute follow_location.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#max_redirects ⇒ Object
Returns the value of attribute max_redirects.
-
#method ⇒ Object
Returns the value of attribute method.
-
#params ⇒ Object
Returns the value of attribute params.
-
#proxy ⇒ Object
Returns the value of attribute proxy.
-
#response ⇒ Object
Returns the value of attribute response.
-
#ssl_cacert ⇒ Object
Returns the value of attribute ssl_cacert.
-
#ssl_capath ⇒ Object
Returns the value of attribute ssl_capath.
-
#ssl_cert ⇒ Object
Returns the value of attribute ssl_cert.
-
#ssl_cert_type ⇒ Object
Returns the value of attribute ssl_cert_type.
-
#ssl_key ⇒ Object
Returns the value of attribute ssl_key.
-
#ssl_key_password ⇒ Object
Returns the value of attribute ssl_key_password.
-
#ssl_key_type ⇒ Object
Returns the value of attribute ssl_key_type.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
-
#user_agent ⇒ Object
Returns the value of attribute user_agent.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Class Method Summary collapse
- .delete(url, params = {}) ⇒ Object
- .get(url, params = {}) ⇒ Object
- .head(url, params = {}) ⇒ Object
- .post(url, params = {}) ⇒ Object
- .put(url, params = {}) ⇒ Object
- .run(url, params) ⇒ Object
Instance Method Summary collapse
- #after_complete(&block) ⇒ Object
- #after_complete=(proc) ⇒ Object
- #cache_key ⇒ Object
- #call_after_complete ⇒ Object
- #call_handlers ⇒ Object
- #handled_response ⇒ Object
- #handled_response=(val) ⇒ Object
- #host ⇒ Object
-
#initialize(url, options = {}) ⇒ Request
constructor
Initialize a new Request.
- #on_complete(&block) ⇒ Object
- #on_complete=(proc) ⇒ Object
- #params_string ⇒ Object
Constructor Details
#initialize(url, options = {}) ⇒ Request
Initialize a new Request
Options:
-
url
: Endpoint (URL) of the request -
options
: A hash containing options among :
** :method
: :get (default) / :post / :put ** :params
: params as a Hash ** :body
** :timeout
: timeout (ms) ** :headers
: headers as Hash ** :user_agent
: user agent (string) ** :cache_timeout
: cache timeout (ms) ** :follow_location ** :max_redirects ** :proxy ** :disable_ssl_peer_verification ** :ssl_cert ** :ssl_cert_type ** :ssl_key ** :ssl_key_type ** :ssl_key_password ** :ssl_cacert ** :ssl_capath ** :verbose
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/typhoeus/request.rb', line 33 def initialize(url, = {}) @method = [:method] || :get @params = [:params] @body = [:body] @timeout = [:timeout] @headers = [:headers] || {} @user_agent = [:user_agent] || Typhoeus::USER_AGENT @cache_timeout = [:cache_timeout] @follow_location = [:follow_location] @max_redirects = [:max_redirects] @proxy = [:proxy] @disable_ssl_peer_verification = [:disable_ssl_peer_verification] @ssl_cert = [:ssl_cert] @ssl_cert_type = [:ssl_cert_type] @ssl_key = [:ssl_key] @ssl_key_type = [:ssl_key_type] @ssl_key_password = [:ssl_key_password] @ssl_cacert = [:ssl_cacert] @ssl_capath = [:ssl_capath] @verbose = [:verbose] if @method == :post @url = url else @url = @params ? "#{url}?#{params_string}" : url end @on_complete = nil @after_complete = nil @handled_response = nil end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def body @body end |
#cache_timeout ⇒ Object
Returns the value of attribute cache_timeout.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def cache_timeout @cache_timeout end |
#disable_ssl_peer_verification ⇒ Object
Returns the value of attribute disable_ssl_peer_verification.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def disable_ssl_peer_verification @disable_ssl_peer_verification end |
#follow_location ⇒ Object
Returns the value of attribute follow_location.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def follow_location @follow_location end |
#headers ⇒ Object
Returns the value of attribute headers.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def headers @headers end |
#max_redirects ⇒ Object
Returns the value of attribute max_redirects.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def max_redirects @max_redirects end |
#method ⇒ Object
Returns the value of attribute method.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def method @method end |
#params ⇒ Object
Returns the value of attribute params.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def params @params end |
#proxy ⇒ Object
Returns the value of attribute proxy.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def proxy @proxy end |
#response ⇒ Object
Returns the value of attribute response.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def response @response end |
#ssl_cacert ⇒ Object
Returns the value of attribute ssl_cacert.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_cacert @ssl_cacert end |
#ssl_capath ⇒ Object
Returns the value of attribute ssl_capath.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_capath @ssl_capath end |
#ssl_cert ⇒ Object
Returns the value of attribute ssl_cert.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_cert @ssl_cert end |
#ssl_cert_type ⇒ Object
Returns the value of attribute ssl_cert_type.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_cert_type @ssl_cert_type end |
#ssl_key ⇒ Object
Returns the value of attribute ssl_key.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_key @ssl_key end |
#ssl_key_password ⇒ Object
Returns the value of attribute ssl_key_password.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_key_password @ssl_key_password end |
#ssl_key_type ⇒ Object
Returns the value of attribute ssl_key_type.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def ssl_key_type @ssl_key_type end |
#timeout ⇒ Object
Returns the value of attribute timeout.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def timeout @timeout end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
6 7 8 |
# File 'lib/typhoeus/request.rb', line 6 def url @url end |
#user_agent ⇒ Object
Returns the value of attribute user_agent.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def user_agent @user_agent end |
#verbose ⇒ Object
Returns the value of attribute verbose.
3 4 5 |
# File 'lib/typhoeus/request.rb', line 3 def verbose @verbose end |
Class Method Details
.delete(url, params = {}) ⇒ Object
151 152 153 |
# File 'lib/typhoeus/request.rb', line 151 def self.delete(url, params = {}) run(url, params.merge(:method => :delete)) end |
.get(url, params = {}) ⇒ Object
139 140 141 |
# File 'lib/typhoeus/request.rb', line 139 def self.get(url, params = {}) run(url, params.merge(:method => :get)) end |
.head(url, params = {}) ⇒ Object
155 156 157 |
# File 'lib/typhoeus/request.rb', line 155 def self.head(url, params = {}) run(url, params.merge(:method => :head)) end |
.post(url, params = {}) ⇒ Object
143 144 145 |
# File 'lib/typhoeus/request.rb', line 143 def self.post(url, params = {}) run(url, params.merge(:method => :post)) end |
.put(url, params = {}) ⇒ Object
147 148 149 |
# File 'lib/typhoeus/request.rb', line 147 def self.put(url, params = {}) run(url, params.merge(:method => :put)) end |
Instance Method Details
#after_complete(&block) ⇒ Object
101 102 103 |
# File 'lib/typhoeus/request.rb', line 101 def after_complete(&block) @after_complete = block end |
#after_complete=(proc) ⇒ Object
105 106 107 |
# File 'lib/typhoeus/request.rb', line 105 def after_complete=(proc) @after_complete = proc end |
#cache_key ⇒ Object
128 129 130 |
# File 'lib/typhoeus/request.rb', line 128 def cache_key Digest::SHA1.hexdigest(url) end |
#call_after_complete ⇒ Object
116 117 118 |
# File 'lib/typhoeus/request.rb', line 116 def call_after_complete @after_complete.call(@handled_response) if @after_complete end |
#call_handlers ⇒ Object
109 110 111 112 113 114 |
# File 'lib/typhoeus/request.rb', line 109 def call_handlers if @on_complete @handled_response = @on_complete.call(response) call_after_complete end end |
#handled_response ⇒ Object
124 125 126 |
# File 'lib/typhoeus/request.rb', line 124 def handled_response @handled_response || response end |
#handled_response=(val) ⇒ Object
120 121 122 |
# File 'lib/typhoeus/request.rb', line 120 def handled_response=(val) @handled_response = val end |
#host ⇒ Object
64 65 66 67 68 69 70 71 72 |
# File 'lib/typhoeus/request.rb', line 64 def host slash_location = @url.index('/', 8) if slash_location @url.slice(0, slash_location) else query_string_location = @url.index('?') return query_string_location ? @url.slice(0, query_string_location) : @url end end |
#on_complete(&block) ⇒ Object
93 94 95 |
# File 'lib/typhoeus/request.rb', line 93 def on_complete(&block) @on_complete = block end |
#on_complete=(proc) ⇒ Object
97 98 99 |
# File 'lib/typhoeus/request.rb', line 97 def on_complete=(proc) @on_complete = proc end |
#params_string ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/typhoeus/request.rb', line 79 def params_string params.keys.sort { |a, b| a.to_s <=> b.to_s }.collect do |k| value = params[k] if value.is_a? Hash value.keys.collect {|sk| Rack::Utils.escape("#{k}[#{sk}]") + "=" + Rack::Utils.escape(value[sk].to_s)} elsif value.is_a? Array key = Rack::Utils.escape(k.to_s) value.collect { |v| "#{key}=#{Rack::Utils.escape(v.to_s)}" }.join('&') else "#{Rack::Utils.escape(k.to_s)}=#{Rack::Utils.escape(params[k].to_s)}" end end.flatten.join("&") end |