api_resource.rb
1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
require 'syspro/syspro_object'
require 'syspro/api_operations/request'
module Syspro
class ApiResource < SysproObject
include Syspro::ApiOperations::Request
def self.class_name
name.split('::')[-1]
end
def self.resource_url
if self == ApiResource
raise NotImplementedError, 'APIResource is an abstract class. You should perform actions on its subclasses (Charge, Customer, etc.)'
end
"/#{CGI.escape(class_name.downcase)}"
end
def handle_errors(resp)
body = resp[0].http_body
raise AuthenticationError, body if body =~ /^(ERROR: The supplied UserID is invalid.)/
raise SysproError, body if body =~ /^(ERROR)/
end
def refresh
resp, opts = request(:get, resource_url, @retrieve_params)
initialize_from(resp.data, opts)
end
def self.retrieve(id, opts = {})
opts = Util.normalize_opts(opts)
instance = new(id, opts)
instance.refresh
instance
end
end
end