Class: LemonSqueezy::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/lemon_squeezy/client.rb

Class Method Summary collapse

Class Method Details

.build_list_request_params(params) ⇒ Object



70
71
72
73
74
75
76
77
78
79
# File 'lib/lemon_squeezy/client.rb', line 70

def build_list_request_params(params)
  filter_params = params.reject { |k, _| k == :page }
  pagination_params = params[:page] || {}
  pagination_params[:size] = LemonSqueezy.config.default_page_size if pagination_params[:size].nil?

  request_params = {}
  request_params[:filter] = filter_params unless filter_params.empty?
  request_params[:page] = pagination_params unless pagination_params.empty?
  request_params
end

.connectionObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/lemon_squeezy/client.rb', line 5

def connection
  @connection ||= Faraday.new("https://api.lemonsqueezy.com/v1") do |conn|
    conn.request :authorization, :Bearer, LemonSqueezy.config.api_key

    conn.headers = {
      "User-Agent" => "lemonsqueezy/v#{VERSION} (github.com/deanpcmad/lemonsqueezy)",
      "Accept" => "application/vnd.api+json",
      "Content-Type" => "application/vnd.api+json"
    }

    conn.request :json

    conn.response :json
  end
end

.delete_request(url, headers: {}) ⇒ Object



33
34
35
# File 'lib/lemon_squeezy/client.rb', line 33

def delete_request(url, headers: {})
  handle_response connection.delete(url, headers)
end

.get_request(url, params: {}, headers: {}) ⇒ Object



21
22
23
# File 'lib/lemon_squeezy/client.rb', line 21

def get_request(url, params: {}, headers: {})
  handle_response connection.get(url, params, headers)
end

.handle_response(response) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/lemon_squeezy/client.rb', line 37

def handle_response(response)
  case response.status
  when 400
    raise Error, "Error 400: Your request was malformed. '#{response.body["errors"]}'"
  when 401
    raise Error, "Error 401: You did not supply valid authentication credentials. '#{response.body["errors"]}'"
  when 403
    raise Error, "Error 403: You are not allowed to perform that action. '#{response.body["errors"]}'"
  when 404
    raise Error, "Error 404: No results were found for your request. '#{response.body["errors"]}'"
  when 409
    raise Error, "Error 409: Your request was a conflict. '#{response.body["errors"]}'"
  when 429
    raise Error, "Error 429: Your request exceeded the API rate limit. '#{response.body["errors"]}'"
  when 422
    raise Error, "Error 422: Unprocessable Entity. '#{response.body["errors"]}'"
  when 500
    raise Error, "Error 500: We were unable to perform the request due to server-side problems. '#{response.body["errors"]}'"
  when 503
    raise Error, "Error 503: You have been rate limited for sending more than 20 requests per second. '#{response.body["errors"]}'"
  when 501
    raise Error, "Error 501: This resource has not been implemented. '#{response.body["errors"]}'"
  when 204
    return true
  end

  if response.body && response.body["error"]
    raise Error, "Error #{response.body["error"]["code"]} - #{response.body["errors"]["message"]}"
  end

  response
end

.patch_request(url, body:, headers: {}) ⇒ Object



29
30
31
# File 'lib/lemon_squeezy/client.rb', line 29

def patch_request(url, body:, headers: {})
  handle_response connection.patch(url, body, headers)
end

.post_request(url, body: {}, headers: {}) ⇒ Object



25
26
27
# File 'lib/lemon_squeezy/client.rb', line 25

def post_request(url, body: {}, headers: {})
  handle_response connection.post(url, body, headers)
end