Class: Typhoeus::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/typhoeus/request.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url, options = {}) ⇒ Request

Returns a new instance of Request.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/typhoeus/request.rb', line 6

def initialize(url, options = {})
  @method           = options[:method] || :get
  @params           = options[:params]
  @body             = options[:body]
  @timeout          = options[:timeout]
  @headers          = options[:headers] || {}
  @user_agent       = options[:user_agent] || Typhoeus::USER_AGENT
  @cache_timeout    = options[:cache_timeout]
  @follow_location  = options[:follow_location]
  @max_redirects    = options[:max_redirects]
  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

#bodyObject

Returns the value of attribute body.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def body
  @body
end

#cache_timeoutObject

Returns the value of attribute cache_timeout.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def cache_timeout
  @cache_timeout
end

#follow_locationObject

Returns the value of attribute follow_location.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def follow_location
  @follow_location
end

#headersObject

Returns the value of attribute headers.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def headers
  @headers
end

#max_redirectsObject

Returns the value of attribute max_redirects.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def max_redirects
  @max_redirects
end

#methodObject

Returns the value of attribute method.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def method
  @method
end

#paramsObject

Returns the value of attribute params.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def params
  @params
end

#responseObject

Returns the value of attribute response.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def response
  @response
end

#timeoutObject

Returns the value of attribute timeout.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def timeout
  @timeout
end

#urlObject (readonly)

Returns the value of attribute url.



4
5
6
# File 'lib/typhoeus/request.rb', line 4

def url
  @url
end

#user_agentObject

Returns the value of attribute user_agent.



3
4
5
# File 'lib/typhoeus/request.rb', line 3

def user_agent
  @user_agent
end

Class Method Details

.delete(url, params = {}) ⇒ Object



113
114
115
# File 'lib/typhoeus/request.rb', line 113

def self.delete(url, params = {})
  run(url, params.merge(:method => :delete))
end

.get(url, params = {}) ⇒ Object



101
102
103
# File 'lib/typhoeus/request.rb', line 101

def self.get(url, params = {})
  run(url, params.merge(:method => :get))
end

.post(url, params = {}) ⇒ Object



105
106
107
# File 'lib/typhoeus/request.rb', line 105

def self.post(url, params = {})
  run(url, params.merge(:method => :post))
end

.put(url, params = {}) ⇒ Object



109
110
111
# File 'lib/typhoeus/request.rb', line 109

def self.put(url, params = {})
  run(url, params.merge(:method => :put))
end

.run(url, params) ⇒ Object



94
95
96
97
98
99
# File 'lib/typhoeus/request.rb', line 94

def self.run(url, params)
  r = new(url, params)
  Typhoeus::Hydra.hydra.queue r
  Typhoeus::Hydra.hydra.run
  r.response
end

Instance Method Details

#after_complete(&block) ⇒ Object



63
64
65
# File 'lib/typhoeus/request.rb', line 63

def after_complete(&block)
  @after_complete = block
end

#after_complete=(proc) ⇒ Object



67
68
69
# File 'lib/typhoeus/request.rb', line 67

def after_complete=(proc)
  @after_complete = proc
end

#cache_keyObject



90
91
92
# File 'lib/typhoeus/request.rb', line 90

def cache_key
  Digest::SHA1.hexdigest(url)
end

#call_after_completeObject



78
79
80
# File 'lib/typhoeus/request.rb', line 78

def call_after_complete
   @after_complete.call(@handled_response) if @after_complete
end

#call_handlersObject



71
72
73
74
75
76
# File 'lib/typhoeus/request.rb', line 71

def call_handlers
  if @on_complete
    @handled_response = @on_complete.call(response)
    call_after_complete
  end
end

#handled_responseObject



86
87
88
# File 'lib/typhoeus/request.rb', line 86

def handled_response
  @handled_response || response
end

#handled_response=(val) ⇒ Object



82
83
84
# File 'lib/typhoeus/request.rb', line 82

def handled_response=(val)
  @handled_response = val
end

#hostObject



26
27
28
29
30
31
32
33
34
# File 'lib/typhoeus/request.rb', line 26

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



55
56
57
# File 'lib/typhoeus/request.rb', line 55

def on_complete(&block)
  @on_complete = block
end

#on_complete=(proc) ⇒ Object



59
60
61
# File 'lib/typhoeus/request.rb', line 59

def on_complete=(proc)
  @on_complete = proc
end

#params_stringObject



41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/typhoeus/request.rb', line 41

def params_string
  params.keys.sort.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