Module: BitBucket::Request
- Included in:
- API
- Defined in:
- lib/bitbucket_rest_api/request.rb,
lib/bitbucket_rest_api/request/oauth.rb,
lib/bitbucket_rest_api/request/basic_auth.rb
Overview
Defined Under Namespace
Classes: BasicAuth, Jsonize, OAuth
Constant Summary
collapse
- METHODS =
[:get, :post, :put, :delete, :patch]
- METHODS_WITH_BODIES =
[ :post, :put, :patch ]
Instance Method Summary
collapse
-
#delete_request(path, params = {}, options = {}) ⇒ Object
-
#get_request(path, params = {}, options = {}) ⇒ Object
-
#patch_request(path, params = {}, options = {}) ⇒ Object
-
#post_request(path, params = {}, options = {}) ⇒ Object
-
#put_request(path, params = {}, options = {}) ⇒ Object
-
#request(method, path, params, options) ⇒ Object
Instance Method Details
#delete_request(path, params = {}, options = {}) ⇒ Object
26
27
28
|
# File 'lib/bitbucket_rest_api/request.rb', line 26
def delete_request(path, params={}, options={})
request(:delete, path, params, options)
end
|
#get_request(path, params = {}, options = {}) ⇒ Object
10
11
12
|
# File 'lib/bitbucket_rest_api/request.rb', line 10
def get_request(path, params={}, options={})
request(:get, path, params, options)
end
|
#patch_request(path, params = {}, options = {}) ⇒ Object
14
15
16
|
# File 'lib/bitbucket_rest_api/request.rb', line 14
def patch_request(path, params={}, options={})
request(:patch, path, params, options)
end
|
#post_request(path, params = {}, options = {}) ⇒ Object
18
19
20
|
# File 'lib/bitbucket_rest_api/request.rb', line 18
def post_request(path, params={}, options={})
request(:post, path, params, options)
end
|
#put_request(path, params = {}, options = {}) ⇒ Object
22
23
24
|
# File 'lib/bitbucket_rest_api/request.rb', line 22
def put_request(path, params={}, options={})
request(:put, path, params, options)
end
|
#request(method, path, params, options) ⇒ Object
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/bitbucket_rest_api/request.rb', line 30
def request(method, path, params, options)
if !METHODS.include?(method)
raise ArgumentError, "unkown http method: #{method}"
end
puts "EXECUTED: #{method} - #{path} with #{params} and #{options}" if ENV['DEBUG']
conn = connection(options)
path = (conn.path_prefix + path).gsub(/\/\//,'/') if conn.path_prefix != '/'
response = conn.send(method) do |request|
case method.to_sym
when *(METHODS - METHODS_WITH_BODIES)
request.body = params.delete('data') if params.has_key?('data')
request.url(path, params)
when *METHODS_WITH_BODIES
request.path = path
request.body = (params) unless params.empty?
end
end
response.body
end
|