connect-sdk-ruby 2.24.0 → 2.28.0
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/connect-sdk-ruby.gemspec +1 -1
- data/examples/merchant/captures/create_refund_capture_example.rb +54 -0
- data/examples/merchant/hostedcheckouts/delete_hosted_checkout_example.rb +22 -0
- data/lib/ingenico/connect/sdk/domain/definitions/card.rb +7 -0
- data/lib/ingenico/connect/sdk/domain/definitions/card_fraud_results.rb +9 -0
- data/lib/ingenico/connect/sdk/domain/definitions/microsoft_fraud_results.rb +32 -0
- data/lib/ingenico/connect/sdk/domain/payment/abstract_three_d_secure.rb +7 -0
- data/lib/ingenico/connect/sdk/domain/payment/customer_account_authentication.rb +7 -0
- data/lib/ingenico/connect/sdk/domain/payment/order_line_details.rb +7 -0
- data/lib/ingenico/connect/sdk/merchant/captures/captures_client.rb +35 -0
- data/lib/ingenico/connect/sdk/merchant/hostedcheckouts/hostedcheckouts_client.rb +29 -0
- data/lib/ingenico/connect/sdk/meta_data_provider.rb +1 -1
- data/lib/ingenico/connect/sdk/request_header.rb +4 -5
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5992bcc131f53b3ccada88fbd47649cae3d3e2b7a2f4e962d03b720284ec867b
|
4
|
+
data.tar.gz: 8176d72bdb8b2476334f1b4dee14ee5a3630aaf74d03832444bc4816dbaeb2eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 339b9d17f342797147b0cb27b957a0365f1c65d695ef4d709863654a989cbabac407c74865ea129b2316c7972b468435ef4d53fd63d39dfb1f8b25a25aa09c66
|
7
|
+
data.tar.gz: ed49a59d4903bdcffb408119dcb3e2448a0e13981c98a1dfa7ad42c3c3b0d15b8e1ee456305ed8577e51b3d404e4f625f790b747879316a3bc5ce4e7f7bec714
|
data/connect-sdk-ruby.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = 'connect-sdk-ruby'
|
3
|
-
spec.version = '2.
|
3
|
+
spec.version = '2.28.0'
|
4
4
|
spec.authors = ['Ingenico ePayments']
|
5
5
|
spec.email = ['github@epay.ingenico.com']
|
6
6
|
spec.summary = %q{SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
#
|
2
|
+
# This class was auto-generated from the API references found at
|
3
|
+
# https://epayments-api.developer-ingenico.com/s2sapi/v1/
|
4
|
+
#
|
5
|
+
require 'ingenico/connect/sdk/api_exception'
|
6
|
+
require 'ingenico/connect/sdk/declined_refund_exception'
|
7
|
+
require 'ingenico/connect/sdk/factory'
|
8
|
+
require 'ingenico/connect/sdk/domain/definitions/amount_of_money'
|
9
|
+
require 'ingenico/connect/sdk/domain/refund/refund_references'
|
10
|
+
require 'ingenico/connect/sdk/domain/refund/refund_request'
|
11
|
+
|
12
|
+
Definitions = Ingenico::Connect::SDK::Domain::Definitions
|
13
|
+
Refund = Ingenico::Connect::SDK::Domain::Refund
|
14
|
+
|
15
|
+
def example
|
16
|
+
get_client do |client|
|
17
|
+
amount_of_money = Definitions::AmountOfMoney.new
|
18
|
+
amount_of_money.amount = 500
|
19
|
+
amount_of_money.currency_code = 'EUR'
|
20
|
+
|
21
|
+
refund_references = Refund::RefundReferences.new
|
22
|
+
refund_references.merchant_reference = 'AcmeOrder0001'
|
23
|
+
|
24
|
+
body = Refund::RefundRequest.new
|
25
|
+
body.amount_of_money = amount_of_money
|
26
|
+
body.refund_references = refund_references
|
27
|
+
|
28
|
+
begin
|
29
|
+
response = client.merchant('merchantId').captures.refund('captureId', body)
|
30
|
+
rescue Ingenico::Connect::SDK::DeclinedRefundException => e
|
31
|
+
handle_declined_refund(e.refund_result)
|
32
|
+
rescue Ingenico::Connect::SDK::ApiException => e
|
33
|
+
handle_api_errors(e.errors)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def get_client
|
39
|
+
api_key_id = ENV.fetch('connect.api.apiKeyId', 'someKey')
|
40
|
+
secret_api_key = ENV.fetch('connect.api.secretApiKey', 'someSecret')
|
41
|
+
configuration_file_name = File.join(__FILE__, '..', '..', 'example_configuration.yml')
|
42
|
+
yield client = Ingenico::Connect::SDK::Factory.create_client_from_file(configuration_file_name, api_key_id, secret_api_key)
|
43
|
+
ensure
|
44
|
+
# Free networking resources when done
|
45
|
+
client.close unless client.nil?
|
46
|
+
end
|
47
|
+
|
48
|
+
def handle_declined_refund(refund_result)
|
49
|
+
# handle the result here
|
50
|
+
end
|
51
|
+
|
52
|
+
def handle_api_errors(errors)
|
53
|
+
# handle the errors here
|
54
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#
|
2
|
+
# This class was auto-generated from the API references found at
|
3
|
+
# https://epayments-api.developer-ingenico.com/s2sapi/v1/
|
4
|
+
#
|
5
|
+
require 'ingenico/connect/sdk/factory'
|
6
|
+
|
7
|
+
|
8
|
+
def example
|
9
|
+
get_client do |client|
|
10
|
+
client.merchant('merchantId').hostedcheckouts.delete('hostedCheckoutId')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def get_client
|
15
|
+
api_key_id = ENV.fetch('connect.api.apiKeyId', 'someKey')
|
16
|
+
secret_api_key = ENV.fetch('connect.api.secretApiKey', 'someSecret')
|
17
|
+
configuration_file_name = File.join(__FILE__, '..', '..', 'example_configuration.yml')
|
18
|
+
yield client = Ingenico::Connect::SDK::Factory.create_client_from_file(configuration_file_name, api_key_id, secret_api_key)
|
19
|
+
ensure
|
20
|
+
# Free networking resources when done
|
21
|
+
client.close unless client.nil?
|
22
|
+
end
|
@@ -9,14 +9,18 @@ module Ingenico::Connect::SDK
|
|
9
9
|
module Definitions
|
10
10
|
|
11
11
|
# @attr [String] cvv
|
12
|
+
# @attr [String] partial_pin
|
12
13
|
class Card < Ingenico::Connect::SDK::Domain::Definitions::CardWithoutCvv
|
13
14
|
|
14
15
|
attr_accessor :cvv
|
15
16
|
|
17
|
+
attr_accessor :partial_pin
|
18
|
+
|
16
19
|
# @return (Hash)
|
17
20
|
def to_h
|
18
21
|
hash = super
|
19
22
|
hash['cvv'] = @cvv unless @cvv.nil?
|
23
|
+
hash['partialPin'] = @partial_pin unless @partial_pin.nil?
|
20
24
|
hash
|
21
25
|
end
|
22
26
|
|
@@ -25,6 +29,9 @@ module Ingenico::Connect::SDK
|
|
25
29
|
if hash.has_key? 'cvv'
|
26
30
|
@cvv = hash['cvv']
|
27
31
|
end
|
32
|
+
if hash.has_key? 'partialPin'
|
33
|
+
@partial_pin = hash['partialPin']
|
34
|
+
end
|
28
35
|
end
|
29
36
|
end
|
30
37
|
end
|
@@ -5,6 +5,7 @@
|
|
5
5
|
require 'ingenico/connect/sdk/domain/definitions/fraud_results'
|
6
6
|
require 'ingenico/connect/sdk/domain/definitions/fraud_results_retail_decisions'
|
7
7
|
require 'ingenico/connect/sdk/domain/definitions/fraugster_results'
|
8
|
+
require 'ingenico/connect/sdk/domain/definitions/microsoft_fraud_results'
|
8
9
|
|
9
10
|
module Ingenico::Connect::SDK
|
10
11
|
module Domain
|
@@ -13,6 +14,7 @@ module Ingenico::Connect::SDK
|
|
13
14
|
# @attr [String] avs_result
|
14
15
|
# @attr [String] cvv_result
|
15
16
|
# @attr [Ingenico::Connect::SDK::Domain::Definitions::FraugsterResults] fraugster
|
17
|
+
# @attr [Ingenico::Connect::SDK::Domain::Definitions::MicrosoftFraudResults] microsoft_fraud_protection
|
16
18
|
# @attr [Ingenico::Connect::SDK::Domain::Definitions::FraudResultsRetailDecisions] retail_decisions
|
17
19
|
class CardFraudResults < Ingenico::Connect::SDK::Domain::Definitions::FraudResults
|
18
20
|
|
@@ -22,6 +24,8 @@ module Ingenico::Connect::SDK
|
|
22
24
|
|
23
25
|
attr_accessor :fraugster
|
24
26
|
|
27
|
+
attr_accessor :microsoft_fraud_protection
|
28
|
+
|
25
29
|
attr_accessor :retail_decisions
|
26
30
|
|
27
31
|
# @return (Hash)
|
@@ -30,6 +34,7 @@ module Ingenico::Connect::SDK
|
|
30
34
|
hash['avsResult'] = @avs_result unless @avs_result.nil?
|
31
35
|
hash['cvvResult'] = @cvv_result unless @cvv_result.nil?
|
32
36
|
hash['fraugster'] = @fraugster.to_h unless @fraugster.nil?
|
37
|
+
hash['microsoftFraudProtection'] = @microsoft_fraud_protection.to_h unless @microsoft_fraud_protection.nil?
|
33
38
|
hash['retailDecisions'] = @retail_decisions.to_h unless @retail_decisions.nil?
|
34
39
|
hash
|
35
40
|
end
|
@@ -46,6 +51,10 @@ module Ingenico::Connect::SDK
|
|
46
51
|
raise TypeError, "value '%s' is not a Hash" % [hash['fraugster']] unless hash['fraugster'].is_a? Hash
|
47
52
|
@fraugster = Ingenico::Connect::SDK::Domain::Definitions::FraugsterResults.new_from_hash(hash['fraugster'])
|
48
53
|
end
|
54
|
+
if hash.has_key? 'microsoftFraudProtection'
|
55
|
+
raise TypeError, "value '%s' is not a Hash" % [hash['microsoftFraudProtection']] unless hash['microsoftFraudProtection'].is_a? Hash
|
56
|
+
@microsoft_fraud_protection = Ingenico::Connect::SDK::Domain::Definitions::MicrosoftFraudResults.new_from_hash(hash['microsoftFraudProtection'])
|
57
|
+
end
|
49
58
|
if hash.has_key? 'retailDecisions'
|
50
59
|
raise TypeError, "value '%s' is not a Hash" % [hash['retailDecisions']] unless hash['retailDecisions'].is_a? Hash
|
51
60
|
@retail_decisions = Ingenico::Connect::SDK::Domain::Definitions::FraudResultsRetailDecisions.new_from_hash(hash['retailDecisions'])
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#
|
2
|
+
# This class was auto-generated from the API references found at
|
3
|
+
# https://epayments-api.developer-ingenico.com/s2sapi/v1/
|
4
|
+
#
|
5
|
+
require 'ingenico/connect/sdk/data_object'
|
6
|
+
|
7
|
+
module Ingenico::Connect::SDK
|
8
|
+
module Domain
|
9
|
+
module Definitions
|
10
|
+
|
11
|
+
# @attr [Integer] fraud_score
|
12
|
+
class MicrosoftFraudResults < Ingenico::Connect::SDK::DataObject
|
13
|
+
|
14
|
+
attr_accessor :fraud_score
|
15
|
+
|
16
|
+
# @return (Hash)
|
17
|
+
def to_h
|
18
|
+
hash = super
|
19
|
+
hash['fraudScore'] = @fraud_score unless @fraud_score.nil?
|
20
|
+
hash
|
21
|
+
end
|
22
|
+
|
23
|
+
def from_hash(hash)
|
24
|
+
super
|
25
|
+
if hash.has_key? 'fraudScore'
|
26
|
+
@fraud_score = hash['fraudScore']
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -19,6 +19,7 @@ module Ingenico::Connect::SDK
|
|
19
19
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::ThreeDSecureData] prior_three_d_secure_data
|
20
20
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::SdkDataInput] sdk_data
|
21
21
|
# @attr [true/false] skip_authentication
|
22
|
+
# @attr [String] transaction_risk_level
|
22
23
|
class AbstractThreeDSecure < Ingenico::Connect::SDK::DataObject
|
23
24
|
|
24
25
|
attr_accessor :authentication_amount
|
@@ -37,6 +38,8 @@ module Ingenico::Connect::SDK
|
|
37
38
|
|
38
39
|
attr_accessor :skip_authentication
|
39
40
|
|
41
|
+
attr_accessor :transaction_risk_level
|
42
|
+
|
40
43
|
# @return (Hash)
|
41
44
|
def to_h
|
42
45
|
hash = super
|
@@ -48,6 +51,7 @@ module Ingenico::Connect::SDK
|
|
48
51
|
hash['priorThreeDSecureData'] = @prior_three_d_secure_data.to_h unless @prior_three_d_secure_data.nil?
|
49
52
|
hash['sdkData'] = @sdk_data.to_h unless @sdk_data.nil?
|
50
53
|
hash['skipAuthentication'] = @skip_authentication unless @skip_authentication.nil?
|
54
|
+
hash['transactionRiskLevel'] = @transaction_risk_level unless @transaction_risk_level.nil?
|
51
55
|
hash
|
52
56
|
end
|
53
57
|
|
@@ -80,6 +84,9 @@ module Ingenico::Connect::SDK
|
|
80
84
|
if hash.has_key? 'skipAuthentication'
|
81
85
|
@skip_authentication = hash['skipAuthentication']
|
82
86
|
end
|
87
|
+
if hash.has_key? 'transactionRiskLevel'
|
88
|
+
@transaction_risk_level = hash['transactionRiskLevel']
|
89
|
+
end
|
83
90
|
end
|
84
91
|
end
|
85
92
|
end
|
@@ -8,10 +8,13 @@ module Ingenico::Connect::SDK
|
|
8
8
|
module Domain
|
9
9
|
module Payment
|
10
10
|
|
11
|
+
# @attr [String] data
|
11
12
|
# @attr [String] method
|
12
13
|
# @attr [String] utc_timestamp
|
13
14
|
class CustomerAccountAuthentication < Ingenico::Connect::SDK::DataObject
|
14
15
|
|
16
|
+
attr_accessor :data
|
17
|
+
|
15
18
|
attr_accessor :method
|
16
19
|
|
17
20
|
attr_accessor :utc_timestamp
|
@@ -19,6 +22,7 @@ module Ingenico::Connect::SDK
|
|
19
22
|
# @return (Hash)
|
20
23
|
def to_h
|
21
24
|
hash = super
|
25
|
+
hash['data'] = @data unless @data.nil?
|
22
26
|
hash['method'] = @method unless @method.nil?
|
23
27
|
hash['utcTimestamp'] = @utc_timestamp unless @utc_timestamp.nil?
|
24
28
|
hash
|
@@ -26,6 +30,9 @@ module Ingenico::Connect::SDK
|
|
26
30
|
|
27
31
|
def from_hash(hash)
|
28
32
|
super
|
33
|
+
if hash.has_key? 'data'
|
34
|
+
@data = hash['data']
|
35
|
+
end
|
29
36
|
if hash.has_key? 'method'
|
30
37
|
@method = hash['method']
|
31
38
|
end
|
@@ -15,6 +15,7 @@ module Ingenico::Connect::SDK
|
|
15
15
|
# @attr [String] product_code
|
16
16
|
# @attr [String] product_name
|
17
17
|
# @attr [Integer] product_price
|
18
|
+
# @attr [String] product_sku
|
18
19
|
# @attr [String] product_type
|
19
20
|
# @attr [Integer] quantity
|
20
21
|
# @attr [Integer] tax_amount
|
@@ -35,6 +36,8 @@ module Ingenico::Connect::SDK
|
|
35
36
|
|
36
37
|
attr_accessor :product_price
|
37
38
|
|
39
|
+
attr_accessor :product_sku
|
40
|
+
|
38
41
|
attr_accessor :product_type
|
39
42
|
|
40
43
|
attr_accessor :quantity
|
@@ -53,6 +56,7 @@ module Ingenico::Connect::SDK
|
|
53
56
|
hash['productCode'] = @product_code unless @product_code.nil?
|
54
57
|
hash['productName'] = @product_name unless @product_name.nil?
|
55
58
|
hash['productPrice'] = @product_price unless @product_price.nil?
|
59
|
+
hash['productSku'] = @product_sku unless @product_sku.nil?
|
56
60
|
hash['productType'] = @product_type unless @product_type.nil?
|
57
61
|
hash['quantity'] = @quantity unless @quantity.nil?
|
58
62
|
hash['taxAmount'] = @tax_amount unless @tax_amount.nil?
|
@@ -83,6 +87,9 @@ module Ingenico::Connect::SDK
|
|
83
87
|
if hash.has_key? 'productPrice'
|
84
88
|
@product_price = hash['productPrice']
|
85
89
|
end
|
90
|
+
if hash.has_key? 'productSku'
|
91
|
+
@product_sku = hash['productSku']
|
92
|
+
end
|
86
93
|
if hash.has_key? 'productType'
|
87
94
|
@product_type = hash['productType']
|
88
95
|
end
|
@@ -6,6 +6,8 @@ require 'ingenico/connect/sdk/api_resource'
|
|
6
6
|
require 'ingenico/connect/sdk/response_exception'
|
7
7
|
require 'ingenico/connect/sdk/domain/capture/capture_response'
|
8
8
|
require 'ingenico/connect/sdk/domain/errors/error_response'
|
9
|
+
require 'ingenico/connect/sdk/domain/refund/refund_error_response'
|
10
|
+
require 'ingenico/connect/sdk/domain/refund/refund_response'
|
9
11
|
|
10
12
|
module Ingenico::Connect::SDK
|
11
13
|
module Merchant
|
@@ -49,6 +51,39 @@ module Ingenico::Connect::SDK
|
|
49
51
|
error_object = @communicator.marshaller.unmarshal(e.body, error_type)
|
50
52
|
raise create_exception(e.status_code, e.body, error_object, context)
|
51
53
|
end
|
54
|
+
|
55
|
+
# Resource /!{merchantId}/captures/!{captureId}/refund - {https://epayments-api.developer-ingenico.com/s2sapi/v1/en_US/ruby/captures/refund.html Create Refund}
|
56
|
+
# @param capture_id [String]
|
57
|
+
# @param body [Ingenico::Connect::SDK::Domain::Refund::RefundRequest]
|
58
|
+
# @param context [Ingenico::Connect::SDK::CallContext]
|
59
|
+
# @return [Ingenico::Connect::SDK::Domain::Refund::RefundResponse]
|
60
|
+
# @raise [Ingenico::Connect::SDK::DeclinedRefundException] if the Ingenico ePayments platform declined / rejected the refund. The refund result will be available from the exception.
|
61
|
+
# @raise [Ingenico::Connect::SDK::ValidationException] if the request was not correct and couldn't be processed (HTTP status code 400)
|
62
|
+
# @raise [Ingenico::Connect::SDK::AuthorizationException] if the request was not allowed (HTTP status code 403)
|
63
|
+
# @raise [Ingenico::Connect::SDK::IdempotenceException] if an idempotent request caused a conflict (HTTP status code 409)
|
64
|
+
# @raise [Ingenico::Connect::SDK::ReferenceException] if an object was attempted to be referenced that doesn't exist or has been removed,
|
65
|
+
# or there was a conflict (HTTP status code 404, 409 or 410)
|
66
|
+
# @raise [Ingenico::Connect::SDK::GlobalCollectException] if something went wrong at the Ingenico ePayments platform,
|
67
|
+
# the Ingenico ePayments platform was unable to process a message from a downstream partner/acquirer,
|
68
|
+
# or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
|
69
|
+
# @raise [Ingenico::Connect::SDK::ApiException]if the Ingenico ePayments platform returned any other error
|
70
|
+
def refund(capture_id, body, context=nil)
|
71
|
+
path_context = {
|
72
|
+
'captureId'.freeze => capture_id,
|
73
|
+
}
|
74
|
+
uri = instantiate_uri('/v1/{merchantId}/captures/{captureId}/refund', path_context)
|
75
|
+
return @communicator.post(
|
76
|
+
uri,
|
77
|
+
client_headers,
|
78
|
+
nil,
|
79
|
+
body,
|
80
|
+
Ingenico::Connect::SDK::Domain::Refund::RefundResponse,
|
81
|
+
context)
|
82
|
+
rescue ResponseException => e
|
83
|
+
error_type = Ingenico::Connect::SDK::Domain::Refund::RefundErrorResponse
|
84
|
+
error_object = @communicator.marshaller.unmarshal(e.body, error_type)
|
85
|
+
raise create_exception(e.status_code, e.body, error_object, context)
|
86
|
+
end
|
52
87
|
end
|
53
88
|
end
|
54
89
|
end
|
@@ -78,6 +78,35 @@ module Ingenico::Connect::SDK
|
|
78
78
|
error_object = @communicator.marshaller.unmarshal(e.body, error_type)
|
79
79
|
raise create_exception(e.status_code, e.body, error_object, context)
|
80
80
|
end
|
81
|
+
|
82
|
+
# Resource /!{merchantId}/hostedcheckouts/!{hostedCheckoutId} - {https://epayments-api.developer-ingenico.com/s2sapi/v1/en_US/ruby/hostedcheckouts/delete.html Delete hosted checkout}
|
83
|
+
# @param hosted_checkout_id [String]
|
84
|
+
# @param context [Ingenico::Connect::SDK::CallContext]
|
85
|
+
# @raise [Ingenico::Connect::SDK::ValidationException] if the request was not correct and couldn't be processed (HTTP status code 400)
|
86
|
+
# @raise [Ingenico::Connect::SDK::AuthorizationException] if the request was not allowed (HTTP status code 403)
|
87
|
+
# @raise [Ingenico::Connect::SDK::IdempotenceException] if an idempotent request caused a conflict (HTTP status code 409)
|
88
|
+
# @raise [Ingenico::Connect::SDK::ReferenceException] if an object was attempted to be referenced that doesn't exist or has been removed,
|
89
|
+
# or there was a conflict (HTTP status code 404, 409 or 410)
|
90
|
+
# @raise [Ingenico::Connect::SDK::GlobalCollectException] if something went wrong at the Ingenico ePayments platform,
|
91
|
+
# the Ingenico ePayments platform was unable to process a message from a downstream partner/acquirer,
|
92
|
+
# or the service that you're trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
|
93
|
+
# @raise [Ingenico::Connect::SDK::ApiException]if the Ingenico ePayments platform returned any other error
|
94
|
+
def delete(hosted_checkout_id, context=nil)
|
95
|
+
path_context = {
|
96
|
+
'hostedCheckoutId'.freeze => hosted_checkout_id,
|
97
|
+
}
|
98
|
+
uri = instantiate_uri('/v1/{merchantId}/hostedcheckouts/{hostedCheckoutId}', path_context)
|
99
|
+
return @communicator.delete(
|
100
|
+
uri,
|
101
|
+
client_headers,
|
102
|
+
nil,
|
103
|
+
nil,
|
104
|
+
context)
|
105
|
+
rescue ResponseException => e
|
106
|
+
error_type = Ingenico::Connect::SDK::Domain::Errors::ErrorResponse
|
107
|
+
error_object = @communicator.marshaller.unmarshal(e.body, error_type)
|
108
|
+
raise create_exception(e.status_code, e.body, error_object, context)
|
109
|
+
end
|
81
110
|
end
|
82
111
|
end
|
83
112
|
end
|
@@ -7,7 +7,7 @@ module Ingenico::Connect::SDK
|
|
7
7
|
#
|
8
8
|
# @attr_reader [Array<Ingenico::Connect::SDK::RequestHeader>] meta_data_headers List of headers that should be used in all requests.
|
9
9
|
class MetaDataProvider
|
10
|
-
@@SDK_VERSION = '2.
|
10
|
+
@@SDK_VERSION = '2.28.0'
|
11
11
|
@@SERVER_META_INFO_HEADER = 'X-GCS-ServerMetaInfo'
|
12
12
|
@@PROHIBITED_HEADERS = [@@SERVER_META_INFO_HEADER, 'X-GCS-Idempotence-Key',
|
13
13
|
'Date', 'Content-Type', 'Authorization'].sort!.freeze
|
@@ -47,11 +47,10 @@ module Ingenico::Connect::SDK
|
|
47
47
|
if value.nil? || value.empty?
|
48
48
|
return value
|
49
49
|
end
|
50
|
-
# Replace all sequences of
|
51
|
-
# This
|
52
|
-
#
|
53
|
-
|
54
|
-
value.gsub(/[\s&&[^\r\n]]*(\r?\n)[\s&&[^\r\n]]*/, '\1 ')
|
50
|
+
# Replace all sequences of linebreak-whitespace* with a single linebreak-space
|
51
|
+
# This matches the normalization done by DefaultAuthenticator, and ensures that multiline headers
|
52
|
+
# will not cause authentication failures
|
53
|
+
value.gsub(/\r?\n[\s&&[^\r\n]]*/, ' ')
|
55
54
|
end
|
56
55
|
end
|
57
56
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: connect-sdk-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.28.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ingenico ePayments
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- README.md
|
128
128
|
- Rakefile
|
129
129
|
- connect-sdk-ruby.gemspec
|
130
|
+
- examples/merchant/captures/create_refund_capture_example.rb
|
130
131
|
- examples/merchant/captures/get_capture_example.rb
|
131
132
|
- examples/merchant/disputes/cancel_dispute_example.rb
|
132
133
|
- examples/merchant/disputes/get_dispute_example.rb
|
@@ -135,6 +136,7 @@ files:
|
|
135
136
|
- examples/merchant/example_configuration.yml
|
136
137
|
- examples/merchant/files/get_file_example.rb
|
137
138
|
- examples/merchant/hostedcheckouts/create_hosted_checkout_example.rb
|
139
|
+
- examples/merchant/hostedcheckouts/delete_hosted_checkout_example.rb
|
138
140
|
- examples/merchant/hostedcheckouts/get_hosted_checkout_example.rb
|
139
141
|
- examples/merchant/hostedmandatemanagements/create_hosted_mandate_management_example.rb
|
140
142
|
- examples/merchant/hostedmandatemanagements/get_hosted_mandate_management_example.rb
|
@@ -249,6 +251,7 @@ files:
|
|
249
251
|
- lib/ingenico/connect/sdk/domain/definitions/lodging_charge.rb
|
250
252
|
- lib/ingenico/connect/sdk/domain/definitions/lodging_data.rb
|
251
253
|
- lib/ingenico/connect/sdk/domain/definitions/lodging_room.rb
|
254
|
+
- lib/ingenico/connect/sdk/domain/definitions/microsoft_fraud_results.rb
|
252
255
|
- lib/ingenico/connect/sdk/domain/definitions/order_status_output.rb
|
253
256
|
- lib/ingenico/connect/sdk/domain/definitions/payment_product_filter.rb
|
254
257
|
- lib/ingenico/connect/sdk/domain/definitions/personal_name_base.rb
|