Sha256: ec4d484a48e74ec7f0e79346160ffb5d4029ece2aa0ee11dcf08dee6ea5c99ff

Contents?: true

Size: 1.91 KB

Versions: 2

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true

module Pinata
  class Resource
    attr_reader :client

    def initialize(client)
      @client = client
    end

    private

    def test_get_request(url)
      handle_response client.test_connection.get(url)
    end

    def upload_post_request(url, body:, headers: {})
      handle_response client.upload_connection.post(url, body, headers)
    end

    def api_get_request(url, params: {}, headers: {})
      handle_response client.api_connection.get(url, params, headers)
    end

    def api_post_request(url, body:, headers: {})
      handle_response client.api_connection.post(url, body, headers)
    end

    def api_patch_request(url, body:, headers: {})
      handle_response client.api_connection.patch(url, body, headers)
    end

    def api_put_request(url, body: {}, headers: {})
      handle_response client.api_connection.put(url, body, headers)
    end

    def api_delete_request(url, params: {}, headers: {})
      handle_response client.api_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
pinata-1.0.5 lib/pinata/resource.rb
pinata-1.0.4 lib/pinata/resource.rb