2012-08-23 05:19:40 -04:00
|
|
|
module ApiHelpers
|
2012-08-25 13:31:50 -04:00
|
|
|
# Public: Prepend a request path with the path to the API
|
|
|
|
#
|
|
|
|
# path - Path to append
|
|
|
|
# user - User object - If provided, automatically appends private_token query
|
|
|
|
# string for authenticated requests
|
|
|
|
#
|
|
|
|
# Examples
|
|
|
|
#
|
|
|
|
# >> api('/issues')
|
|
|
|
# => "/api/v2/issues"
|
|
|
|
#
|
|
|
|
# >> api('/issues', User.last)
|
|
|
|
# => "/api/v2/issues?private_token=..."
|
|
|
|
#
|
|
|
|
# >> api('/issues?foo=bar', User.last)
|
|
|
|
# => "/api/v2/issues?foo=bar&private_token=..."
|
|
|
|
#
|
|
|
|
# Returns the relative path to the requested API resource
|
|
|
|
def api(path, user = nil)
|
2013-05-14 08:33:31 -04:00
|
|
|
"/api/#{API::API.version}#{path}" +
|
2012-08-25 13:31:50 -04:00
|
|
|
|
|
|
|
# Normalize query string
|
|
|
|
(path.index('?') ? '' : '?') +
|
|
|
|
|
|
|
|
# Append private_token if given a User object
|
2016-05-30 08:06:06 -04:00
|
|
|
if user.respond_to?(:private_token)
|
|
|
|
"&private_token=#{user.private_token}"
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
2012-08-23 05:19:40 -04:00
|
|
|
end
|
|
|
|
|
2015-09-14 11:14:17 -04:00
|
|
|
def ci_api(path, user = nil)
|
|
|
|
"/ci/api/v1/#{path}" +
|
|
|
|
|
|
|
|
# Normalize query string
|
|
|
|
(path.index('?') ? '' : '?') +
|
|
|
|
|
|
|
|
# Append private_token if given a User object
|
2016-05-30 08:06:06 -04:00
|
|
|
if user.respond_to?(:private_token)
|
|
|
|
"&private_token=#{user.private_token}"
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
2015-09-14 11:14:17 -04:00
|
|
|
end
|
|
|
|
|
2012-08-23 05:19:40 -04:00
|
|
|
def json_response
|
2015-05-31 23:03:19 -04:00
|
|
|
@_json_response ||= JSON.parse(response.body)
|
2012-08-23 05:19:40 -04:00
|
|
|
end
|
|
|
|
end
|