Module: Bitstamp::Net

Defined in:
lib/bitstamp/net.rb

Class Method Summary collapse

Class Method Details

.curl(verb, path, options = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/bitstamp/net.rb', line 7

def self.curl(verb, path, options={})
  verb = verb.upcase.to_sym

  c = Curl::Easy.new(self.to_uri(path))

  options[:user] = Bitstamp.key
  options[:password] = Bitstamp.secret

  c.post_body = options.to_query

  c.http(verb)

  return c
end

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



40
41
42
43
44
# File 'lib/bitstamp/net.rb', line 40

def self.delete(path, options={})
  request = self.curl(:DELETE, path, options)

  return request
end

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



22
23
24
25
26
# File 'lib/bitstamp/net.rb', line 22

def self.get(path, options={})
  request = self.curl(:GET, path, options)

  return request
end

.patch(path, options = {}) ⇒ Object



34
35
36
37
38
# File 'lib/bitstamp/net.rb', line 34

def self.patch(path, options={})
  request = self.curl(:PATCH, path, options)

  return request
end

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



28
29
30
31
32
# File 'lib/bitstamp/net.rb', line 28

def self.post(path, options={})
  request = self.curl(:POST, path, options)

  return request
end

.to_uri(path) ⇒ Object



3
4
5
# File 'lib/bitstamp/net.rb', line 3

def self.to_uri(path)
  return "https://www.bitstamp.net/api#{path}/"
end