Sha256: d411cec07fa3289a7b0a387b6f8fee7859df4088cd699b8297d9572a1e4eefe3
Contents?: true
Size: 1.6 KB
Versions: 2
Compression:
Stored size: 1.6 KB
Contents
module Vultr class Resource attr_reader :client def initialize(client) @client = client end private def get_request(url, params: {}, headers: {}) handle_response client.connection.get(url, params, headers) end def post_request(url, body:, headers: {}) handle_response client.connection.post(url, body, headers) end def patch_request(url, body:, headers: {}) handle_response client.connection.patch(url, body, headers) end def put_request(url, body:, headers: {}) handle_response client.connection.put(url, body, headers) end def delete_request(url, params: {}, headers: {}) handle_response client.connection.delete(url, params, 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vultr-2.0.0 | lib/vultr/resource.rb |
vultr-1.0.0 | lib/vultr/resource.rb |