Class: REST::Connection

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

Instance Method Summary collapse

Constructor Details

#initialize(base_url, args = {}) ⇒ Connection

Returns a new instance of Connection.



7
8
9
10
11
12
# File 'lib/rest.rb', line 7

def initialize(base_url, args = {})
	@base_url = base_url
	@username = args['username']
	@password = args['password']
	@app_id   = args['app_id']
end

Instance Method Details

#get(resource, args = nil) ⇒ Object



14
15
16
# File 'lib/rest.rb', line 14

def get(resource, args = nil)
	request(resource, "get", args)
end

#post(resource, args = nil) ⇒ Object



18
19
20
# File 'lib/rest.rb', line 18

def post(resource, args = nil)
	request(resource, "post", args)
end

#request(resource, method = "get", args = nil) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/rest.rb', line 22

def request(resource, method = "get", args = nil)
	url = URI.join(@base_url, resource)

	if args = args.update('appid' => @app_id)
		# TODO: What about keys without value?
		url.query = args.map { |k,v| "%s=%s" % [URI.encode(k), URI.encode(v)] }.join("&")
	end
				
	case method
	when "get"
		req = Net::HTTP::Get.new(url.request_uri)
	when "post"
		req = Net::HTTP::Post.new(url.request_uri)
	end

	if @username and @password
		req.basic_auth(@username, @password)
	end

	http = Net::HTTP.new(url.host, url.port)
	http.use_ssl = (url.port == 443)

	res = http.start() { |conn| conn.request(req) }
	res.body
end