jamm 1.0.13 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/jamm/api/api/payment_api.rb +8 -8
- data/lib/jamm/api/models/apiv1_status.rb +239 -0
- data/lib/jamm/api/models/v1_add_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_add_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_bank_information.rb +217 -0
- data/lib/jamm/api/models/v1_buyer.rb +9 -1
- data/lib/jamm/api/models/v1_charge.rb +1 -1
- data/lib/jamm/api/models/v1_charge_message_status.rb +2 -1
- data/lib/jamm/api/models/v1_charge_result.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_with_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_with_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_without_charge_request.rb +1 -0
- data/lib/jamm/api/models/v1_create_contract_without_charge_response.rb +1 -0
- data/lib/jamm/api/models/v1_customer.rb +12 -7
- data/lib/jamm/api/models/v1_event_type.rb +2 -1
- data/lib/jamm/api/models/v1_kyc_status.rb +44 -0
- data/lib/jamm/api/models/v1_payment_authorization_status.rb +42 -0
- data/lib/jamm/api/models/v1_withdraw_request.rb +1 -0
- data/lib/jamm/api/models/v1_withdraw_response.rb +1 -0
- data/lib/jamm/api.rb +4 -0
- data/lib/jamm/charge.rb +7 -1
- data/lib/jamm/contract.rb +5 -1
- data/lib/jamm/customer.rb +12 -2
- data/lib/jamm/errors.rb +94 -0
- data/lib/jamm/healthcheck.rb +2 -0
- data/lib/jamm/version.rb +1 -1
- data/lib/jamm/webhook.rb +37 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6078aaa5f3504c091900869e1d978883fc7b125e6ce2eb101330f8a124d780f2
|
4
|
+
data.tar.gz: 8e2b2876e53ca8a7da4d1c9e0f52d02e5e2607cc74654b3cee7fa4eb39662b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20bd0ebbe9f53d0a57a6319921a6fcdfb7de101e007d0325d6abcec25be72ad0617bec80e837937447231dad4d97ee3c90a7ea0c35483dce52f1d6b079a7a627
|
7
|
+
data.tar.gz: aa38acca7378be10d5b71dedd66b03b1f3a675a98a654e0fbcade89ca55c5e91fd54aacd81670d34dc7eb86a2545a805e01664270a94b59031b9c3070f8b6fc1
|
data/Gemfile.lock
CHANGED
@@ -22,7 +22,7 @@ module Api
|
|
22
22
|
|
23
23
|
# Use existing contract with charge
|
24
24
|
# Use existing contract with charge
|
25
|
-
# @param body [AddChargeRequest]
|
25
|
+
# @param body [AddChargeRequest] This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
26
26
|
# @param [Hash] opts the optional parameters
|
27
27
|
# @return [AddChargeResponse]
|
28
28
|
def add_charge(body, opts = {})
|
@@ -32,7 +32,7 @@ module Api
|
|
32
32
|
|
33
33
|
# Use existing contract with charge
|
34
34
|
# Use existing contract with charge
|
35
|
-
# @param body [AddChargeRequest]
|
35
|
+
# @param body [AddChargeRequest] This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
36
36
|
# @param [Hash] opts the optional parameters
|
37
37
|
# @return [Array<(AddChargeResponse, Integer, Hash)>] AddChargeResponse data, response status code and response headers
|
38
38
|
def add_charge_with_http_info(body, opts = {})
|
@@ -83,7 +83,7 @@ module Api
|
|
83
83
|
|
84
84
|
# Create a contract with initial charge
|
85
85
|
# Create a contract with initial charge
|
86
|
-
# @param body [CreateContractWithChargeRequest]
|
86
|
+
# @param body [CreateContractWithChargeRequest] Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
87
87
|
# @param [Hash] opts the optional parameters
|
88
88
|
# @return [CreateContractWithChargeResponse]
|
89
89
|
def create_contract_with_charge(body, opts = {})
|
@@ -93,7 +93,7 @@ module Api
|
|
93
93
|
|
94
94
|
# Create a contract with initial charge
|
95
95
|
# Create a contract with initial charge
|
96
|
-
# @param body [CreateContractWithChargeRequest]
|
96
|
+
# @param body [CreateContractWithChargeRequest] Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
97
97
|
# @param [Hash] opts the optional parameters
|
98
98
|
# @return [Array<(CreateContractWithChargeResponse, Integer, Hash)>] CreateContractWithChargeResponse data, response status code and response headers
|
99
99
|
def create_contract_with_charge_with_http_info(body, opts = {})
|
@@ -144,7 +144,7 @@ module Api
|
|
144
144
|
|
145
145
|
# Create a contract without initial charge (contract only)
|
146
146
|
# Create a contract without initial charge (contract only)
|
147
|
-
# @param body [CreateContractWithoutChargeRequest]
|
147
|
+
# @param body [CreateContractWithoutChargeRequest] Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
148
148
|
# @param [Hash] opts the optional parameters
|
149
149
|
# @return [CreateContractWithoutChargeResponse]
|
150
150
|
def create_contract_without_charge(body, opts = {})
|
@@ -154,7 +154,7 @@ module Api
|
|
154
154
|
|
155
155
|
# Create a contract without initial charge (contract only)
|
156
156
|
# Create a contract without initial charge (contract only)
|
157
|
-
# @param body [CreateContractWithoutChargeRequest]
|
157
|
+
# @param body [CreateContractWithoutChargeRequest] Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
158
158
|
# @param [Hash] opts the optional parameters
|
159
159
|
# @return [Array<(CreateContractWithoutChargeResponse, Integer, Hash)>] CreateContractWithoutChargeResponse data, response status code and response headers
|
160
160
|
def create_contract_without_charge_with_http_info(body, opts = {})
|
@@ -327,7 +327,7 @@ module Api
|
|
327
327
|
|
328
328
|
# Withdraw money from customer immediately, without redirect
|
329
329
|
# This call is synchronous. The money will be withdrawn immediately.
|
330
|
-
# @param body [WithdrawRequest]
|
330
|
+
# @param body [WithdrawRequest] This message represents a request to withdraw money from a customer. It contains the customer ID and the amount to withdraw.
|
331
331
|
# @param [Hash] opts the optional parameters
|
332
332
|
# @return [WithdrawResponse]
|
333
333
|
def withdraw(body, opts = {})
|
@@ -337,7 +337,7 @@ module Api
|
|
337
337
|
|
338
338
|
# Withdraw money from customer immediately, without redirect
|
339
339
|
# This call is synchronous. The money will be withdrawn immediately.
|
340
|
-
# @param body [WithdrawRequest]
|
340
|
+
# @param body [WithdrawRequest] This message represents a request to withdraw money from a customer. It contains the customer ID and the amount to withdraw.
|
341
341
|
# @param [Hash] opts the optional parameters
|
342
342
|
# @return [Array<(WithdrawResponse, Integer, Hash)>] WithdrawResponse data, response status code and response headers
|
343
343
|
def withdraw_with_http_info(body, opts = {})
|
@@ -0,0 +1,239 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class Apiv1Status
|
18
|
+
attr_accessor :payment, :kyc
|
19
|
+
|
20
|
+
class EnumAttributeValidator
|
21
|
+
attr_reader :datatype, :allowable_values
|
22
|
+
|
23
|
+
def initialize(datatype, allowable_values)
|
24
|
+
@allowable_values = allowable_values.map do |value|
|
25
|
+
case datatype.to_s
|
26
|
+
when /Integer/i
|
27
|
+
value.to_i
|
28
|
+
when /Float/i
|
29
|
+
value.to_f
|
30
|
+
else
|
31
|
+
value
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def valid?(value)
|
37
|
+
!value || allowable_values.include?(value)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
42
|
+
def self.attribute_map
|
43
|
+
{
|
44
|
+
:payment => :payment,
|
45
|
+
:kyc => :kyc
|
46
|
+
}
|
47
|
+
end
|
48
|
+
|
49
|
+
# Returns all the JSON keys this model knows about
|
50
|
+
def self.acceptable_attributes
|
51
|
+
attribute_map.values
|
52
|
+
end
|
53
|
+
|
54
|
+
# Attribute type mapping.
|
55
|
+
def self.openapi_types
|
56
|
+
{
|
57
|
+
:payment => :PaymentAuthorizationStatus,
|
58
|
+
:kyc => :KycStatus
|
59
|
+
}
|
60
|
+
end
|
61
|
+
|
62
|
+
# List of attributes with nullable: true
|
63
|
+
def self.openapi_nullable
|
64
|
+
Set.new([])
|
65
|
+
end
|
66
|
+
|
67
|
+
# Initializes the object
|
68
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
69
|
+
def initialize(attributes = {})
|
70
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::Apiv1Status` initialize method' unless attributes.is_a?(Hash)
|
71
|
+
|
72
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
73
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
74
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::Apiv1Status`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
|
75
|
+
|
76
|
+
h[k.to_sym] = v
|
77
|
+
end
|
78
|
+
|
79
|
+
self.payment = if attributes.key?(:payment)
|
80
|
+
attributes[:payment]
|
81
|
+
else
|
82
|
+
'PAYMENT_AUTHORIZATION_STATUS_UNSPECIFIED'
|
83
|
+
end
|
84
|
+
|
85
|
+
self.kyc = if attributes.key?(:kyc)
|
86
|
+
attributes[:kyc]
|
87
|
+
else
|
88
|
+
'KYC_STATUS_UNSPECIFIED'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
93
|
+
# @return Array for valid properties with the reasons
|
94
|
+
def list_invalid_properties
|
95
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
96
|
+
[]
|
97
|
+
end
|
98
|
+
|
99
|
+
# Check to see if the all the properties in the model are valid
|
100
|
+
# @return true if the model is valid
|
101
|
+
def valid?
|
102
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
103
|
+
true
|
104
|
+
end
|
105
|
+
|
106
|
+
# Checks equality by comparing each attribute.
|
107
|
+
# @param [Object] Object to be compared
|
108
|
+
def ==(other)
|
109
|
+
return true if equal?(other)
|
110
|
+
|
111
|
+
self.class == other.class &&
|
112
|
+
payment == other.payment &&
|
113
|
+
kyc == other.kyc
|
114
|
+
end
|
115
|
+
|
116
|
+
# @see the `==` method
|
117
|
+
# @param [Object] Object to be compared
|
118
|
+
def eql?(other)
|
119
|
+
self == other
|
120
|
+
end
|
121
|
+
|
122
|
+
# Calculates hash code according to all attributes.
|
123
|
+
# @return [Integer] Hash code
|
124
|
+
def hash
|
125
|
+
[payment, kyc].hash
|
126
|
+
end
|
127
|
+
|
128
|
+
# Builds the object from hash
|
129
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
130
|
+
# @return [Object] Returns the model itself
|
131
|
+
def self.build_from_hash(attributes)
|
132
|
+
return nil unless attributes.is_a?(Hash)
|
133
|
+
|
134
|
+
attributes = attributes.transform_keys(&:to_sym)
|
135
|
+
transformed_hash = {}
|
136
|
+
openapi_types.each_pair do |key, type|
|
137
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
138
|
+
transformed_hash[key.to_s] = nil
|
139
|
+
elsif type =~ /\AArray<(.*)>/i
|
140
|
+
# check to ensure the input is an array given that the attribute
|
141
|
+
# is documented as an array but the input is not
|
142
|
+
transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
|
143
|
+
elsif !attributes[attribute_map[key]].nil?
|
144
|
+
transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
|
145
|
+
end
|
146
|
+
end
|
147
|
+
new(transformed_hash)
|
148
|
+
end
|
149
|
+
|
150
|
+
# Deserializes the data based on type
|
151
|
+
# @param string type Data type
|
152
|
+
# @param string value Value to be deserialized
|
153
|
+
# @return [Object] Deserialized data
|
154
|
+
def self._deserialize(type, value)
|
155
|
+
case type.to_sym
|
156
|
+
when :Time
|
157
|
+
Time.parse(value)
|
158
|
+
when :Date
|
159
|
+
Date.parse(value)
|
160
|
+
when :String
|
161
|
+
value.to_s
|
162
|
+
when :Integer
|
163
|
+
value.to_i
|
164
|
+
when :Float
|
165
|
+
value.to_f
|
166
|
+
when :Boolean
|
167
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
168
|
+
true
|
169
|
+
else
|
170
|
+
false
|
171
|
+
end
|
172
|
+
when :Object
|
173
|
+
# generic object (usually a Hash), return directly
|
174
|
+
value
|
175
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
176
|
+
inner_type = Regexp.last_match[:inner_type]
|
177
|
+
value.map { |v| _deserialize(inner_type, v) }
|
178
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
179
|
+
k_type = Regexp.last_match[:k_type]
|
180
|
+
v_type = Regexp.last_match[:v_type]
|
181
|
+
{}.tap do |hash|
|
182
|
+
value.each do |k, v|
|
183
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
184
|
+
end
|
185
|
+
end
|
186
|
+
else # model
|
187
|
+
# models (e.g. Pet) or oneOf
|
188
|
+
klass = Api.const_get(type)
|
189
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
# Returns the string representation of the object
|
194
|
+
# @return [String] String presentation of the object
|
195
|
+
def to_s
|
196
|
+
to_hash.to_s
|
197
|
+
end
|
198
|
+
|
199
|
+
# to_body is an alias to to_hash (backward compatibility)
|
200
|
+
# @return [Hash] Returns the object in the form of hash
|
201
|
+
def to_body
|
202
|
+
to_hash
|
203
|
+
end
|
204
|
+
|
205
|
+
# Returns the object in the form of hash
|
206
|
+
# @return [Hash] Returns the object in the form of hash
|
207
|
+
def to_hash
|
208
|
+
hash = {}
|
209
|
+
self.class.attribute_map.each_pair do |attr, param|
|
210
|
+
value = send(attr)
|
211
|
+
if value.nil?
|
212
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
213
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
214
|
+
end
|
215
|
+
|
216
|
+
hash[param] = _to_hash(value)
|
217
|
+
end
|
218
|
+
hash
|
219
|
+
end
|
220
|
+
|
221
|
+
# Outputs non-array value in the form of hash
|
222
|
+
# For object, use to_hash. Otherwise, just return the value
|
223
|
+
# @param [Object] value Any valid value
|
224
|
+
# @return [Hash] Returns the value in the form of hash
|
225
|
+
def _to_hash(value)
|
226
|
+
if value.is_a?(Array)
|
227
|
+
value.compact.map { |v| _to_hash(v) }
|
228
|
+
elsif value.is_a?(Hash)
|
229
|
+
{}.tap do |hash|
|
230
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
231
|
+
end
|
232
|
+
elsif value.respond_to? :to_hash
|
233
|
+
value.to_hash
|
234
|
+
else
|
235
|
+
value
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|
239
|
+
end
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# This message represents a request to add a charge to an existing customer. It contains all necessary information to process a new payment transaction.
|
17
18
|
class AddChargeRequest
|
18
19
|
attr_accessor :customer, :charge, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# This message represents the response after processing an AddChargeRequest. It contains information about the created charge, customer details, and a payment link that can be used to complete the payment if needed.
|
17
18
|
class AddChargeResponse
|
18
19
|
attr_accessor :charge, :customer, :payment_link
|
19
20
|
|
@@ -0,0 +1,217 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class BankInformation
|
18
|
+
attr_accessor :account_number, :bank_name, :branch_name
|
19
|
+
|
20
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
21
|
+
def self.attribute_map
|
22
|
+
{
|
23
|
+
:account_number => :accountNumber,
|
24
|
+
:bank_name => :bankName,
|
25
|
+
:branch_name => :branchName
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
# Returns all the JSON keys this model knows about
|
30
|
+
def self.acceptable_attributes
|
31
|
+
attribute_map.values
|
32
|
+
end
|
33
|
+
|
34
|
+
# Attribute type mapping.
|
35
|
+
def self.openapi_types
|
36
|
+
{
|
37
|
+
:account_number => :String,
|
38
|
+
:bank_name => :String,
|
39
|
+
:branch_name => :String
|
40
|
+
}
|
41
|
+
end
|
42
|
+
|
43
|
+
# List of attributes with nullable: true
|
44
|
+
def self.openapi_nullable
|
45
|
+
Set.new([])
|
46
|
+
end
|
47
|
+
|
48
|
+
# Initializes the object
|
49
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
50
|
+
def initialize(attributes = {})
|
51
|
+
raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::BankInformation` initialize method' unless attributes.is_a?(Hash)
|
52
|
+
|
53
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
54
|
+
attributes = attributes.each_with_object({}) do |(k, v), h|
|
55
|
+
raise ArgumentError, "`#{k}` is not a valid attribute in `Api::BankInformation`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
|
56
|
+
|
57
|
+
h[k.to_sym] = v
|
58
|
+
end
|
59
|
+
|
60
|
+
self.account_number = attributes[:account_number] if attributes.key?(:account_number)
|
61
|
+
|
62
|
+
self.bank_name = attributes[:bank_name] if attributes.key?(:bank_name)
|
63
|
+
|
64
|
+
return unless attributes.key?(:branch_name)
|
65
|
+
|
66
|
+
self.branch_name = attributes[:branch_name]
|
67
|
+
end
|
68
|
+
|
69
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
70
|
+
# @return Array for valid properties with the reasons
|
71
|
+
def list_invalid_properties
|
72
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
73
|
+
[]
|
74
|
+
end
|
75
|
+
|
76
|
+
# Check to see if the all the properties in the model are valid
|
77
|
+
# @return true if the model is valid
|
78
|
+
def valid?
|
79
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
80
|
+
true
|
81
|
+
end
|
82
|
+
|
83
|
+
# Checks equality by comparing each attribute.
|
84
|
+
# @param [Object] Object to be compared
|
85
|
+
def ==(other)
|
86
|
+
return true if equal?(other)
|
87
|
+
|
88
|
+
self.class == other.class &&
|
89
|
+
account_number == other.account_number &&
|
90
|
+
bank_name == other.bank_name &&
|
91
|
+
branch_name == other.branch_name
|
92
|
+
end
|
93
|
+
|
94
|
+
# @see the `==` method
|
95
|
+
# @param [Object] Object to be compared
|
96
|
+
def eql?(other)
|
97
|
+
self == other
|
98
|
+
end
|
99
|
+
|
100
|
+
# Calculates hash code according to all attributes.
|
101
|
+
# @return [Integer] Hash code
|
102
|
+
def hash
|
103
|
+
[account_number, bank_name, branch_name].hash
|
104
|
+
end
|
105
|
+
|
106
|
+
# Builds the object from hash
|
107
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
108
|
+
# @return [Object] Returns the model itself
|
109
|
+
def self.build_from_hash(attributes)
|
110
|
+
return nil unless attributes.is_a?(Hash)
|
111
|
+
|
112
|
+
attributes = attributes.transform_keys(&:to_sym)
|
113
|
+
transformed_hash = {}
|
114
|
+
openapi_types.each_pair do |key, type|
|
115
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
116
|
+
transformed_hash[key.to_s] = nil
|
117
|
+
elsif type =~ /\AArray<(.*)>/i
|
118
|
+
# check to ensure the input is an array given that the attribute
|
119
|
+
# is documented as an array but the input is not
|
120
|
+
transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
|
121
|
+
elsif !attributes[attribute_map[key]].nil?
|
122
|
+
transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
|
123
|
+
end
|
124
|
+
end
|
125
|
+
new(transformed_hash)
|
126
|
+
end
|
127
|
+
|
128
|
+
# Deserializes the data based on type
|
129
|
+
# @param string type Data type
|
130
|
+
# @param string value Value to be deserialized
|
131
|
+
# @return [Object] Deserialized data
|
132
|
+
def self._deserialize(type, value)
|
133
|
+
case type.to_sym
|
134
|
+
when :Time
|
135
|
+
Time.parse(value)
|
136
|
+
when :Date
|
137
|
+
Date.parse(value)
|
138
|
+
when :String
|
139
|
+
value.to_s
|
140
|
+
when :Integer
|
141
|
+
value.to_i
|
142
|
+
when :Float
|
143
|
+
value.to_f
|
144
|
+
when :Boolean
|
145
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
146
|
+
true
|
147
|
+
else
|
148
|
+
false
|
149
|
+
end
|
150
|
+
when :Object
|
151
|
+
# generic object (usually a Hash), return directly
|
152
|
+
value
|
153
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
154
|
+
inner_type = Regexp.last_match[:inner_type]
|
155
|
+
value.map { |v| _deserialize(inner_type, v) }
|
156
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
157
|
+
k_type = Regexp.last_match[:k_type]
|
158
|
+
v_type = Regexp.last_match[:v_type]
|
159
|
+
{}.tap do |hash|
|
160
|
+
value.each do |k, v|
|
161
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
else # model
|
165
|
+
# models (e.g. Pet) or oneOf
|
166
|
+
klass = Api.const_get(type)
|
167
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
# Returns the string representation of the object
|
172
|
+
# @return [String] String presentation of the object
|
173
|
+
def to_s
|
174
|
+
to_hash.to_s
|
175
|
+
end
|
176
|
+
|
177
|
+
# to_body is an alias to to_hash (backward compatibility)
|
178
|
+
# @return [Hash] Returns the object in the form of hash
|
179
|
+
def to_body
|
180
|
+
to_hash
|
181
|
+
end
|
182
|
+
|
183
|
+
# Returns the object in the form of hash
|
184
|
+
# @return [Hash] Returns the object in the form of hash
|
185
|
+
def to_hash
|
186
|
+
hash = {}
|
187
|
+
self.class.attribute_map.each_pair do |attr, param|
|
188
|
+
value = send(attr)
|
189
|
+
if value.nil?
|
190
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
191
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
192
|
+
end
|
193
|
+
|
194
|
+
hash[param] = _to_hash(value)
|
195
|
+
end
|
196
|
+
hash
|
197
|
+
end
|
198
|
+
|
199
|
+
# Outputs non-array value in the form of hash
|
200
|
+
# For object, use to_hash. Otherwise, just return the value
|
201
|
+
# @param [Object] value Any valid value
|
202
|
+
# @return [Hash] Returns the value in the form of hash
|
203
|
+
def _to_hash(value)
|
204
|
+
if value.is_a?(Array)
|
205
|
+
value.compact.map { |v| _to_hash(v) }
|
206
|
+
elsif value.is_a?(Hash)
|
207
|
+
{}.tap do |hash|
|
208
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
209
|
+
end
|
210
|
+
elsif value.respond_to? :to_hash
|
211
|
+
value.to_hash
|
212
|
+
else
|
213
|
+
value
|
214
|
+
end
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
@@ -22,6 +22,9 @@ module Api
|
|
22
22
|
# A flag whether Jamm to force KYC for the customer. 初回購入時に購入者に対してKYCを強制するかどうかのフラグです。
|
23
23
|
attr_accessor :force_kyc
|
24
24
|
|
25
|
+
# Phone number of the customer. You can update this value later through the UpdateCustomer endpoint. e.g. - 09012345678 Customerの電話番号。 この値は UpdateCustomer エンドポイントを通じて後で更新できます。
|
26
|
+
attr_accessor :phone
|
27
|
+
|
25
28
|
# Name of the customer. You can update this value later through the UpdateCustomer endpoint. e.g. - John Appleseed - 山田太郎 購入者の氏名。 この値は UpdateCustomer エンドポイントを通じて後で更新できます。
|
26
29
|
attr_accessor :name
|
27
30
|
|
@@ -51,6 +54,7 @@ module Api
|
|
51
54
|
{
|
52
55
|
:email => :email,
|
53
56
|
:force_kyc => :forceKyc,
|
57
|
+
:phone => :phone,
|
54
58
|
:name => :name,
|
55
59
|
:katakana_last_name => :katakanaLastName,
|
56
60
|
:katakana_first_name => :katakanaFirstName,
|
@@ -72,6 +76,7 @@ module Api
|
|
72
76
|
{
|
73
77
|
:email => :String,
|
74
78
|
:force_kyc => :Boolean,
|
79
|
+
:phone => :String,
|
75
80
|
:name => :String,
|
76
81
|
:katakana_last_name => :String,
|
77
82
|
:katakana_first_name => :String,
|
@@ -104,6 +109,8 @@ module Api
|
|
104
109
|
|
105
110
|
self.force_kyc = attributes[:force_kyc] if attributes.key?(:force_kyc)
|
106
111
|
|
112
|
+
self.phone = attributes[:phone] if attributes.key?(:phone)
|
113
|
+
|
107
114
|
self.name = attributes[:name] if attributes.key?(:name)
|
108
115
|
|
109
116
|
self.katakana_last_name = attributes[:katakana_last_name] if attributes.key?(:katakana_last_name)
|
@@ -146,6 +153,7 @@ module Api
|
|
146
153
|
self.class == other.class &&
|
147
154
|
email == other.email &&
|
148
155
|
force_kyc == other.force_kyc &&
|
156
|
+
phone == other.phone &&
|
149
157
|
name == other.name &&
|
150
158
|
katakana_last_name == other.katakana_last_name &&
|
151
159
|
katakana_first_name == other.katakana_first_name &&
|
@@ -165,7 +173,7 @@ module Api
|
|
165
173
|
# Calculates hash code according to all attributes.
|
166
174
|
# @return [Integer] Hash code
|
167
175
|
def hash
|
168
|
-
[email, force_kyc, name, katakana_last_name, katakana_first_name, address, birth_date, gender, expires_at, metadata].hash
|
176
|
+
[email, force_kyc, phone, name, katakana_last_name, katakana_first_name, address, birth_date, gender, expires_at, metadata].hash
|
169
177
|
end
|
170
178
|
|
171
179
|
# Builds the object from hash
|
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module Api
|
17
17
|
# Charge represents a charge information for the customer.
|
18
18
|
class Charge
|
19
|
-
# 決済ID (例:
|
19
|
+
# 決済ID (例: trx-1234567890) @gotags: validate:\"required\"
|
20
20
|
attr_accessor :id
|
21
21
|
|
22
22
|
# Amount of the charge in Japanese Yen. The amount must be the total price of the product/service including tax. 決済金額。日本円で指定してください。 金額は商品/サービスの合計金額 (税込) を指定してください。 @gotags: validate:\"gte=1,lte=500000\"
|
@@ -20,9 +20,10 @@ module Api
|
|
20
20
|
FAILURE = 'STATUS_FAILURE'
|
21
21
|
WAITING_EKYC = 'STATUS_WAITING_EKYC'
|
22
22
|
BLOCKING = 'STATUS_BLOCKING'
|
23
|
+
CANCELLED = 'STATUS_CANCELLED'
|
23
24
|
|
24
25
|
def self.all_vars
|
25
|
-
@all_vars ||= [UNSPECIFIED, SUCCESS, FAILURE, WAITING_EKYC, BLOCKING].freeze
|
26
|
+
@all_vars ||= [UNSPECIFIED, SUCCESS, FAILURE, WAITING_EKYC, BLOCKING, CANCELLED].freeze
|
26
27
|
end
|
27
28
|
|
28
29
|
# Builds the enum from string
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Contains the result of a charge operation.
|
17
18
|
class ChargeResult
|
18
19
|
attr_accessor :charge_id, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :token_id, :metadata, :created_at, :updated_at, :processed_at
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Request message for creating a new contract with an immediate initial charge. This combines contract creation and charging in a single operation.
|
17
18
|
class CreateContractWithChargeRequest
|
18
19
|
attr_accessor :buyer, :charge, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Response message after successfully creating a contract with an initial charge. Contains all information about the created contract, charge, customer, and payment link for further interactions.
|
17
18
|
class CreateContractWithChargeResponse
|
18
19
|
attr_accessor :contract, :charge, :customer, :payment_link
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Request message for creating a new contract without an initial charge. This is typically used when setting up a billing relationship before any actual charges are processed.
|
17
18
|
class CreateContractWithoutChargeRequest
|
18
19
|
attr_accessor :buyer, :redirect
|
19
20
|
|
@@ -14,6 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Api
|
17
|
+
# Response message after successfully creating a contract without a charge. Contains all the information needed for subsequent interactions with the contract and customer.
|
17
18
|
class CreateContractWithoutChargeResponse
|
18
19
|
attr_accessor :contract, :customer, :payment_link
|
19
20
|
|
@@ -16,15 +16,16 @@ require 'time'
|
|
16
16
|
module Api
|
17
17
|
# Customer object.
|
18
18
|
class Customer
|
19
|
-
attr_accessor :id, :email, :
|
19
|
+
attr_accessor :id, :email, :activated, :status, :bank_information, :created_at, :updated_at
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
22
|
def self.attribute_map
|
23
23
|
{
|
24
24
|
:id => :id,
|
25
25
|
:email => :email,
|
26
|
-
:ekyc_completed => :ekycCompleted,
|
27
26
|
:activated => :activated,
|
27
|
+
:status => :status,
|
28
|
+
:bank_information => :bankInformation,
|
28
29
|
:created_at => :createdAt,
|
29
30
|
:updated_at => :updatedAt
|
30
31
|
}
|
@@ -40,8 +41,9 @@ module Api
|
|
40
41
|
{
|
41
42
|
:id => :String,
|
42
43
|
:email => :String,
|
43
|
-
:ekyc_completed => :Boolean,
|
44
44
|
:activated => :Boolean,
|
45
|
+
:status => :Apiv1Status,
|
46
|
+
:bank_information => :BankInformation,
|
45
47
|
:created_at => :Time,
|
46
48
|
:updated_at => :Time
|
47
49
|
}
|
@@ -68,10 +70,12 @@ module Api
|
|
68
70
|
|
69
71
|
self.email = attributes[:email] if attributes.key?(:email)
|
70
72
|
|
71
|
-
self.ekyc_completed = attributes[:ekyc_completed] if attributes.key?(:ekyc_completed)
|
72
|
-
|
73
73
|
self.activated = attributes[:activated] if attributes.key?(:activated)
|
74
74
|
|
75
|
+
self.status = attributes[:status] if attributes.key?(:status)
|
76
|
+
|
77
|
+
self.bank_information = attributes[:bank_information] if attributes.key?(:bank_information)
|
78
|
+
|
75
79
|
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
76
80
|
|
77
81
|
return unless attributes.key?(:updated_at)
|
@@ -101,8 +105,9 @@ module Api
|
|
101
105
|
self.class == other.class &&
|
102
106
|
id == other.id &&
|
103
107
|
email == other.email &&
|
104
|
-
ekyc_completed == other.ekyc_completed &&
|
105
108
|
activated == other.activated &&
|
109
|
+
status == other.status &&
|
110
|
+
bank_information == other.bank_information &&
|
106
111
|
created_at == other.created_at &&
|
107
112
|
updated_at == other.updated_at
|
108
113
|
end
|
@@ -116,7 +121,7 @@ module Api
|
|
116
121
|
# Calculates hash code according to all attributes.
|
117
122
|
# @return [Integer] Hash code
|
118
123
|
def hash
|
119
|
-
[id, email,
|
124
|
+
[id, email, activated, status, bank_information, created_at, updated_at].hash
|
120
125
|
end
|
121
126
|
|
122
127
|
# Builds the object from hash
|
@@ -20,11 +20,12 @@ module Api
|
|
20
20
|
CHARGE_UPDATED = 'EVENT_TYPE_CHARGE_UPDATED'
|
21
21
|
CHARGE_SUCCESS = 'EVENT_TYPE_CHARGE_SUCCESS'
|
22
22
|
CHARGE_FAIL = 'EVENT_TYPE_CHARGE_FAIL'
|
23
|
+
CHARGE_CANCEL = 'EVENT_TYPE_CHARGE_CANCEL'
|
23
24
|
CONTRACT_ACTIVATED = 'EVENT_TYPE_CONTRACT_ACTIVATED'
|
24
25
|
TESTING = 'EVENT_TYPE_TESTING'
|
25
26
|
|
26
27
|
def self.all_vars
|
27
|
-
@all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CHARGE_FAIL, CONTRACT_ACTIVATED, TESTING].freeze
|
28
|
+
@all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CHARGE_FAIL, CHARGE_CANCEL, CONTRACT_ACTIVATED, TESTING].freeze
|
28
29
|
end
|
29
30
|
|
30
31
|
# Builds the enum from string
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class KycStatus
|
18
|
+
UNSPECIFIED = 'KYC_STATUS_UNSPECIFIED'
|
19
|
+
APPROVED = 'KYC_STATUS_APPROVED'
|
20
|
+
NOT_SUBMITTED = 'KYC_STATUS_NOT_SUBMITTED'
|
21
|
+
IN_REVIEW = 'KYC_STATUS_IN_REVIEW'
|
22
|
+
DENIED = 'KYC_STATUS_DENIED'
|
23
|
+
|
24
|
+
def self.all_vars
|
25
|
+
@all_vars ||= [UNSPECIFIED, APPROVED, NOT_SUBMITTED, IN_REVIEW, DENIED].freeze
|
26
|
+
end
|
27
|
+
|
28
|
+
# Builds the enum from string
|
29
|
+
# @param [String] The enum value in the form of the string
|
30
|
+
# @return [String] The enum value
|
31
|
+
def self.build_from_hash(value)
|
32
|
+
new.build_from_hash(value)
|
33
|
+
end
|
34
|
+
|
35
|
+
# Builds the enum from string
|
36
|
+
# @param [String] The enum value in the form of the string
|
37
|
+
# @return [String] The enum value
|
38
|
+
def build_from_hash(value)
|
39
|
+
return value if KycStatus.all_vars.include?(value)
|
40
|
+
|
41
|
+
raise "Invalid ENUM value #{value} for class #KycStatus"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# #Jamm API
|
4
|
+
#
|
5
|
+
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
#
|
7
|
+
# The version of the OpenAPI document: 1.0
|
8
|
+
#
|
9
|
+
# Generated by: https://openapi-generator.tech
|
10
|
+
# Generator version: 7.9.0
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Api
|
17
|
+
class PaymentAuthorizationStatus
|
18
|
+
UNSPECIFIED = 'PAYMENT_AUTHORIZATION_STATUS_UNSPECIFIED'
|
19
|
+
AUTHORIZED = 'PAYMENT_AUTHORIZATION_STATUS_AUTHORIZED'
|
20
|
+
NOT_AUTHORIZED = 'PAYMENT_AUTHORIZATION_STATUS_NOT_AUTHORIZED'
|
21
|
+
|
22
|
+
def self.all_vars
|
23
|
+
@all_vars ||= [UNSPECIFIED, AUTHORIZED, NOT_AUTHORIZED].freeze
|
24
|
+
end
|
25
|
+
|
26
|
+
# Builds the enum from string
|
27
|
+
# @param [String] The enum value in the form of the string
|
28
|
+
# @return [String] The enum value
|
29
|
+
def self.build_from_hash(value)
|
30
|
+
new.build_from_hash(value)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Builds the enum from string
|
34
|
+
# @param [String] The enum value in the form of the string
|
35
|
+
# @return [String] The enum value
|
36
|
+
def build_from_hash(value)
|
37
|
+
return value if PaymentAuthorizationStatus.all_vars.include?(value)
|
38
|
+
|
39
|
+
raise "Invalid ENUM value #{value} for class #PaymentAuthorizationStatus"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/lib/jamm/api.rb
CHANGED
@@ -17,11 +17,13 @@ require 'jamm/api/version'
|
|
17
17
|
require 'jamm/api/configuration'
|
18
18
|
|
19
19
|
# Models
|
20
|
+
require 'jamm/api/models/apiv1_status'
|
20
21
|
require 'jamm/api/models/customer_service_update_customer_body'
|
21
22
|
require 'jamm/api/models/googlerpc_status'
|
22
23
|
require 'jamm/api/models/protobuf_any'
|
23
24
|
require 'jamm/api/models/v1_add_charge_request'
|
24
25
|
require 'jamm/api/models/v1_add_charge_response'
|
26
|
+
require 'jamm/api/models/v1_bank_information'
|
25
27
|
require 'jamm/api/models/v1_buyer'
|
26
28
|
require 'jamm/api/models/v1_charge'
|
27
29
|
require 'jamm/api/models/v1_charge_message'
|
@@ -45,11 +47,13 @@ require 'jamm/api/models/v1_get_charges_response'
|
|
45
47
|
require 'jamm/api/models/v1_get_contract_response'
|
46
48
|
require 'jamm/api/models/v1_get_customer_response'
|
47
49
|
require 'jamm/api/models/v1_initial_charge'
|
50
|
+
require 'jamm/api/models/v1_kyc_status'
|
48
51
|
require 'jamm/api/models/v1_merchant'
|
49
52
|
require 'jamm/api/models/v1_merchant_customer'
|
50
53
|
require 'jamm/api/models/v1_merchant_webhook_message'
|
51
54
|
require 'jamm/api/models/v1_message_response'
|
52
55
|
require 'jamm/api/models/v1_pagination'
|
56
|
+
require 'jamm/api/models/v1_payment_authorization_status'
|
53
57
|
require 'jamm/api/models/v1_payment_link'
|
54
58
|
require 'jamm/api/models/v1_ping_response'
|
55
59
|
require 'jamm/api/models/v1_url'
|
data/lib/jamm/charge.rb
CHANGED
@@ -15,6 +15,8 @@ module Jamm
|
|
15
15
|
)
|
16
16
|
|
17
17
|
Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).add_charge(request)
|
18
|
+
rescue Jamm::OpenAPI::ApiError => e
|
19
|
+
raise Jamm::ApiError.from_error(e)
|
18
20
|
end
|
19
21
|
|
20
22
|
def self.create_without_redirect(customer:, charge:)
|
@@ -24,12 +26,16 @@ module Jamm
|
|
24
26
|
)
|
25
27
|
|
26
28
|
Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).withdraw(request)
|
29
|
+
rescue Jamm::OpenAPI::ApiError => e
|
30
|
+
raise Jamm::ApiError.from_error(e)
|
27
31
|
end
|
28
32
|
|
29
33
|
def self.get(charge_id)
|
30
34
|
Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).get_charge(charge_id)
|
31
35
|
rescue Jamm::OpenAPI::ApiError => e
|
32
|
-
|
36
|
+
return nil if e.code == 404
|
37
|
+
|
38
|
+
raise Jamm::ApiError.from_error(e)
|
33
39
|
end
|
34
40
|
|
35
41
|
def self.list(customer:, pagination: nil)
|
data/lib/jamm/contract.rb
CHANGED
@@ -15,6 +15,8 @@ module Jamm
|
|
15
15
|
)
|
16
16
|
|
17
17
|
Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).create_contract_with_charge(request)
|
18
|
+
rescue Jamm::OpenAPI::ApiError => e
|
19
|
+
raise Jamm::ApiError.from_error(e)
|
18
20
|
end
|
19
21
|
|
20
22
|
def self.create_without_charge(buyer:, redirect:)
|
@@ -24,12 +26,14 @@ module Jamm
|
|
24
26
|
)
|
25
27
|
|
26
28
|
Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).create_contract_without_charge(request)
|
29
|
+
rescue Jamm::OpenAPI::ApiError => e
|
30
|
+
raise Jamm::ApiError.from_error(e)
|
27
31
|
end
|
28
32
|
|
29
33
|
def self.get(customer_id)
|
30
34
|
Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get_contract(customer_id)
|
31
35
|
rescue Jamm::OpenAPI::ApiError => e
|
32
|
-
[404].include?(e.code) ? nil :
|
36
|
+
[404].include?(e.code) ? nil : Jamm::ApiError.from_error(e)
|
33
37
|
end
|
34
38
|
end
|
35
39
|
end
|
data/lib/jamm/customer.rb
CHANGED
@@ -14,6 +14,8 @@ module Jamm
|
|
14
14
|
)
|
15
15
|
|
16
16
|
r.customer
|
17
|
+
rescue Jamm::OpenAPI::ApiError => e
|
18
|
+
raise Jamm::ApiError.from_error(e)
|
17
19
|
end
|
18
20
|
|
19
21
|
def self.get(id_or_email)
|
@@ -27,23 +29,31 @@ module Jamm
|
|
27
29
|
|
28
30
|
r.customer
|
29
31
|
rescue Jamm::OpenAPI::ApiError => e
|
30
|
-
[404].include?(e.code)
|
32
|
+
return nil if [404].include?(e.code)
|
33
|
+
|
34
|
+
raise Jamm::ApiError.from_error(e)
|
31
35
|
end
|
32
36
|
|
33
37
|
def self.get_contract(id)
|
34
38
|
Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get_contract(id)
|
35
39
|
rescue Jamm::OpenAPI::ApiError => e
|
36
|
-
[404].include?(e.code)
|
40
|
+
return nil if [404].include?(e.code)
|
41
|
+
|
42
|
+
raise Jamm::ApiError.from_error(e)
|
37
43
|
end
|
38
44
|
|
39
45
|
def self.update(id, params)
|
40
46
|
r = Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).update(id, params)
|
41
47
|
|
42
48
|
r.customer
|
49
|
+
rescue Jamm::OpenAPI::ApiError => e
|
50
|
+
raise Jamm::ApiError.from_error(e)
|
43
51
|
end
|
44
52
|
|
45
53
|
def self.delete(id)
|
46
54
|
Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).delete(id)
|
55
|
+
rescue Jamm::OpenAPI::ApiError => e
|
56
|
+
raise Jamm::ApiError.from_error(e)
|
47
57
|
end
|
48
58
|
end
|
49
59
|
end
|
data/lib/jamm/errors.rb
CHANGED
@@ -23,4 +23,98 @@ module Jamm
|
|
23
23
|
# OAuthError is raised when a request to AWS cognito failed
|
24
24
|
class OAuthError < JammError
|
25
25
|
end
|
26
|
+
|
27
|
+
class InvalidSignatureError < StandardError
|
28
|
+
end
|
29
|
+
|
30
|
+
# Purpose of this error handler is to normalize Jamm's custom error
|
31
|
+
# and OpenAPI's generated error, and enforce Jamm's custom error format.
|
32
|
+
#
|
33
|
+
# - Jamm: code is string, message is string originating from Jamm's protobuf definition.
|
34
|
+
# - OpenAPI: code is integer, message is string originating from ConnectRPC error format.
|
35
|
+
class ApiError < StandardError
|
36
|
+
attr_reader :code, :error_code, :message, :headers, :body
|
37
|
+
|
38
|
+
# Add this class method to convert StandardError to ApiError
|
39
|
+
def self.from_error(e)
|
40
|
+
new(
|
41
|
+
code: e.code,
|
42
|
+
message: e.message,
|
43
|
+
response_headers: e.response_headers,
|
44
|
+
response_body: e.response_body
|
45
|
+
)
|
46
|
+
end
|
47
|
+
|
48
|
+
def initialize(args = {})
|
49
|
+
# Check code existence and convert to string if it's integer
|
50
|
+
@code = args[:code]
|
51
|
+
@message = args[:message]
|
52
|
+
@headers = args[:response_headers]
|
53
|
+
|
54
|
+
raw_body = if args[:response_body].nil?
|
55
|
+
{}
|
56
|
+
elsif args[:response_body].is_a?(Hash)
|
57
|
+
args[:response_body]
|
58
|
+
elsif args[:response_body].is_a?(String)
|
59
|
+
begin
|
60
|
+
JSON.parse(args[:response_body])
|
61
|
+
rescue StandardError
|
62
|
+
{}
|
63
|
+
end
|
64
|
+
else
|
65
|
+
{}
|
66
|
+
end
|
67
|
+
|
68
|
+
@body = {}
|
69
|
+
raw_body.each do |k, v|
|
70
|
+
next if k == 'code'
|
71
|
+
|
72
|
+
@body[k.to_sym] = v if k.respond_to?(:to_sym)
|
73
|
+
end
|
74
|
+
|
75
|
+
# Set human readable error type based on error code
|
76
|
+
# https://github.com/connectrpc/connect-go/blob/d7c0966751650b41a9f1794513592e81b9beed45/code.go#L34
|
77
|
+
@body[:error] = case raw_body['code']
|
78
|
+
when 1
|
79
|
+
'CANCELED'
|
80
|
+
when 2
|
81
|
+
'UNKNOWN'
|
82
|
+
when 3
|
83
|
+
'INVALID_ARGUMENT'
|
84
|
+
when 4
|
85
|
+
'DEADLINE_EXCEEDED'
|
86
|
+
when 5
|
87
|
+
'NOT_FOUND'
|
88
|
+
when 6
|
89
|
+
'ALREADY_EXISTS'
|
90
|
+
when 7
|
91
|
+
'PERMISSION_DENIED'
|
92
|
+
when 8
|
93
|
+
'RESOURCE_EXHAUSTED'
|
94
|
+
when 9
|
95
|
+
'FAILED_PRECONDITION'
|
96
|
+
when 10
|
97
|
+
'ABORTED'
|
98
|
+
when 11
|
99
|
+
'OUT_OF_RANGE'
|
100
|
+
when 12
|
101
|
+
'UNIMPLEMENTED'
|
102
|
+
when 13
|
103
|
+
'INTERNAL'
|
104
|
+
when 14
|
105
|
+
'UNAVAILABLE'
|
106
|
+
when 15
|
107
|
+
'DATA_LOSS'
|
108
|
+
when 16
|
109
|
+
'UNAUTHENTICATED'
|
110
|
+
end
|
111
|
+
|
112
|
+
super(message)
|
113
|
+
end
|
114
|
+
|
115
|
+
def to_s
|
116
|
+
status_string = @code.nil? ? '' : "(Status #{@code}) "
|
117
|
+
"#{status_string}#{@message}"
|
118
|
+
end
|
119
|
+
end
|
26
120
|
end
|
data/lib/jamm/healthcheck.rb
CHANGED
data/lib/jamm/version.rb
CHANGED
data/lib/jamm/webhook.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'openssl'
|
3
4
|
require 'rest-client'
|
4
5
|
require 'json'
|
5
6
|
require 'base64'
|
@@ -21,6 +22,10 @@ module Jamm
|
|
21
22
|
out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
22
23
|
return out
|
23
24
|
|
25
|
+
when Jamm::OpenAPI::EventType::CHARGE_CANCEL
|
26
|
+
out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
27
|
+
return out
|
28
|
+
|
24
29
|
when Jamm::OpenAPI::EventType::CHARGE_SUCCESS
|
25
30
|
out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
|
26
31
|
return out
|
@@ -36,5 +41,37 @@ module Jamm
|
|
36
41
|
|
37
42
|
raise 'Unknown event type'
|
38
43
|
end
|
44
|
+
|
45
|
+
# Verify message
|
46
|
+
def self.verify(data:, signature:)
|
47
|
+
raise ArgumentError, 'data cannot be nil' if data.nil?
|
48
|
+
raise ArgumentError, 'signature cannot be nil' if signature.nil?
|
49
|
+
|
50
|
+
# Convert the JSON to a string
|
51
|
+
json = JSON.dump(data)
|
52
|
+
|
53
|
+
digest = OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha256'), Jamm.client_secret, json)
|
54
|
+
given = "sha256=#{digest}"
|
55
|
+
|
56
|
+
return if secure_compare(given, signature)
|
57
|
+
|
58
|
+
raise Jamm::InvalidSignatureError, 'Digests do not match'
|
59
|
+
end
|
60
|
+
|
61
|
+
# Securely compare two strings of equal length.
|
62
|
+
# This method is a port of ActiveSupport::SecurityUtils.secure_compare
|
63
|
+
# which works on non-Rails platforms.
|
64
|
+
def self.secure_compare(a, b)
|
65
|
+
return false unless a.bytesize == b.bytesize
|
66
|
+
|
67
|
+
# Unpack strings into arrays of bytes
|
68
|
+
a_bytes = a.unpack('C*')
|
69
|
+
b_bytes = b.unpack('C*')
|
70
|
+
result = 0
|
71
|
+
|
72
|
+
# XOR each byte and accumulate the result
|
73
|
+
a_bytes.zip(b_bytes) { |x, y| result |= x ^ y }
|
74
|
+
result.zero?
|
75
|
+
end
|
39
76
|
end
|
40
77
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jamm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -67,11 +67,13 @@ files:
|
|
67
67
|
- lib/jamm/api/api_client.rb
|
68
68
|
- lib/jamm/api/api_error.rb
|
69
69
|
- lib/jamm/api/configuration.rb
|
70
|
+
- lib/jamm/api/models/apiv1_status.rb
|
70
71
|
- lib/jamm/api/models/customer_service_update_customer_body.rb
|
71
72
|
- lib/jamm/api/models/googlerpc_status.rb
|
72
73
|
- lib/jamm/api/models/protobuf_any.rb
|
73
74
|
- lib/jamm/api/models/v1_add_charge_request.rb
|
74
75
|
- lib/jamm/api/models/v1_add_charge_response.rb
|
76
|
+
- lib/jamm/api/models/v1_bank_information.rb
|
75
77
|
- lib/jamm/api/models/v1_buyer.rb
|
76
78
|
- lib/jamm/api/models/v1_charge.rb
|
77
79
|
- lib/jamm/api/models/v1_charge_message.rb
|
@@ -95,11 +97,13 @@ files:
|
|
95
97
|
- lib/jamm/api/models/v1_get_contract_response.rb
|
96
98
|
- lib/jamm/api/models/v1_get_customer_response.rb
|
97
99
|
- lib/jamm/api/models/v1_initial_charge.rb
|
100
|
+
- lib/jamm/api/models/v1_kyc_status.rb
|
98
101
|
- lib/jamm/api/models/v1_merchant.rb
|
99
102
|
- lib/jamm/api/models/v1_merchant_customer.rb
|
100
103
|
- lib/jamm/api/models/v1_merchant_webhook_message.rb
|
101
104
|
- lib/jamm/api/models/v1_message_response.rb
|
102
105
|
- lib/jamm/api/models/v1_pagination.rb
|
106
|
+
- lib/jamm/api/models/v1_payment_authorization_status.rb
|
103
107
|
- lib/jamm/api/models/v1_payment_link.rb
|
104
108
|
- lib/jamm/api/models/v1_ping_response.rb
|
105
109
|
- lib/jamm/api/models/v1_update_customer_response.rb
|