Sha256: 64147d1b36f5dab0e1429dd85147223b3d07c95d07facd8f72ccb779afaadf50
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true module SchoologyClient class Resource attr_reader :client def initialize(client) @client = client end def post_request(url, body:, headers: {}) handle_response @client.connection.post(url, body, headers) end def put_request(url, body:, headers: {}) handle_response @client.connection.put(url, body, headers) end def handle_response(response) case response.status when 400 raise Error, "Your request was malformed. #{response.body["error"]}" when 401 raise Error, "You did not supply valid authentication credentials. #{response.body["error"]}" when 403 raise Error, "You are not allowed to perform that action. #{response.body["error"]}" when 404 raise Error, "No results were found for your request. #{response.body["error"]}" when 429 raise Error, "Your request exceeded the API rate limit. #{response.body["error"]}" when 500 raise Error, "We were unable to perform the request due to server-side problems. #{response.body["error"]}" when 503 raise Error, "You have been rate limited for sending more than 20 requests per second. #{response.body["error"]}" end response end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
strongmind-schoology-client-0.1.5 | lib/schoology_client/resource.rb |