start_activemerchant 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +1769 -0
- data/CONTRIBUTORS +540 -0
- data/MIT-LICENSE +20 -0
- data/README.md +226 -0
- data/lib/active_merchant.rb +67 -0
- data/lib/active_merchant/billing.rb +15 -0
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +72 -0
- data/lib/active_merchant/billing/check.rb +76 -0
- data/lib/active_merchant/billing/compatibility.rb +120 -0
- data/lib/active_merchant/billing/credit_card.rb +404 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +195 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/gateway.rb +291 -0
- data/lib/active_merchant/billing/gateways.rb +14 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +203 -0
- data/lib/active_merchant/billing/gateways/app55.rb +176 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +510 -0
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +976 -0
- data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +256 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +105 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +314 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
- data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +192 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +389 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +58 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +506 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +140 -0
- data/lib/active_merchant/billing/gateways/borgun.rb +211 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +574 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +20 -0
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +189 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +238 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +202 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +201 -0
- data/lib/active_merchant/billing/gateways/cecabank.rb +229 -0
- data/lib/active_merchant/billing/gateways/cenpos.rb +262 -0
- data/lib/active_merchant/billing/gateways/certo_direct.rb +278 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +216 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +200 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +143 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +210 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +720 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +600 -0
- data/lib/active_merchant/billing/gateways/dibs.rb +206 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +219 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +348 -0
- data/lib/active_merchant/billing/gateways/epay.rb +274 -0
- data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
- data/lib/active_merchant/billing/gateways/eway.rb +214 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +291 -0
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +522 -0
- data/lib/active_merchant/billing/gateways/exact.rb +227 -0
- data/lib/active_merchant/billing/gateways/ezic.rb +206 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +213 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +160 -0
- data/lib/active_merchant/billing/gateways/finansbank.rb +23 -0
- data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +160 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +413 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +261 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +179 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +207 -0
- data/lib/active_merchant/billing/gateways/hps.rb +287 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +277 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +246 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +66 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +219 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +163 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +175 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +457 -0
- data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +275 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +438 -0
- data/lib/active_merchant/billing/gateways/litle.rb +345 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +197 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +170 -0
- data/lib/active_merchant/billing/gateways/merchant_one.rb +114 -0
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +319 -0
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +268 -0
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +195 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +326 -0
- data/lib/active_merchant/billing/gateways/metrics_global.rb +303 -0
- data/lib/active_merchant/billing/gateways/migs.rb +280 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +219 -0
- data/lib/active_merchant/billing/gateways/monei.rb +307 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +309 -0
- data/lib/active_merchant/billing/gateways/moneris_us.rb +298 -0
- data/lib/active_merchant/billing/gateways/money_movers.rb +152 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +290 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +181 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +224 -0
- data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
- data/lib/active_merchant/billing/gateways/network_merchants.rb +242 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +256 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +435 -0
- data/lib/active_merchant/billing/gateways/omise.rb +319 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +194 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +314 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +834 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +47 -0
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +207 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +246 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +112 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +188 -0
- data/lib/active_merchant/billing/gateways/payex.rb +412 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +308 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +220 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +224 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +353 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +282 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +129 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +679 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +65 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +264 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +162 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +199 -0
- data/lib/active_merchant/billing/gateways/payu_in.rb +247 -0
- data/lib/active_merchant/billing/gateways/payway.rb +207 -0
- data/lib/active_merchant/billing/gateways/pin.rb +207 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +216 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +303 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +292 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +276 -0
- data/lib/active_merchant/billing/gateways/quickbooks.rb +280 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +26 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +188 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +240 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +227 -0
- data/lib/active_merchant/billing/gateways/qvalent.rb +179 -0
- data/lib/active_merchant/billing/gateways/realex.rb +298 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +406 -0
- data/lib/active_merchant/billing/gateways/s5.rb +226 -0
- data/lib/active_merchant/billing/gateways/sage.rb +173 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +89 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +115 -0
- data/lib/active_merchant/billing/gateways/sage/sage_vault.rb +149 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +399 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +143 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +263 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +201 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +281 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +105 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +451 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +283 -0
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +247 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +489 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +157 -0
- data/lib/active_merchant/billing/gateways/tns.rb +227 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +126 -0
- data/lib/active_merchant/billing/gateways/transax.rb +23 -0
- data/lib/active_merchant/billing/gateways/transnational.rb +10 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +416 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1516 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +259 -0
- data/lib/active_merchant/billing/gateways/vanco.rb +280 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +225 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +183 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
- data/lib/active_merchant/billing/gateways/wepay.rb +205 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +420 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +331 -0
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +204 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +181 -0
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +24 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +92 -0
- data/lib/active_merchant/connection.rb +172 -0
- data/lib/active_merchant/country.rb +332 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +35 -0
- data/lib/active_merchant/network_connection_retries.rb +79 -0
- data/lib/active_merchant/post_data.rb +24 -0
- data/lib/active_merchant/posts_data.rb +84 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +3866 -0
- data/lib/support/gateway_support.rb +71 -0
- data/lib/support/outbound_hosts.rb +28 -0
- data/lib/support/ssl_verify.rb +93 -0
- metadata +387 -0
@@ -0,0 +1,225 @@
|
|
1
|
+
require 'rexml/document'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class VerifiGateway < Gateway
|
6
|
+
class VerifiPostData < PostData
|
7
|
+
# Fields that will be sent even if they are blank
|
8
|
+
self.required_fields = [ :amount, :type, :ccnumber, :ccexp, :firstname, :lastname,
|
9
|
+
:company, :address1, :address2, :city, :state, :zip, :country, :phone ]
|
10
|
+
end
|
11
|
+
|
12
|
+
self.live_url = self.test_url = 'https://secure.verifi.com/gw/api/transact.php'
|
13
|
+
|
14
|
+
RESPONSE_CODE_MESSAGES = {
|
15
|
+
"100" => "Transaction was Approved",
|
16
|
+
"200" => "Transaction was Declined by Processor",
|
17
|
+
"201" => "Do Not Honor",
|
18
|
+
"202" => "Insufficient Funds",
|
19
|
+
"203" => "Over Limit",
|
20
|
+
"204" => "Transaction not allowed",
|
21
|
+
"220" => "Incorrect payment Data",
|
22
|
+
"221" => "No Such Card Issuer",
|
23
|
+
"222" => "No Card Number on file with Issuer",
|
24
|
+
"223" => "Expired Card",
|
25
|
+
"224" => "Invalid Expiration Date",
|
26
|
+
"225" => "Invalid Card Security Code",
|
27
|
+
"240" => "Call Issuer for Further Information",
|
28
|
+
"250" => "Pick Up Card",
|
29
|
+
"251" => "Lost Card",
|
30
|
+
"252" => "Stolen Card",
|
31
|
+
"253" => "Fraudulent Card",
|
32
|
+
"260" => "Declined With further Instructions Available (see response text)",
|
33
|
+
"261" => "Declined - Stop All Recurring Payments",
|
34
|
+
"262" => "Declined - Stop this Recurring Program",
|
35
|
+
"263" => "Declined - Update Cardholder Data Available",
|
36
|
+
"264" => "Declined - Retry in a few days",
|
37
|
+
"300" => "Transaction was Rejected by Gateway",
|
38
|
+
"400" => "Transaction Error Returned by Processor",
|
39
|
+
"410" => "Invalid Merchant Configuration",
|
40
|
+
"411" => "Merchant Account is Inactive",
|
41
|
+
"420" => "Communication Error",
|
42
|
+
"421" => "Communication Error with Issuer",
|
43
|
+
"430" => "Duplicate Transaction at Processor",
|
44
|
+
"440" => "Processor Format Error",
|
45
|
+
"441" => "Invalid Transaction Information",
|
46
|
+
"460" => "Processor Feature Not Available",
|
47
|
+
"461" => "Unsupported Card Type"
|
48
|
+
}
|
49
|
+
|
50
|
+
SUCCESS = 1
|
51
|
+
|
52
|
+
TRANSACTIONS = {
|
53
|
+
:authorization => 'auth',
|
54
|
+
:purchase => 'sale',
|
55
|
+
:capture => 'capture',
|
56
|
+
:void => 'void',
|
57
|
+
:credit => 'credit',
|
58
|
+
:refund => 'refund'
|
59
|
+
}
|
60
|
+
|
61
|
+
self.supported_countries = ['US']
|
62
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
63
|
+
self.homepage_url = 'http://www.verifi.com/'
|
64
|
+
self.display_name = 'Verifi'
|
65
|
+
|
66
|
+
def initialize(options = {})
|
67
|
+
requires!(options, :login, :password)
|
68
|
+
super
|
69
|
+
end
|
70
|
+
|
71
|
+
def purchase(money, credit_card, options = {})
|
72
|
+
sale_authorization_or_credit_template(:purchase, money, credit_card, options)
|
73
|
+
end
|
74
|
+
|
75
|
+
def authorize(money, credit_card, options = {})
|
76
|
+
sale_authorization_or_credit_template(:authorization, money, credit_card, options)
|
77
|
+
end
|
78
|
+
|
79
|
+
def capture(money, authorization, options = {})
|
80
|
+
capture_void_or_refund_template(:capture, money, authorization, options)
|
81
|
+
end
|
82
|
+
|
83
|
+
def void(authorization, options = {})
|
84
|
+
capture_void_or_refund_template(:void, 0, authorization, options)
|
85
|
+
end
|
86
|
+
|
87
|
+
def credit(money, credit_card_or_authorization, options = {})
|
88
|
+
if credit_card_or_authorization.is_a?(String)
|
89
|
+
ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE
|
90
|
+
refund(money, credit_card_or_authorization, options)
|
91
|
+
else
|
92
|
+
sale_authorization_or_credit_template(:credit, money, credit_card_or_authorization, options)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def refund(money, reference, options = {})
|
97
|
+
capture_void_or_refund_template(:refund, money, reference, options)
|
98
|
+
end
|
99
|
+
|
100
|
+
private
|
101
|
+
|
102
|
+
def sale_authorization_or_credit_template(trx_type, money, credit_card, options = {})
|
103
|
+
post = VerifiPostData.new
|
104
|
+
add_security_key_data(post, options, money)
|
105
|
+
add_credit_card(post, credit_card)
|
106
|
+
add_addresses(post, options)
|
107
|
+
add_customer_data(post, options)
|
108
|
+
add_invoice_data(post, options)
|
109
|
+
add_optional_data(post, options)
|
110
|
+
commit(trx_type, money, post)
|
111
|
+
end
|
112
|
+
|
113
|
+
def capture_void_or_refund_template(trx_type, money, authorization, options)
|
114
|
+
post = VerifiPostData.new
|
115
|
+
post[:transactionid] = authorization
|
116
|
+
|
117
|
+
commit(trx_type, money, post)
|
118
|
+
end
|
119
|
+
|
120
|
+
def add_credit_card(post, credit_card)
|
121
|
+
post[:ccnumber] = credit_card.number
|
122
|
+
post[:ccexp] = expdate(credit_card)
|
123
|
+
post[:firstname] = credit_card.first_name
|
124
|
+
post[:lastname] = credit_card.last_name
|
125
|
+
post[:cvv] = credit_card.verification_value
|
126
|
+
end
|
127
|
+
|
128
|
+
def add_addresses(post, options)
|
129
|
+
if billing_address = options[:billing_address] || options[:address]
|
130
|
+
post[:company] = billing_address[:company]
|
131
|
+
post[:address1] = billing_address[:address1]
|
132
|
+
post[:address2] = billing_address[:address2]
|
133
|
+
post[:city] = billing_address[:city]
|
134
|
+
post[:state] = billing_address[:state]
|
135
|
+
post[:zip] = billing_address[:zip]
|
136
|
+
post[:country] = billing_address[:country]
|
137
|
+
post[:phone] = billing_address[:phone]
|
138
|
+
post[:fax] = billing_address[:fax]
|
139
|
+
end
|
140
|
+
|
141
|
+
if shipping_address = options[:shipping_address]
|
142
|
+
post[:shipping_firstname] = shipping_address[:first_name]
|
143
|
+
post[:shipping_lastname] = shipping_address[:last_name]
|
144
|
+
post[:shipping_company] = shipping_address[:company]
|
145
|
+
post[:shipping_address1] = shipping_address[:address1]
|
146
|
+
post[:shipping_address2] = shipping_address[:address2]
|
147
|
+
post[:shipping_city] = shipping_address[:city]
|
148
|
+
post[:shipping_state] = shipping_address[:state]
|
149
|
+
post[:shipping_zip] = shipping_address[:zip]
|
150
|
+
post[:shipping_country] = shipping_address[:country]
|
151
|
+
post[:shipping_email] = shipping_address[:email]
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
def add_customer_data(post, options)
|
156
|
+
post[:email] = options[:email]
|
157
|
+
post[:ipaddress] = options[:ip]
|
158
|
+
end
|
159
|
+
|
160
|
+
def add_invoice_data(post, options)
|
161
|
+
post[:orderid] = options[:order_id]
|
162
|
+
post[:ponumber] = options[:invoice]
|
163
|
+
post[:orderdescription] = options[:description]
|
164
|
+
post[:tax] = options[:tax]
|
165
|
+
post[:shipping] = options[:shipping]
|
166
|
+
end
|
167
|
+
|
168
|
+
def add_optional_data(post, options)
|
169
|
+
post[:billing_method] = options[:billing_method]
|
170
|
+
post[:website] = options[:website]
|
171
|
+
post[:descriptor] = options[:descriptor]
|
172
|
+
post[:descriptor_phone] = options[:descriptor_phone]
|
173
|
+
post[:cardholder_auth] = options[:cardholder_auth]
|
174
|
+
post[:cavv] = options[:cavv]
|
175
|
+
post[:xid] = options[:xid]
|
176
|
+
post[:customer_receipt] = options[:customer_receipt]
|
177
|
+
end
|
178
|
+
|
179
|
+
def add_security_key_data(post, options, money)
|
180
|
+
# MD5(username|password|orderid|amount|time)
|
181
|
+
now = Time.now.to_i.to_s
|
182
|
+
md5 = Digest::MD5.new
|
183
|
+
md5 << @options[:login].to_s + "|"
|
184
|
+
md5 << @options[:password].to_s + "|"
|
185
|
+
md5 << options[:order_id].to_s + "|"
|
186
|
+
md5 << amount(money).to_s + "|"
|
187
|
+
md5 << now
|
188
|
+
post[:key] = md5.hexdigest
|
189
|
+
post[:time] = now
|
190
|
+
end
|
191
|
+
|
192
|
+
def commit(trx_type, money, post)
|
193
|
+
post[:amount] = amount(money)
|
194
|
+
|
195
|
+
response = parse( ssl_post(self.live_url, post_data(trx_type, post)) )
|
196
|
+
|
197
|
+
Response.new(response[:response].to_i == SUCCESS, message_from(response), response,
|
198
|
+
:test => test?,
|
199
|
+
:authorization => response[:transactionid],
|
200
|
+
:avs_result => { :code => response[:avsresponse] },
|
201
|
+
:cvv_result => response[:cvvresponse]
|
202
|
+
)
|
203
|
+
end
|
204
|
+
|
205
|
+
def message_from(response)
|
206
|
+
response[:response_code_message] ? response[:response_code_message] : ""
|
207
|
+
end
|
208
|
+
|
209
|
+
def parse(body)
|
210
|
+
results = {}
|
211
|
+
CGI.parse(body).each { |key, value| results[key.intern] = value[0] }
|
212
|
+
results[:response_code_message] = RESPONSE_CODE_MESSAGES[results[:response_code]] if results[:response_code]
|
213
|
+
results
|
214
|
+
end
|
215
|
+
|
216
|
+
def post_data(trx_type, post)
|
217
|
+
post[:username] = @options[:login]
|
218
|
+
post[:password] = @options[:password]
|
219
|
+
post[:type] = TRANSACTIONS[trx_type]
|
220
|
+
|
221
|
+
post.to_s
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class ViaklixGateway < Gateway
|
4
|
+
class_attribute :test_url, :live_url, :delimiter, :actions
|
5
|
+
|
6
|
+
self.test_url = 'https://demo.viaklix.com/process.asp'
|
7
|
+
self.live_url = 'https://www.viaklix.com/process.asp'
|
8
|
+
self.delimiter = "\r\n"
|
9
|
+
|
10
|
+
self.actions = {
|
11
|
+
:purchase => 'SALE',
|
12
|
+
:credit => 'CREDIT'
|
13
|
+
}
|
14
|
+
|
15
|
+
APPROVED = '0'
|
16
|
+
|
17
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
18
|
+
self.supported_countries = ['US']
|
19
|
+
self.display_name = 'ViaKLIX'
|
20
|
+
self.homepage_url = 'http://viaklix.com'
|
21
|
+
|
22
|
+
# Initialize the Gateway
|
23
|
+
#
|
24
|
+
# The gateway requires that a valid login and password be passed
|
25
|
+
# in the +options+ hash.
|
26
|
+
#
|
27
|
+
# ==== Options
|
28
|
+
#
|
29
|
+
# * <tt>:login</tt> -- Merchant ID
|
30
|
+
# * <tt>:password</tt> -- PIN
|
31
|
+
# * <tt>:user</tt> -- Specify a subuser of the account (optional)
|
32
|
+
# * <tt>:test => +true+ or +false+</tt> -- Force test transactions
|
33
|
+
def initialize(options = {})
|
34
|
+
requires!(options, :login, :password)
|
35
|
+
super
|
36
|
+
end
|
37
|
+
|
38
|
+
# Make a purchase
|
39
|
+
def purchase(money, creditcard, options = {})
|
40
|
+
form = {}
|
41
|
+
add_invoice(form, options)
|
42
|
+
add_creditcard(form, creditcard)
|
43
|
+
add_address(form, options)
|
44
|
+
add_customer_data(form, options)
|
45
|
+
add_test_mode(form, options)
|
46
|
+
commit(:purchase, money, form)
|
47
|
+
end
|
48
|
+
|
49
|
+
# Make a credit to a card (Void can only be done from the virtual terminal)
|
50
|
+
# Viaklix does not support credits by reference. You must pass in the credit card
|
51
|
+
def credit(money, creditcard, options = {})
|
52
|
+
if creditcard.is_a?(String)
|
53
|
+
raise ArgumentError, "Reference credits are not supported. Please supply the original credit card"
|
54
|
+
end
|
55
|
+
|
56
|
+
form = {}
|
57
|
+
add_invoice(form, options)
|
58
|
+
add_creditcard(form, creditcard)
|
59
|
+
add_address(form, options)
|
60
|
+
add_customer_data(form, options)
|
61
|
+
add_test_mode(form, options)
|
62
|
+
commit(:credit, money, form)
|
63
|
+
end
|
64
|
+
|
65
|
+
private
|
66
|
+
def add_test_mode(form, options)
|
67
|
+
form[:test_mode] = 'TRUE' if options[:test_mode]
|
68
|
+
end
|
69
|
+
|
70
|
+
def add_customer_data(form, options)
|
71
|
+
form[:email] = options[:email].to_s.slice(0, 100) unless options[:email].blank?
|
72
|
+
form[:customer_code] = options[:customer].to_s.slice(0, 10) unless options[:customer].blank?
|
73
|
+
end
|
74
|
+
|
75
|
+
def add_invoice(form,options)
|
76
|
+
form[:invoice_number] = (options[:order_id] || options[:invoice]).to_s.slice(0, 10)
|
77
|
+
form[:description] = options[:description].to_s.slice(0, 255)
|
78
|
+
end
|
79
|
+
|
80
|
+
def add_address(form,options)
|
81
|
+
billing_address = options[:billing_address] || options[:address]
|
82
|
+
|
83
|
+
if billing_address
|
84
|
+
form[:avs_address] = billing_address[:address1].to_s.slice(0, 30)
|
85
|
+
form[:address2] = billing_address[:address2].to_s.slice(0, 30)
|
86
|
+
form[:avs_zip] = billing_address[:zip].to_s.slice(0, 10)
|
87
|
+
form[:city] = billing_address[:city].to_s.slice(0, 30)
|
88
|
+
form[:state] = billing_address[:state].to_s.slice(0, 10)
|
89
|
+
form[:company] = billing_address[:company].to_s.slice(0, 50)
|
90
|
+
form[:phone] = billing_address[:phone].to_s.slice(0, 20)
|
91
|
+
form[:country] = billing_address[:country].to_s.slice(0, 50)
|
92
|
+
end
|
93
|
+
|
94
|
+
if shipping_address = options[:shipping_address]
|
95
|
+
first_name, last_name = parse_first_and_last_name(shipping_address[:name])
|
96
|
+
form[:ship_to_first_name] = first_name.to_s.slice(0, 20)
|
97
|
+
form[:ship_to_last_name] = last_name.to_s.slice(0, 30)
|
98
|
+
form[:ship_to_address] = shipping_address[:address1].to_s.slice(0, 30)
|
99
|
+
form[:ship_to_city] = shipping_address[:city].to_s.slice(0, 30)
|
100
|
+
form[:ship_to_state] = shipping_address[:state].to_s.slice(0, 10)
|
101
|
+
form[:ship_to_company] = shipping_address[:company].to_s.slice(0, 50)
|
102
|
+
form[:ship_to_country] = shipping_address[:country].to_s.slice(0, 50)
|
103
|
+
form[:ship_to_zip] = shipping_address[:zip].to_s.slice(0, 10)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def parse_first_and_last_name(value)
|
108
|
+
name = value.to_s.split(' ')
|
109
|
+
|
110
|
+
last_name = name.pop || ''
|
111
|
+
first_name = name.join(' ')
|
112
|
+
[ first_name, last_name ]
|
113
|
+
end
|
114
|
+
|
115
|
+
def add_creditcard(form, creditcard)
|
116
|
+
form[:card_number] = creditcard.number
|
117
|
+
form[:exp_date] = expdate(creditcard)
|
118
|
+
|
119
|
+
if creditcard.verification_value?
|
120
|
+
add_verification_value(form, creditcard)
|
121
|
+
end
|
122
|
+
|
123
|
+
form[:first_name] = creditcard.first_name.to_s.slice(0, 20)
|
124
|
+
form[:last_name] = creditcard.last_name.to_s.slice(0, 30)
|
125
|
+
end
|
126
|
+
|
127
|
+
def add_verification_value(form, creditcard)
|
128
|
+
form[:cvv2cvc2] = creditcard.verification_value
|
129
|
+
form[:cvv2] = 'present'
|
130
|
+
end
|
131
|
+
|
132
|
+
def preamble
|
133
|
+
result = {
|
134
|
+
'merchant_id' => @options[:login],
|
135
|
+
'pin' => @options[:password],
|
136
|
+
'show_form' => 'false',
|
137
|
+
'result_format' => 'ASCII'
|
138
|
+
}
|
139
|
+
|
140
|
+
result['user_id'] = @options[:user] unless @options[:user].blank?
|
141
|
+
result
|
142
|
+
end
|
143
|
+
|
144
|
+
def commit(action, money, parameters)
|
145
|
+
parameters[:amount] = amount(money)
|
146
|
+
parameters[:transaction_type] = self.actions[action]
|
147
|
+
|
148
|
+
response = parse( ssl_post(test? ? self.test_url : self.live_url, post_data(parameters)) )
|
149
|
+
|
150
|
+
Response.new(response['result'] == APPROVED, message_from(response), response,
|
151
|
+
:test => @options[:test] || test?,
|
152
|
+
:authorization => authorization_from(response),
|
153
|
+
:avs_result => { :code => response['avs_response'] },
|
154
|
+
:cvv_result => response['cvv2_response']
|
155
|
+
)
|
156
|
+
end
|
157
|
+
|
158
|
+
def authorization_from(response)
|
159
|
+
response['txn_id']
|
160
|
+
end
|
161
|
+
|
162
|
+
def message_from(response)
|
163
|
+
response['result_message']
|
164
|
+
end
|
165
|
+
|
166
|
+
def post_data(parameters)
|
167
|
+
result = preamble
|
168
|
+
result.merge!(parameters)
|
169
|
+
result.collect { |key, value| "ssl_#{key}=#{CGI.escape(value.to_s)}" }.join("&")
|
170
|
+
end
|
171
|
+
|
172
|
+
# Parse the response message
|
173
|
+
def parse(msg)
|
174
|
+
resp = {}
|
175
|
+
msg.split(self.delimiter).collect{|li|
|
176
|
+
key, value = li.split("=")
|
177
|
+
resp[key.strip.gsub(/^ssl_/, '')] = value.to_s.strip
|
178
|
+
}
|
179
|
+
resp
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class WebpayGateway < StripeGateway
|
6
|
+
self.live_url = 'https://api.webpay.jp/v1/'
|
7
|
+
|
8
|
+
self.supported_countries = ['JP']
|
9
|
+
self.default_currency = 'JPY'
|
10
|
+
self.money_format = :cents
|
11
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :jcb, :diners_club]
|
12
|
+
|
13
|
+
self.homepage_url = 'https://webpay.jp/'
|
14
|
+
self.display_name = 'WebPay'
|
15
|
+
|
16
|
+
def capture(money, authorization, options = {})
|
17
|
+
post = {}
|
18
|
+
add_amount(post, money, options)
|
19
|
+
add_application_fee(post, options)
|
20
|
+
commit(:post, "charges/#{CGI.escape(authorization)}/capture", post)
|
21
|
+
end
|
22
|
+
|
23
|
+
def refund(money, identification, options = {})
|
24
|
+
post = {}
|
25
|
+
add_amount(post, money, options)
|
26
|
+
MultiResponse.run do |r|
|
27
|
+
r.process { commit(:post, "charges/#{CGI.escape(identification)}/refund", post, options) }
|
28
|
+
|
29
|
+
return r unless options[:refund_fee_amount]
|
30
|
+
|
31
|
+
r.process { fetch_application_fees(identification, options) }
|
32
|
+
r.process { refund_application_fee(options[:refund_fee_amount], application_fee_from_response(r), options) }
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def refund_fee(identification, options, meta)
|
37
|
+
raise NotImplementedError.new
|
38
|
+
end
|
39
|
+
|
40
|
+
def add_customer(post, creditcard, options)
|
41
|
+
post[:customer] = options[:customer] if options[:customer] && !creditcard.respond_to?(:number)
|
42
|
+
end
|
43
|
+
|
44
|
+
def store(creditcard, options = {})
|
45
|
+
post = {}
|
46
|
+
add_creditcard(post, creditcard, options)
|
47
|
+
post[:description] = options[:description]
|
48
|
+
post[:email] = options[:email]
|
49
|
+
|
50
|
+
if options[:customer]
|
51
|
+
MultiResponse.run(:first) do |r|
|
52
|
+
r.process { commit(:post, "customers/#{CGI.escape(options[:customer])}/", post, options) }
|
53
|
+
|
54
|
+
return r unless options[:set_default] and r.success? and !r.params["id"].blank?
|
55
|
+
|
56
|
+
r.process { update_customer(options[:customer], :default_card => r.params["id"]) }
|
57
|
+
end
|
58
|
+
else
|
59
|
+
commit(:post, 'customers', post, options)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def update(customer_id, creditcard, options = {})
|
64
|
+
post = {}
|
65
|
+
add_creditcard(post, creditcard, options)
|
66
|
+
commit(:post, "customers/#{CGI.escape(customer_id)}", post, options)
|
67
|
+
end
|
68
|
+
|
69
|
+
private
|
70
|
+
|
71
|
+
def create_post_for_auth_or_purchase(money, creditcard, options)
|
72
|
+
stripe_post = super
|
73
|
+
stripe_post[:description] ||= stripe_post.delete(:metadata).try(:[], :email)
|
74
|
+
stripe_post
|
75
|
+
end
|
76
|
+
|
77
|
+
def json_error(raw_response)
|
78
|
+
msg = 'Invalid response received from the WebPay API. Please contact support@webpay.jp if you continue to receive this message.'
|
79
|
+
msg += " (The raw response returned by the API was #{raw_response.inspect})"
|
80
|
+
{
|
81
|
+
"error" => {
|
82
|
+
"message" => msg
|
83
|
+
}
|
84
|
+
}
|
85
|
+
end
|
86
|
+
|
87
|
+
def headers(options = {})
|
88
|
+
{
|
89
|
+
"Authorization" => "Basic " + Base64.encode64(@api_key.to_s + ":").strip,
|
90
|
+
"User-Agent" => "Webpay/v1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
|
91
|
+
"X-Webpay-Client-User-Agent" => user_agent,
|
92
|
+
"X-Webpay-Client-User-Metadata" => {:ip => options[:ip]}.to_json
|
93
|
+
}
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|