activemerchant 1.62.0 → 1.79.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +420 -2
  3. data/README.md +1 -2
  4. data/lib/active_merchant/billing/credit_card.rb +13 -14
  5. data/lib/active_merchant/billing/credit_card_methods.rb +3 -1
  6. data/lib/active_merchant/billing/gateway.rb +25 -9
  7. data/lib/active_merchant/billing/gateways/adyen.rb +299 -0
  8. data/lib/active_merchant/billing/gateways/authorize_net.rb +168 -56
  9. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +4 -2
  10. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +65 -22
  11. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +87 -7
  12. data/lib/active_merchant/billing/gateways/beanstream.rb +2 -0
  13. data/lib/active_merchant/billing/gateways/blue_snap.rb +3 -8
  14. data/lib/active_merchant/billing/gateways/borgun.rb +10 -10
  15. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +1 -0
  16. data/lib/active_merchant/billing/gateways/braintree_blue.rb +49 -15
  17. data/lib/active_merchant/billing/gateways/card_connect.rb +286 -0
  18. data/lib/active_merchant/billing/gateways/card_stream.rb +97 -2
  19. data/lib/active_merchant/billing/gateways/cardprocess.rb +254 -0
  20. data/lib/active_merchant/billing/gateways/cashnet.rb +14 -2
  21. data/lib/active_merchant/billing/gateways/cenpos.rb +1 -1
  22. data/lib/active_merchant/billing/gateways/checkout.rb +1 -1
  23. data/lib/active_merchant/billing/gateways/checkout_v2.rb +44 -14
  24. data/lib/active_merchant/billing/gateways/citrus_pay.rb +0 -1
  25. data/lib/active_merchant/billing/gateways/clearhaus.rb +0 -2
  26. data/lib/active_merchant/billing/gateways/conekta.rb +4 -4
  27. data/lib/active_merchant/billing/gateways/creditcall.rb +71 -9
  28. data/lib/active_merchant/billing/gateways/credorax.rb +117 -5
  29. data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
  30. data/lib/active_merchant/billing/gateways/cyber_source.rb +54 -15
  31. data/lib/active_merchant/billing/gateways/data_cash.rb +12 -0
  32. data/lib/active_merchant/billing/gateways/dibs.rb +0 -1
  33. data/lib/active_merchant/billing/gateways/digitzs.rb +292 -0
  34. data/lib/active_merchant/billing/gateways/ebanx.rb +296 -0
  35. data/lib/active_merchant/billing/gateways/elavon.rb +37 -95
  36. data/lib/active_merchant/billing/gateways/element.rb +11 -1
  37. data/lib/active_merchant/billing/gateways/fat_zebra.rb +3 -29
  38. data/lib/active_merchant/billing/gateways/first_pay.rb +12 -10
  39. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +37 -20
  40. data/lib/active_merchant/billing/gateways/forte.rb +0 -1
  41. data/lib/active_merchant/billing/gateways/global_collect.rb +55 -16
  42. data/lib/active_merchant/billing/gateways/global_transport.rb +16 -2
  43. data/lib/active_merchant/billing/gateways/hps.rb +12 -1
  44. data/lib/active_merchant/billing/gateways/iats_payments.rb +2 -2
  45. data/lib/active_merchant/billing/gateways/iveri.rb +251 -0
  46. data/lib/active_merchant/billing/gateways/jetpay.rb +12 -9
  47. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +437 -0
  48. data/lib/active_merchant/billing/gateways/kushki.rb +227 -0
  49. data/lib/active_merchant/billing/gateways/linkpoint.rb +2 -2
  50. data/lib/active_merchant/billing/gateways/litle.rb +107 -30
  51. data/lib/active_merchant/billing/gateways/mercado_pago.rb +262 -0
  52. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +11 -0
  53. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +16 -4
  54. data/lib/active_merchant/billing/gateways/mercury.rb +14 -1
  55. data/lib/active_merchant/billing/gateways/migs.rb +28 -6
  56. data/lib/active_merchant/billing/gateways/moneris.rb +20 -12
  57. data/lib/active_merchant/billing/gateways/moneris_us.rb +11 -0
  58. data/lib/active_merchant/billing/gateways/mundipagg.rb +292 -0
  59. data/lib/active_merchant/billing/gateways/nab_transact.rb +4 -4
  60. data/lib/active_merchant/billing/gateways/netbanx.rb +60 -16
  61. data/lib/active_merchant/billing/gateways/netbilling.rb +0 -1
  62. data/lib/active_merchant/billing/gateways/nmi.rb +12 -1
  63. data/lib/active_merchant/billing/gateways/ogone.rb +1 -1
  64. data/lib/active_merchant/billing/gateways/omise.rb +9 -5
  65. data/lib/active_merchant/billing/gateways/openpay.rb +13 -0
  66. data/lib/active_merchant/billing/gateways/opp.rb +124 -114
  67. data/lib/active_merchant/billing/gateways/optimal_payment.rb +14 -1
  68. data/lib/active_merchant/billing/gateways/orbital.rb +83 -14
  69. data/lib/active_merchant/billing/gateways/pay_hub.rb +2 -2
  70. data/lib/active_merchant/billing/gateways/payeezy.rb +152 -46
  71. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +12 -2
  72. data/lib/active_merchant/billing/gateways/payflow.rb +24 -2
  73. data/lib/active_merchant/billing/gateways/payment_express.rb +3 -2
  74. data/lib/active_merchant/billing/gateways/paymentez.rb +276 -0
  75. data/lib/active_merchant/billing/gateways/paymill.rb +18 -10
  76. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +14 -0
  77. data/lib/active_merchant/billing/gateways/paypal.rb +0 -12
  78. data/lib/active_merchant/billing/gateways/paystation.rb +14 -1
  79. data/lib/active_merchant/billing/gateways/payu_latam.rb +102 -62
  80. data/lib/active_merchant/billing/gateways/pin.rb +5 -0
  81. data/lib/active_merchant/billing/gateways/pro_pay.rb +326 -0
  82. data/lib/active_merchant/billing/gateways/psigate.rb +12 -1
  83. data/lib/active_merchant/billing/gateways/qbms.rb +11 -0
  84. data/lib/active_merchant/billing/gateways/quickbooks.rb +10 -0
  85. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +21 -17
  86. data/lib/active_merchant/billing/gateways/quickpay.rb +3 -3
  87. data/lib/active_merchant/billing/gateways/qvalent.rb +60 -3
  88. data/lib/active_merchant/billing/gateways/realex.rb +16 -6
  89. data/lib/active_merchant/billing/gateways/redsys.rb +8 -2
  90. data/lib/active_merchant/billing/gateways/safe_charge.rb +262 -0
  91. data/lib/active_merchant/billing/gateways/sage.rb +8 -3
  92. data/lib/active_merchant/billing/gateways/sage_pay.rb +29 -13
  93. data/lib/active_merchant/billing/gateways/secure_net.rb +11 -1
  94. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +12 -0
  95. data/lib/active_merchant/billing/gateways/smart_ps.rb +1 -1
  96. data/lib/active_merchant/billing/gateways/spreedly_core.rb +53 -7
  97. data/lib/active_merchant/billing/gateways/stripe.rb +84 -26
  98. data/lib/active_merchant/billing/gateways/tns.rb +0 -1
  99. data/lib/active_merchant/billing/gateways/trans_first.rb +3 -2
  100. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +61 -26
  101. data/lib/active_merchant/billing/gateways/trexle.rb +217 -0
  102. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +114 -9
  103. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +45 -22
  104. data/lib/active_merchant/billing/gateways/vanco.rb +1 -1
  105. data/lib/active_merchant/billing/gateways/wepay.rb +79 -46
  106. data/lib/active_merchant/billing/gateways/wirecard.rb +5 -4
  107. data/lib/active_merchant/billing/gateways/worldpay.rb +85 -20
  108. data/lib/active_merchant/billing/gateways/worldpay_us.rb +27 -8
  109. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +1 -1
  110. data/lib/active_merchant/connection.rb +48 -12
  111. data/lib/active_merchant/net_http_ssl_connection.rb +9 -0
  112. data/lib/active_merchant/network_connection_retries.rb +6 -4
  113. data/lib/active_merchant/posts_data.rb +11 -1
  114. data/lib/active_merchant/version.rb +1 -1
  115. data/lib/active_merchant.rb +2 -5
  116. data/lib/certs/cacert.pem +85 -0
  117. data/lib/support/ssl_version.rb +87 -0
  118. metadata +25 -9
  119. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
@@ -0,0 +1,292 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class DigitzsGateway < Gateway
4
+ include Empty
5
+
6
+ self.test_url = 'https://beta.digitzsapi.com/sandbox'
7
+ self.live_url = 'https://beta.digitzsapi.com/v3'
8
+
9
+ self.supported_countries = ['US']
10
+ self.default_currency = 'USD'
11
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
12
+ self.money_format = :cents
13
+
14
+ self.homepage_url = 'https://digitzs.com'
15
+ self.display_name = 'Digitzs'
16
+
17
+ def initialize(options={})
18
+ requires!(options, :app_key, :api_key)
19
+ super
20
+ end
21
+
22
+ def purchase(money, payment, options={})
23
+ MultiResponse.run do |r|
24
+ r.process { commit("auth/token", app_token_request(options)) }
25
+ r.process { commit('payments', purchase_request(money, payment, options), options.merge({ app_token: app_token_from(r) })) }
26
+ end
27
+ end
28
+
29
+ def refund(money, authorization, options={})
30
+ MultiResponse.run do |r|
31
+ r.process { commit("auth/token", app_token_request(options)) }
32
+ r.process { commit('payments', refund_request(money, authorization, options), options.merge({ app_token: app_token_from(r) })) }
33
+ end
34
+ end
35
+
36
+ def store(payment, options = {})
37
+ MultiResponse.run do |r|
38
+ r.process { commit("auth/token", app_token_request(options)) }
39
+ options.merge!({ app_token: app_token_from(r) })
40
+
41
+ if options[:customer_id].present?
42
+ customer_id = check_customer_exists(options)
43
+
44
+ if customer_id
45
+ r.process { add_credit_card_to_customer(payment, options) }
46
+ else
47
+ r.process { add_customer_with_credit_card(payment, options) }
48
+ end
49
+ else
50
+ r.process { add_customer_with_credit_card(payment, options) }
51
+ end
52
+ end
53
+ end
54
+
55
+ def supports_scrubbing?
56
+ true
57
+ end
58
+
59
+ def scrub(transcript)
60
+ transcript.
61
+ gsub(%r((Authorization: Bearer ).+), '\1[FILTERED]').
62
+ gsub(%r((X-Api-Key: )\w+), '\1[FILTERED]').
63
+ gsub(%r((\"id\\\":\\\").+), '\1[FILTERED]').
64
+ gsub(%r((\"appKey\\\":\\\").+), '\1[FILTERED]').
65
+ gsub(%r((\"appToken\\\":\\\").+), '\1[FILTERED]').
66
+ gsub(%r((\"code\\\":\\\")\d+), '\1[FILTERED]').
67
+ gsub(%r((\"number\\\":\\\")\d+), '\1[FILTERED]')
68
+ end
69
+
70
+ private
71
+
72
+ def new_post
73
+ {
74
+ data: {
75
+ attributes: {}
76
+ }
77
+ }
78
+ end
79
+
80
+ def add_split(post, options)
81
+ return unless options[:payment_type] == "card_split" || options[:payment_type] == "token_split"
82
+
83
+ post[:data][:attributes][:split] = {
84
+ merchantId: options[:split_merchant_id],
85
+ amount: amount(options[:split_amount])
86
+ }
87
+ end
88
+
89
+ def add_payment(post, payment, options)
90
+ if payment.is_a? String
91
+ customer_id, token = split_authorization(payment)
92
+ post[:data][:attributes][:token] = {
93
+ customerId: customer_id,
94
+ tokenId: token
95
+ }
96
+ else
97
+ post[:data][:attributes][:card] = {
98
+ type: payment.brand,
99
+ holder: payment.name,
100
+ number: payment.number,
101
+ expiry: expdate(payment),
102
+ code: payment.verification_value
103
+ }
104
+ end
105
+ end
106
+
107
+ def add_transaction(post, money, options)
108
+ post[:data][:attributes][:transaction] = {
109
+ amount: amount(money),
110
+ currency: (options[:currency] || currency(money)),
111
+ invoice: options[:order_id] || generate_unique_id
112
+ }
113
+ end
114
+
115
+ def add_address(post, options)
116
+ if address = options[:billing_address] || options[:address]
117
+ post[:data][:attributes][:billingAddress] = {
118
+ line1: address[:address1] || "",
119
+ line2: address[:address2] || "",
120
+ city: address[:city] || "",
121
+ state: address[:state] || "",
122
+ zip: address[:zip] || "",
123
+ country: address["country"] || "USA"
124
+ }
125
+ end
126
+ end
127
+
128
+ def app_token_request(options)
129
+ post = new_post
130
+ post[:data][:type] = "auth"
131
+ post[:data][:attributes] = { appKey: @options[:app_key] }
132
+
133
+ post
134
+ end
135
+
136
+ def purchase_request(money, payment, options)
137
+ post = new_post
138
+ post[:data][:type] = "payments"
139
+ post[:data][:attributes][:merchantId] = options[:merchant_id]
140
+ post[:data][:attributes][:paymentType] = determine_payment_type(payment, options)
141
+ add_split(post, options)
142
+ add_payment(post, payment, options)
143
+ add_transaction(post, money, options)
144
+ add_address(post, options)
145
+
146
+ post
147
+ end
148
+
149
+ def refund_request(money, authorization, options)
150
+ post = new_post
151
+ post[:data][:type] = "payments"
152
+ post[:data][:attributes][:merchantId] = options[:merchant_id]
153
+ post[:data][:attributes][:paymentType] = "cardRefund"
154
+ post[:data][:attributes][:originalTransaction] = {id: authorization}
155
+ add_transaction(post, money, options)
156
+
157
+ post
158
+ end
159
+
160
+ def create_customer_request(payment, options)
161
+ post = new_post
162
+ post[:data][:type] = "customers"
163
+ post[:data][:attributes] = {
164
+ merchantId: options[:merchant_id],
165
+ name: payment.name,
166
+ externalId: "#{SecureRandom.hex(16)}"
167
+ }
168
+
169
+ post
170
+ end
171
+
172
+ def create_token_request(payment, options)
173
+ post = new_post
174
+ post[:data][:type] = "tokens"
175
+ post[:data][:attributes] = {
176
+ tokenType: "card",
177
+ customerId: options[:customer_id],
178
+ label: "Credit Card",
179
+ }
180
+ add_payment(post, payment, options)
181
+ add_address(post, options)
182
+
183
+ post
184
+ end
185
+
186
+ def check_customer_exists(options = {})
187
+ url = (test? ? test_url : live_url)
188
+ response = parse(ssl_get(url + "/customers/#{options[:customer_id]}", headers(options)))
189
+
190
+ return response.try(:[], "data").try(:[], "customerId") if success_from(response)
191
+ return nil
192
+ end
193
+
194
+ def add_credit_card_to_customer(payment, options = {})
195
+ commit('tokens', create_token_request(payment, options), options)
196
+ end
197
+
198
+ def add_customer_with_credit_card(payment, options = {})
199
+ customer_response = commit('customers', create_customer_request(payment, options), options)
200
+ options.merge!({customer_id: customer_response.authorization})
201
+ commit('tokens', create_token_request(payment, options), options)
202
+ end
203
+
204
+ def parse(body)
205
+ JSON.parse(body)
206
+ end
207
+
208
+ def commit(action, parameters, options={})
209
+ url = (test? ? test_url : live_url)
210
+ response = parse(ssl_post(url + "/#{action}", parameters.to_json, headers(options)))
211
+
212
+ Response.new(
213
+ success_from(response),
214
+ message_from(response),
215
+ response,
216
+ authorization: authorization_from(response),
217
+ avs_result: AVSResult.new(code: avs_result_from(response)),
218
+ cvv_result: CVVResult.new(cvv_result_from(response)),
219
+ test: test?,
220
+ error_code: error_code_from(response)
221
+ )
222
+ end
223
+
224
+ def success_from(response)
225
+ response["errors"].nil? && response["message"].nil?
226
+ end
227
+
228
+ def message_from(response)
229
+ return response["message"] if response["message"]
230
+ return "Success" if success_from(response)
231
+ response["errors"].map {|error_hash| error_hash["detail"] }.join(", ")
232
+ end
233
+
234
+ def authorization_from(response)
235
+ if customer_id = response.try(:[], "data").try(:[], "attributes").try(:[], "customerId")
236
+ "#{customer_id}|#{response.try(:[], "data").try(:[], "id")}"
237
+ else
238
+ response.try(:[], "data").try(:[], "id")
239
+ end
240
+ end
241
+
242
+ def avs_result_from(response)
243
+ response.try(:[], "data").try(:[], "attributes").try(:[], "transaction").try(:[], "avsResult")
244
+ end
245
+
246
+ def cvv_result_from(response)
247
+ response.try(:[], "data").try(:[], "attributes").try(:[], "transaction").try(:[], "codeResult")
248
+ end
249
+
250
+ def app_token_from(response)
251
+ response.params.try(:[], "data").try(:[], "attributes").try(:[], "appToken")
252
+ end
253
+
254
+ def headers(options)
255
+ headers = {
256
+ 'Content-Type' => 'application/json',
257
+ 'x-api-key' => @options[:api_key]
258
+ }
259
+
260
+ headers.merge!({"Authorization" => "Bearer #{options[:app_token]}"}) if options[:app_token]
261
+ headers
262
+ end
263
+
264
+ def error_code_from(response)
265
+ unless success_from(response)
266
+ response["errors"].nil? ? response["message"] : response["errors"].map {|error_hash| error_hash["code"] }.join(", ")
267
+ end
268
+ end
269
+
270
+ def split_authorization(authorization)
271
+ customer_id, token = authorization.split("|")
272
+ [customer_id, token]
273
+ end
274
+
275
+ def determine_payment_type(payment, options)
276
+ return "cardSplit" if options[:payment_type] == "card_split"
277
+ return "tokenSplit" if options[:payment_type] == "token_split"
278
+ return "token" if payment.is_a? String
279
+ "card"
280
+ end
281
+
282
+ def handle_response(response)
283
+ case response.code.to_i
284
+ when 200..499
285
+ response.body
286
+ else
287
+ raise ResponseError.new(response)
288
+ end
289
+ end
290
+ end
291
+ end
292
+ end
@@ -0,0 +1,296 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class EbanxGateway < Gateway
4
+ self.test_url = 'https://sandbox.ebanx.com/ws/'
5
+ self.live_url = 'https://api.ebanx.com/ws/'
6
+
7
+ self.supported_countries = ['BR', 'MX', 'CO']
8
+ self.default_currency = 'USD'
9
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club]
10
+
11
+ self.homepage_url = 'http://www.ebanx.com/'
12
+ self.display_name = 'Ebanx'
13
+
14
+ CARD_BRAND = {
15
+ visa: "visa",
16
+ master: "master_card",
17
+ american_express: "amex",
18
+ discover: "discover",
19
+ diners_club: "diners"
20
+ }
21
+
22
+ URL_MAP = {
23
+ purchase: "direct",
24
+ authorize: "direct",
25
+ capture: "capture",
26
+ refund: "refund",
27
+ void: "cancel",
28
+ store: "token"
29
+ }
30
+
31
+ HTTP_METHOD = {
32
+ purchase: :post,
33
+ authorize: :post,
34
+ capture: :get,
35
+ refund: :post,
36
+ void: :get,
37
+ store: :post
38
+ }
39
+
40
+ def initialize(options={})
41
+ requires!(options, :integration_key)
42
+ super
43
+ end
44
+
45
+ def purchase(money, payment, options={})
46
+ post = { payment: {} }
47
+ add_integration_key(post)
48
+ add_operation(post)
49
+ add_invoice(post, money, options)
50
+ add_customer_data(post, payment, options)
51
+ add_card_or_token(post, payment)
52
+ add_address(post, options)
53
+ add_customer_responsible_person(post, payment, options)
54
+
55
+ commit(:purchase, post)
56
+ end
57
+
58
+ def authorize(money, payment, options={})
59
+ post = { payment: {} }
60
+ add_integration_key(post)
61
+ add_operation(post)
62
+ add_invoice(post, money, options)
63
+ add_customer_data(post, payment, options)
64
+ add_card_or_token(post, payment)
65
+ add_address(post, options)
66
+ add_customer_responsible_person(post, payment, options)
67
+ post[:payment][:creditcard][:auto_capture] = false
68
+
69
+ commit(:authorize, post)
70
+ end
71
+
72
+ def capture(money, authorization, options={})
73
+ post = {}
74
+ add_integration_key(post)
75
+ post[:hash] = authorization
76
+ post[:amount] = amount(money)
77
+
78
+ commit(:capture, post)
79
+ end
80
+
81
+ def refund(money, authorization, options={})
82
+ post = {}
83
+ add_integration_key(post)
84
+ add_operation(post)
85
+ add_authorization(post, authorization)
86
+ post[:amount] = amount(money)
87
+ post[:description] = options[:description]
88
+
89
+ commit(:refund, post)
90
+ end
91
+
92
+ def void(authorization, options={})
93
+ post = {}
94
+ add_integration_key(post)
95
+ add_authorization(post, authorization)
96
+
97
+ commit(:void, post)
98
+ end
99
+
100
+ def store(credit_card, options={})
101
+ post = {}
102
+ add_integration_key(post)
103
+ add_payment_details(post, credit_card)
104
+ post[:country] = customer_country(options)
105
+
106
+ commit(:store, post)
107
+ end
108
+
109
+ def verify(credit_card, options={})
110
+ MultiResponse.run(:use_first_response) do |r|
111
+ r.process { authorize(100, credit_card, options) }
112
+ r.process(:ignore_result) { void(r.authorization, options) }
113
+ end
114
+ end
115
+
116
+ def supports_scrubbing?
117
+ true
118
+ end
119
+
120
+ def scrub(transcript)
121
+ transcript.
122
+ gsub(/(integration_key\\?":\\?")(\d*)/, '\1[FILTERED]').
123
+ gsub(/(card_number\\?":\\?")(\d*)/, '\1[FILTERED]').
124
+ gsub(/(card_cvv\\?":\\?")(\d*)/, '\1[FILTERED]')
125
+ end
126
+
127
+ private
128
+
129
+ def add_integration_key(post)
130
+ post[:integration_key] = @options[:integration_key].to_s
131
+ end
132
+
133
+ def add_operation(post)
134
+ post[:operation] = "request"
135
+ end
136
+
137
+ def add_authorization(post, authorization)
138
+ post[:hash] = authorization
139
+ end
140
+
141
+ def add_customer_data(post, payment, options)
142
+ post[:payment][:name] = customer_name(payment, options)
143
+ post[:payment][:email] = options[:email] || "unspecified@example.com"
144
+ post[:payment][:document] = options[:document]
145
+ post[:payment][:birth_date] = options[:birth_date] if options[:birth_date]
146
+ end
147
+
148
+ def add_customer_responsible_person(post, payment, options)
149
+ post[:payment][:person_type] = options[:person_type] if options[:person_type]
150
+ if options[:person_type] && options[:person_type].downcase == 'business'
151
+ post[:payment][:responsible] = {}
152
+ post[:payment][:responsible][:name] = options[:responsible_name] if options[:responsible_name]
153
+ post[:payment][:responsible][:document] = options[:responsible_document] if options[:responsible_document]
154
+ post[:payment][:responsible][:birth_date] = options[:responsible_birth_date] if options[:responsible_birth_date]
155
+ end
156
+ end
157
+
158
+ def add_address(post, options)
159
+ if address = options[:billing_address] || options[:address]
160
+ post[:payment][:address] = address[:address1].split[1..-1].join(" ") if address[:address1]
161
+ post[:payment][:street_number] = address[:address1].split.first if address[:address1]
162
+ post[:payment][:city] = address[:city]
163
+ post[:payment][:state] = address[:state]
164
+ post[:payment][:zipcode] = address[:zip]
165
+ post[:payment][:country] = address[:country].downcase
166
+ post[:payment][:phone_number] = address[:phone]
167
+ end
168
+ end
169
+
170
+ def add_invoice(post, money, options)
171
+ post[:payment][:amount_total] = amount(money)
172
+ post[:payment][:currency_code] = (options[:currency] || currency(money))
173
+ post[:payment][:merchant_payment_code] = options[:order_id]
174
+ post[:payment][:instalments] = options[:instalments] || 1
175
+ end
176
+
177
+ def add_card_or_token(post, payment)
178
+ if payment.is_a?(String)
179
+ payment, brand = payment.split("|")
180
+ end
181
+ post[:payment][:payment_type_code] = payment.is_a?(String) ? brand : CARD_BRAND[payment.brand.to_sym]
182
+ post[:payment][:creditcard] = payment_details(payment)
183
+ end
184
+
185
+ def add_payment_details(post, payment)
186
+ post[:payment_type_code] = CARD_BRAND[payment.brand.to_sym]
187
+ post[:creditcard] = payment_details(payment)
188
+ end
189
+
190
+ def payment_details(payment)
191
+ if payment.is_a?(String)
192
+ { token: payment }
193
+ else
194
+ {
195
+ card_number: payment.number,
196
+ card_name: payment.name,
197
+ card_due_date: "#{payment.month}/#{payment.year}",
198
+ card_cvv: payment.verification_value
199
+ }
200
+ end
201
+ end
202
+
203
+ def parse(body)
204
+ JSON.parse(body)
205
+ end
206
+
207
+ def commit(action, parameters)
208
+ url = url_for((test? ? test_url : live_url), action, parameters)
209
+ response = parse(ssl_request(HTTP_METHOD[action], url, post_data(action, parameters), {}))
210
+
211
+ success = success_from(action, response)
212
+
213
+ Response.new(
214
+ success,
215
+ message_from(response),
216
+ response,
217
+ authorization: authorization_from(action, parameters, response),
218
+ test: test?,
219
+ error_code: error_code_from(response, success)
220
+ )
221
+ end
222
+
223
+ def success_from(action, response)
224
+ if [:purchase, :capture, :refund].include?(action)
225
+ response.try(:[], "payment").try(:[], "status") == "CO"
226
+ elsif action == :authorize
227
+ response.try(:[], "payment").try(:[], "status") == "PE"
228
+ elsif action == :void
229
+ response.try(:[], "payment").try(:[], "status") == "CA"
230
+ elsif action == :store
231
+ response.try(:[], "status") == "SUCCESS"
232
+ else
233
+ false
234
+ end
235
+ end
236
+
237
+ def message_from(response)
238
+ return response["status_message"] if response["status"] == "ERROR"
239
+ response.try(:[], "payment").try(:[], "transaction_status").try(:[], "description")
240
+ end
241
+
242
+ def authorization_from(action, parameters, response)
243
+ if action == :store
244
+ "#{response.try(:[], "token")}|#{CARD_BRAND[parameters[:payment_type_code].to_sym]}"
245
+ else
246
+ response.try(:[], "payment").try(:[], "hash")
247
+ end
248
+ end
249
+
250
+ def post_data(action, parameters = {})
251
+ return nil if requires_http_get(action)
252
+ return convert_to_url_form_encoded(parameters) if action == :refund
253
+ "request_body=#{parameters.to_json}"
254
+ end
255
+
256
+ def url_for(hostname, action, parameters)
257
+ return "#{hostname}#{URL_MAP[action]}?#{convert_to_url_form_encoded(parameters)}" if requires_http_get(action)
258
+ "#{hostname}#{URL_MAP[action]}"
259
+ end
260
+
261
+ def requires_http_get(action)
262
+ return true if [:capture, :void].include?(action)
263
+ false
264
+ end
265
+
266
+ def convert_to_url_form_encoded(parameters)
267
+ parameters.map do |key, value|
268
+ next if value != false && value.blank?
269
+ "#{key}=#{value}"
270
+ end.compact.join("&")
271
+ end
272
+
273
+ def error_code_from(response, success)
274
+ unless success
275
+ return response["status_code"] if response["status"] == "ERROR"
276
+ response.try(:[], "payment").try(:[], "transaction_status").try(:[], "code")
277
+ end
278
+ end
279
+
280
+ def customer_country(options)
281
+ if country = options[:country] || (options[:billing_address][:country] if options[:billing_address])
282
+ country.downcase
283
+ end
284
+ end
285
+
286
+ def customer_name(payment, options)
287
+ address_name = options[:billing_address][:name] if options[:billing_address] && options[:billing_address][:name]
288
+ if payment.is_a?(String)
289
+ address_name || "Not Provided"
290
+ else
291
+ payment.name
292
+ end
293
+ end
294
+ end
295
+ end
296
+ end