07be594378
Avoid multi-line ?: (the ternary operator). Use if/unless instead. See #17478
51 lines
1.2 KiB
Ruby
51 lines
1.2 KiB
Ruby
module ApiHelpers
|
|
# 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)
|
|
"/api/#{API::API.version}#{path}" +
|
|
|
|
# Normalize query string
|
|
(path.index('?') ? '' : '?') +
|
|
|
|
# Append private_token if given a User object
|
|
if user.respond_to?(:private_token)
|
|
"&private_token=#{user.private_token}"
|
|
else
|
|
''
|
|
end
|
|
end
|
|
|
|
def ci_api(path, user = nil)
|
|
"/ci/api/v1/#{path}" +
|
|
|
|
# Normalize query string
|
|
(path.index('?') ? '' : '?') +
|
|
|
|
# Append private_token if given a User object
|
|
if user.respond_to?(:private_token)
|
|
"&private_token=#{user.private_token}"
|
|
else
|
|
''
|
|
end
|
|
end
|
|
|
|
def json_response
|
|
@_json_response ||= JSON.parse(response.body)
|
|
end
|
|
end
|