Sha256: 4c9fff509bcfbf236187c77117d71a7fe36cd2d6b648b9691b647d435c179bd5
Contents?: true
Size: 950 Bytes
Versions: 1
Compression:
Stored size: 950 Bytes
Contents
require 'json' # ApiClient::Parser provides a method to parse the request response. module ApiClient::Parser # Parse the JSON response. # # @param [HTTP] response HTTP object for the request. # @return [Hash] the body parsed. def self.response(response) raise_exception(response) begin object = ::JSON.parse(response.body) rescue ::JSON::ParserError, TypeError object = {} end object end protected def self.raise_exception(response) case response.code.to_i when 401 then raise ApiClient::Exceptions::Unauthorized when 403 then raise ApiClient::Exceptions::Forbidden when 404 then raise ApiClient::Exceptions::NotFound.new(response.request.url) when 500 then raise ApiClient::Exceptions::InternalServerError when 502 then raise ApiClient::Exceptions::BadGateway when 503 then raise ApiClient::Exceptions::ServiceUnavailable else return end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
api-client-1.9.0 | lib/api-client/parser.rb |