Class: Twitter::Request

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/twitter/request.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, method, path, options = {}) ⇒ Request

Returns a new instance of Request.



25
26
27
# File 'lib/twitter/request.rb', line 25

def initialize(client, method, path, options={})
  @client, @method, @path, @options = client, method, path, options
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



21
22
23
# File 'lib/twitter/request.rb', line 21

def client
  @client
end

#methodObject (readonly)

Returns the value of attribute method.



21
22
23
# File 'lib/twitter/request.rb', line 21

def method
  @method
end

#optionsObject (readonly)

Returns the value of attribute options.



21
22
23
# File 'lib/twitter/request.rb', line 21

def options
  @options
end

#pathObject (readonly)

Returns the value of attribute path.



21
22
23
# File 'lib/twitter/request.rb', line 21

def path
  @path
end

Class Method Details

.delete(client, path, options = {}) ⇒ Object



17
18
19
# File 'lib/twitter/request.rb', line 17

def self.delete(client, path, options={})
  new(client, :delete, path, options).perform
end

.get(client, path, options = {}) ⇒ Object



5
6
7
# File 'lib/twitter/request.rb', line 5

def self.get(client, path, options={})
  new(client, :get, path, options).perform
end

.post(client, path, options = {}) ⇒ Object



9
10
11
# File 'lib/twitter/request.rb', line 9

def self.post(client, path, options={})
  new(client, :post, path, options).perform
end

.put(client, path, options = {}) ⇒ Object



13
14
15
# File 'lib/twitter/request.rb', line 13

def self.put(client, path, options={})
  new(client, :put, path, options).perform
end

Instance Method Details

#performObject



41
42
43
# File 'lib/twitter/request.rb', line 41

def perform
  Twitter.make_friendly(send("perform_#{method}"))
end

#uriObject



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/twitter/request.rb', line 29

def uri
  @uri ||= begin
    uri = URI.parse(path)

    if options[:query] && options[:query] != {}
      uri.query = to_query(options[:query])
    end

    uri.to_s
  end
end