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,202 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class CashnetGateway < Gateway
|
4
|
+
self.live_url = "https://commerce.cashnet.com/"
|
5
|
+
|
6
|
+
self.supported_countries = ["US"]
|
7
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb]
|
8
|
+
self.homepage_url = "http://www.higherone.com/"
|
9
|
+
self.display_name = "Cashnet"
|
10
|
+
self.money_format = :dollars
|
11
|
+
|
12
|
+
# Creates a new CashnetGateway
|
13
|
+
#
|
14
|
+
# ==== Options
|
15
|
+
#
|
16
|
+
# * <tt>:merchant</tt> -- Gateway Merchant (REQUIRED)
|
17
|
+
# * <tt>:operator</tt> -- Operator (REQUIRED)
|
18
|
+
# * <tt>:password</tt> -- Password (REQUIRED)
|
19
|
+
# * <tt>:merchant_gateway_name</tt> -- Site name (REQUIRED)
|
20
|
+
# * <tt>:station</tt> -- Station (defaults to "WEB")
|
21
|
+
# * <tt>:custcode</tt> -- Customer code (defaults to
|
22
|
+
# "ActiveMerchant/#{ActiveMerchant::VERSION}")
|
23
|
+
# * <tt>:default_item_code</tt> -- Default item code (defaults to "FEE",
|
24
|
+
# can be overridden on a per-transaction basis with options[:item_code])
|
25
|
+
def initialize(options = {})
|
26
|
+
requires!(
|
27
|
+
options,
|
28
|
+
:merchant,
|
29
|
+
:operator,
|
30
|
+
:password,
|
31
|
+
:merchant_gateway_name
|
32
|
+
)
|
33
|
+
options[:default_item_code] ||= "FEE"
|
34
|
+
super
|
35
|
+
end
|
36
|
+
|
37
|
+
def purchase(money, payment_object, options = {})
|
38
|
+
post = {}
|
39
|
+
add_creditcard(post, payment_object)
|
40
|
+
add_invoice(post, options)
|
41
|
+
add_address(post, options)
|
42
|
+
add_customer_data(post, options)
|
43
|
+
commit('SALE', money, post)
|
44
|
+
end
|
45
|
+
|
46
|
+
def refund(money, identification, options = {})
|
47
|
+
post = {}
|
48
|
+
post[:origtx] = identification
|
49
|
+
add_invoice(post, options)
|
50
|
+
commit('REFUND', money, post)
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def commit(action, money, fields)
|
56
|
+
fields[:amount] = amount(money)
|
57
|
+
url = live_url + CGI.escape(@options[:merchant_gateway_name])
|
58
|
+
raw_response = ssl_post(url, post_data(action, fields))
|
59
|
+
parsed_response = parse(raw_response)
|
60
|
+
|
61
|
+
return unparsable_response(raw_response) unless parsed_response
|
62
|
+
|
63
|
+
success = (parsed_response[:result] == '0')
|
64
|
+
Response.new(
|
65
|
+
success,
|
66
|
+
CASHNET_CODES[parsed_response[:result]],
|
67
|
+
parsed_response,
|
68
|
+
test: test?,
|
69
|
+
authorization: (success ? parsed_response[:tx] : '')
|
70
|
+
)
|
71
|
+
end
|
72
|
+
|
73
|
+
def post_data(action, parameters = {})
|
74
|
+
post = {}
|
75
|
+
post[:command] = action
|
76
|
+
post[:merchant] = @options[:merchant]
|
77
|
+
post[:operator] = @options[:operator]
|
78
|
+
post[:password] = @options[:password]
|
79
|
+
post[:station] = (@options[:station] || "WEB")
|
80
|
+
post[:custcode] = (@options[:custcode] || "ActiveMerchant/#{ActiveMerchant::VERSION}")
|
81
|
+
post.merge(parameters).collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join("&")
|
82
|
+
end
|
83
|
+
|
84
|
+
def add_creditcard(post, creditcard)
|
85
|
+
post[:cardno] = creditcard.number
|
86
|
+
post[:cid] = creditcard.verification_value
|
87
|
+
post[:expdate] = expdate(creditcard)
|
88
|
+
post[:card_name_g] = creditcard.name
|
89
|
+
post[:fname] = creditcard.first_name
|
90
|
+
post[:lname] = creditcard.last_name
|
91
|
+
end
|
92
|
+
|
93
|
+
def add_invoice(post, options)
|
94
|
+
post[:order_number] = options[:order_id] if options[:order_id].present?
|
95
|
+
post[:itemcode] = (options[:item_code] || @options[:default_item_code])
|
96
|
+
end
|
97
|
+
|
98
|
+
def add_address(post, options)
|
99
|
+
if address = (options[:shipping_address] || options[:billing_address] || options[:address])
|
100
|
+
post[:addr_g] = String(address[:address1]) + ',' + String(address[:address2])
|
101
|
+
post[:city_g] = address[:city]
|
102
|
+
post[:state_g] = address[:state]
|
103
|
+
post[:zip_g] = address[:zip]
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def add_customer_data(post, options)
|
108
|
+
post[:email_g] = options[:email]
|
109
|
+
end
|
110
|
+
|
111
|
+
def expdate(creditcard)
|
112
|
+
year = format(creditcard.year, :two_digits)
|
113
|
+
month = format(creditcard.month, :two_digits)
|
114
|
+
|
115
|
+
"#{month}#{year}"
|
116
|
+
end
|
117
|
+
|
118
|
+
def parse(body)
|
119
|
+
match = body.match(/<cngateway>(.*)<\/cngateway>/)
|
120
|
+
return nil unless match
|
121
|
+
|
122
|
+
Hash[CGI::parse(match[1]).map{|k,v| [k.to_sym,v.first]}]
|
123
|
+
end
|
124
|
+
|
125
|
+
def handle_response(response)
|
126
|
+
if (200...300).include?(response.code.to_i)
|
127
|
+
return response.body
|
128
|
+
elsif 302 == response.code.to_i
|
129
|
+
return ssl_get(URI.parse(response['location']))
|
130
|
+
end
|
131
|
+
raise ResponseError.new(response)
|
132
|
+
end
|
133
|
+
|
134
|
+
def unparsable_response(raw_response)
|
135
|
+
message = "Unparsable response received from Cashnet. Please contact Cashnet if you continue to receive this message."
|
136
|
+
message += " (The raw response returned by the API was #{raw_response.inspect})"
|
137
|
+
return Response.new(false, message)
|
138
|
+
end
|
139
|
+
|
140
|
+
CASHNET_CODES = {
|
141
|
+
'0' => 'Success',
|
142
|
+
'1' => 'Invalid customer code, no customer code specified',
|
143
|
+
'2' => 'Invalid operator code, no operator specified',
|
144
|
+
'3' => 'Invalid workstation code, no station specified',
|
145
|
+
'4' => 'Invalid item code, no code specified',
|
146
|
+
'5' => 'Negative amount is not allowed',
|
147
|
+
'6' => 'Invalid credit card number, no credit card number provided',
|
148
|
+
'7' => 'Invalid expiration date, no expiration date provided',
|
149
|
+
'8' => 'Please only provide either ACH or credit card information',
|
150
|
+
'9' => 'Invalid ACH account number, no account number provided',
|
151
|
+
'10' => 'Invalid routing/transit number, no routing/transit number provided',
|
152
|
+
'11' => 'Invalid account type, no account type provided',
|
153
|
+
'12' => 'Invalid check digit for routing/transit number',
|
154
|
+
'13' => 'No ACH merchant account set up for the location of the station being used',
|
155
|
+
'21' => 'Invalid merchant code, no merchant code provided',
|
156
|
+
'22' => 'Invalid client code, no client code provided',
|
157
|
+
'23' => 'Invalid password, no password provided',
|
158
|
+
'24' => 'Invalid transaction type, no transaction type provided',
|
159
|
+
'25' => 'Invalid amount, amount not provided',
|
160
|
+
'26' => 'Invalid payment code provided',
|
161
|
+
'27' => 'Invalid version number, version not found',
|
162
|
+
'31' => 'Application amount exceeds account balance',
|
163
|
+
'150' => 'Invalid payment information, no payment information provided',
|
164
|
+
'200' => 'Invalid command',
|
165
|
+
'201' => 'Customer not on file',
|
166
|
+
'205' => 'Invalid operator or password',
|
167
|
+
'206' => 'Operator is not authorized for this function',
|
168
|
+
'208' => 'Customer/PIN authentication unsuccessful',
|
169
|
+
'209' => 'Credit card error',
|
170
|
+
'211' => 'Credit card error',
|
171
|
+
'212' => 'Customer/PIN not on file',
|
172
|
+
'213' => 'Customer information not on file',
|
173
|
+
'215' => 'Old PIN does not validate ',
|
174
|
+
'221' => 'Invalid credit card processor type specified in location or payment code',
|
175
|
+
'222' => 'Credit card processor error',
|
176
|
+
'280' => 'SmartPay transaction not posted',
|
177
|
+
'301' => 'Original transaction not found for this customer',
|
178
|
+
'302' => 'Amount to refund exceeds original payment amount or is missing',
|
179
|
+
'304' => 'Original credit card payment not found or corrupted',
|
180
|
+
'305' => 'Refund amounts should be expressed as positive amounts',
|
181
|
+
'306' => 'Original ACH payment not found',
|
182
|
+
'307' => 'Original electronic payment not found',
|
183
|
+
'308' => 'Invalid original transaction number, original transaction number not found',
|
184
|
+
'310' => 'Refund amount exceeds amount still available for a refund',
|
185
|
+
'321' => 'Store has not been implemented',
|
186
|
+
'501' => 'Unable to roll over batch',
|
187
|
+
'502' => 'Batch not found',
|
188
|
+
'503' => 'Batch information not available',
|
189
|
+
'650' => 'Invalid quick code',
|
190
|
+
'651' => 'Transaction amount does not match amount specified in quick code',
|
191
|
+
'652' => 'Invalid item code in the detail of the quick code',
|
192
|
+
'701' => 'This website has been disabled. Please contact the system administrator.',
|
193
|
+
'702' => 'Improper merchant code. Please contact the system administrator.',
|
194
|
+
'703' => 'This site is temporarily down for maintenance. We regret the inconvenience. Please try again later.',
|
195
|
+
'704' => 'Duplicate item violation. Please contact the system administrator.',
|
196
|
+
'705' => 'An invalid reference type has been passed into the system. Please contact the system administrator',
|
197
|
+
'706' => 'Items violating unique selection have been passed in. Please contact the system administrator.',
|
198
|
+
'999' => 'An unexpected error has occurred. Please consult the event log.'
|
199
|
+
}
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
@@ -0,0 +1,201 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
# CC5 API is used by many banks in Turkey. Extend this base class to provide
|
4
|
+
# concrete implementations.
|
5
|
+
class CC5Gateway < Gateway
|
6
|
+
self.default_currency = 'TRY'
|
7
|
+
|
8
|
+
CURRENCY_CODES = {
|
9
|
+
'TRY' => 949,
|
10
|
+
'YTL' => 949,
|
11
|
+
'TRL' => 949,
|
12
|
+
'TL' => 949,
|
13
|
+
'USD' => 840,
|
14
|
+
'EUR' => 978,
|
15
|
+
'GBP' => 826,
|
16
|
+
'JPY' => 392
|
17
|
+
}
|
18
|
+
|
19
|
+
def initialize(options = {})
|
20
|
+
requires!(options, :login, :password, :client_id)
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def purchase(money, creditcard, options = {})
|
25
|
+
commit(build_sale_request('Auth', money, creditcard, options))
|
26
|
+
end
|
27
|
+
|
28
|
+
def authorize(money, creditcard, options = {})
|
29
|
+
commit(build_sale_request('PreAuth', money, creditcard, options))
|
30
|
+
end
|
31
|
+
|
32
|
+
def capture(money, authorization, options = {})
|
33
|
+
commit(build_capture_request(money, authorization, options))
|
34
|
+
end
|
35
|
+
|
36
|
+
def void(authorization, options = {})
|
37
|
+
commit(build_void_request(authorization, options))
|
38
|
+
end
|
39
|
+
|
40
|
+
def refund(money, authorization, options = {})
|
41
|
+
commit(build_authorization_credit_request(money, authorization, options))
|
42
|
+
end
|
43
|
+
|
44
|
+
def credit(money, creditcard, options = {})
|
45
|
+
commit(build_creditcard_credit_request(money, creditcard, options))
|
46
|
+
end
|
47
|
+
|
48
|
+
protected
|
49
|
+
|
50
|
+
def build_sale_request(type, money, creditcard, options = {})
|
51
|
+
requires!(options, :order_id)
|
52
|
+
|
53
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
54
|
+
|
55
|
+
xml.tag! 'CC5Request' do
|
56
|
+
add_login_tags(xml)
|
57
|
+
xml.tag! 'OrderId', options[:order_id]
|
58
|
+
xml.tag! 'Type', type
|
59
|
+
xml.tag! 'Number', creditcard.number
|
60
|
+
xml.tag! 'Expires', [format(creditcard.month, :two_digits), format(creditcard.year, :two_digits)].join('/')
|
61
|
+
xml.tag! 'Cvv2Val', creditcard.verification_value
|
62
|
+
add_amount_tags(money, options, xml)
|
63
|
+
xml.tag! 'Email', options[:email] if options[:email]
|
64
|
+
|
65
|
+
if(address = (options[:billing_address] || options[:address]))
|
66
|
+
xml.tag! 'BillTo' do
|
67
|
+
add_address(xml, address)
|
68
|
+
end
|
69
|
+
xml.tag! 'ShipTo' do
|
70
|
+
add_address(xml, address)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
|
76
|
+
xml.target!
|
77
|
+
end
|
78
|
+
|
79
|
+
def build_capture_request(money, authorization, options = {})
|
80
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
81
|
+
|
82
|
+
xml.tag! 'CC5Request' do
|
83
|
+
add_login_tags(xml)
|
84
|
+
xml.tag! 'OrderId', authorization
|
85
|
+
xml.tag! 'Type', 'PostAuth'
|
86
|
+
add_amount_tags(money, options, xml)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def build_void_request(authorization, options = {})
|
91
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
92
|
+
|
93
|
+
xml.tag! 'CC5Request' do
|
94
|
+
add_login_tags(xml)
|
95
|
+
xml.tag! 'OrderId', authorization
|
96
|
+
xml.tag! 'Type', 'Void'
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
def build_authorization_credit_request(money, authorization, options = {})
|
101
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
102
|
+
|
103
|
+
xml.tag! 'CC5Request' do
|
104
|
+
add_login_tags(xml)
|
105
|
+
xml.tag! 'OrderId', authorization
|
106
|
+
xml.tag! 'Type', 'Credit'
|
107
|
+
add_amount_tags(money, options, xml)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
def build_creditcard_credit_request(money, creditcard, options = {})
|
112
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
113
|
+
|
114
|
+
xml.tag! 'CC5Request' do
|
115
|
+
add_login_tags(xml)
|
116
|
+
xml.tag! 'Type', 'Credit'
|
117
|
+
xml.tag! 'Number', creditcard.number
|
118
|
+
|
119
|
+
add_amount_tags(money, options, xml)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def add_address(xml, address)
|
124
|
+
xml.tag! 'Name', normalize(address[:name])
|
125
|
+
xml.tag! 'Street1', normalize(address[:address1])
|
126
|
+
xml.tag! 'Street2', normalize(address[:address2]) if address[:address2]
|
127
|
+
xml.tag! 'City', normalize(address[:city])
|
128
|
+
xml.tag! 'PostalCode', address[:zip]
|
129
|
+
xml.tag! 'Country', normalize(address[:country])
|
130
|
+
xml.tag! 'Company', normalize(address[:company])
|
131
|
+
xml.tag! 'TelVoice', address[:phone].to_s.gsub(/[^0-9]/, '') if address[:phone]
|
132
|
+
end
|
133
|
+
|
134
|
+
def add_login_tags(xml)
|
135
|
+
xml.tag! 'Name', @options[:login]
|
136
|
+
xml.tag! 'Password', @options[:password]
|
137
|
+
xml.tag! 'ClientId', @options[:client_id]
|
138
|
+
xml.tag! 'Mode', (test? ? 'T' : 'P')
|
139
|
+
end
|
140
|
+
|
141
|
+
def add_amount_tags(money, options, xml)
|
142
|
+
xml.tag! 'Total', amount(money)
|
143
|
+
xml.tag! 'Currency', currency_code(options[:currency] || currency(money))
|
144
|
+
end
|
145
|
+
|
146
|
+
def currency_code(currency)
|
147
|
+
(CURRENCY_CODES[currency] || CURRENCY_CODES[default_currency])
|
148
|
+
end
|
149
|
+
|
150
|
+
def commit(request)
|
151
|
+
raw_response = ssl_post((test? ? self.test_url : self.live_url), "DATA=" + request)
|
152
|
+
|
153
|
+
response = parse(raw_response)
|
154
|
+
|
155
|
+
success = success?(response)
|
156
|
+
|
157
|
+
Response.new(
|
158
|
+
success,
|
159
|
+
(success ? 'Approved' : "Declined (Reason: #{response[:proc_return_code]} - #{response[:err_msg]})"),
|
160
|
+
response,
|
161
|
+
:test => test?,
|
162
|
+
:authorization => response[:order_id]
|
163
|
+
)
|
164
|
+
end
|
165
|
+
|
166
|
+
def parse(body)
|
167
|
+
xml = REXML::Document.new(body)
|
168
|
+
|
169
|
+
response = {}
|
170
|
+
xml.root.elements.to_a.each do |node|
|
171
|
+
parse_element(response, node)
|
172
|
+
end
|
173
|
+
response
|
174
|
+
end
|
175
|
+
|
176
|
+
def parse_element(response, node)
|
177
|
+
if node.has_elements?
|
178
|
+
node.elements.each{|element| parse_element(response, element) }
|
179
|
+
else
|
180
|
+
response[node.name.underscore.to_sym] = node.text
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
def success?(response)
|
185
|
+
(response[:response] == "Approved")
|
186
|
+
end
|
187
|
+
|
188
|
+
def normalize(text)
|
189
|
+
return unless text
|
190
|
+
|
191
|
+
if ActiveSupport::Inflector.method(:transliterate).arity == -2
|
192
|
+
ActiveSupport::Inflector.transliterate(text,'')
|
193
|
+
elsif RUBY_VERSION >= '1.9'
|
194
|
+
text.gsub(/[^\x00-\x7F]+/, '')
|
195
|
+
else
|
196
|
+
ActiveSupport::Inflector.transliterate(text).to_s
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
@@ -0,0 +1,229 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class CecabankGateway < Gateway
|
4
|
+
self.test_url = 'http://tpv.ceca.es:8000'
|
5
|
+
self.live_url = 'https://pgw.ceca.es'
|
6
|
+
|
7
|
+
self.supported_countries = ['ES']
|
8
|
+
self.supported_cardtypes = [:visa, :master, :american_express]
|
9
|
+
self.homepage_url = 'http://www.ceca.es/es/'
|
10
|
+
self.display_name = 'Cecabank'
|
11
|
+
self.default_currency = 'EUR'
|
12
|
+
self.money_format = :cents
|
13
|
+
|
14
|
+
#### CECA's MAGIC NUMBERS
|
15
|
+
CECA_NOTIFICATIONS_URL = 'NONE'
|
16
|
+
CECA_ENCRIPTION = 'SHA1'
|
17
|
+
CECA_DECIMALS = '2'
|
18
|
+
CECA_MODE = 'SSL'
|
19
|
+
CECA_UI_LESS_LANGUAGE = 'XML'
|
20
|
+
CECA_UI_LESS_LANGUAGE_REFUND = '1'
|
21
|
+
CECA_UI_LESS_REFUND_PAGE = 'anulacion_xml'
|
22
|
+
CECA_ACTION_REFUND = 'tpvanularparcialmente' #use partial refund's URL to avoid time frame limitations and decision logic on client side
|
23
|
+
CECA_ACTION_PURCHASE = 'tpv'
|
24
|
+
CECA_CURRENCIES_DICTIONARY = {'EUR' => 978, 'USD' => 840, 'GBP' => 826}
|
25
|
+
|
26
|
+
# Creates a new CecabankGateway
|
27
|
+
#
|
28
|
+
# The gateway requires four values for connection to be passed
|
29
|
+
# in the +options+ hash.
|
30
|
+
#
|
31
|
+
# ==== Options
|
32
|
+
#
|
33
|
+
# * <tt>:merchant_id</tt> -- Cecabank's merchant_id (REQUIRED)
|
34
|
+
# * <tt>:acquirer_bin</tt> -- Cecabank's acquirer_bin (REQUIRED)
|
35
|
+
# * <tt>:terminal_id</tt> -- Cecabank's terminal_id (REQUIRED)
|
36
|
+
# * <tt>:key</tt> -- Cecabank's cypher key (REQUIRED)
|
37
|
+
# * <tt>:test</tt> -- +true+ or +false+. If true, perform transactions against the test server.
|
38
|
+
# Otherwise, perform transactions against the production server.
|
39
|
+
def initialize(options = {})
|
40
|
+
requires!(options, :merchant_id, :acquirer_bin, :terminal_id, :key)
|
41
|
+
super
|
42
|
+
end
|
43
|
+
|
44
|
+
# Perform a purchase, which is essentially an authorization and capture in a single operation.
|
45
|
+
#
|
46
|
+
# ==== Parameters
|
47
|
+
#
|
48
|
+
# * <tt>money</tt> -- The amount to be purchased as an Integer value in cents.
|
49
|
+
# * <tt>creditcard</tt> -- The CreditCard details for the transaction.
|
50
|
+
# * <tt>options</tt> -- A hash of optional parameters.
|
51
|
+
#
|
52
|
+
# ==== Options
|
53
|
+
#
|
54
|
+
# * <tt>:order_id</tt> -- order_id passed used purchase. (REQUIRED)
|
55
|
+
# * <tt>:currency</tt> -- currency. Supported: EUR, USD, GBP.
|
56
|
+
# * <tt>:description</tt> -- description to be pased to the gateway.
|
57
|
+
def purchase(money, creditcard, options = {})
|
58
|
+
requires!(options, :order_id)
|
59
|
+
|
60
|
+
post = {'Descripcion' => options[:description],
|
61
|
+
'Num_operacion' => options[:order_id],
|
62
|
+
'Idioma' => CECA_UI_LESS_LANGUAGE,
|
63
|
+
'Pago_soportado' => CECA_MODE,
|
64
|
+
'URL_OK' => CECA_NOTIFICATIONS_URL,
|
65
|
+
'URL_NOK' => CECA_NOTIFICATIONS_URL,
|
66
|
+
'Importe' => amount(money),
|
67
|
+
'TipoMoneda' => CECA_CURRENCIES_DICTIONARY[options[:currency] || currency(money)]}
|
68
|
+
|
69
|
+
add_creditcard(post, creditcard)
|
70
|
+
|
71
|
+
commit(CECA_ACTION_PURCHASE, post)
|
72
|
+
end
|
73
|
+
|
74
|
+
# Refund a transaction.
|
75
|
+
#
|
76
|
+
# This transaction indicates to the gateway that
|
77
|
+
# money should flow from the merchant to the customer.
|
78
|
+
#
|
79
|
+
# ==== Parameters
|
80
|
+
#
|
81
|
+
# * <tt>money</tt> -- The amount to be credited to the customer as an Integer value in cents.
|
82
|
+
# * <tt>identification</tt> -- The reference given from the gateway on purchase (reference, not operation).
|
83
|
+
# * <tt>options</tt> -- A hash of parameters.
|
84
|
+
def refund(money, identification, options = {})
|
85
|
+
reference, order_id = split_authorization(identification)
|
86
|
+
|
87
|
+
post = {'Referencia' => reference,
|
88
|
+
'Num_operacion' => order_id,
|
89
|
+
'Idioma' => CECA_UI_LESS_LANGUAGE_REFUND,
|
90
|
+
'Pagina' => CECA_UI_LESS_REFUND_PAGE,
|
91
|
+
'Importe' => amount(money),
|
92
|
+
'TipoMoneda' => CECA_CURRENCIES_DICTIONARY[options[:currency] || currency(money)]}
|
93
|
+
|
94
|
+
commit(CECA_ACTION_REFUND, post)
|
95
|
+
end
|
96
|
+
|
97
|
+
private
|
98
|
+
|
99
|
+
def add_creditcard(post, creditcard)
|
100
|
+
post['PAN'] = creditcard.number
|
101
|
+
post['Caducidad'] = expdate(creditcard)
|
102
|
+
post['CVV2'] = creditcard.verification_value
|
103
|
+
post['Pago_elegido'] = CECA_MODE
|
104
|
+
end
|
105
|
+
|
106
|
+
def expdate(creditcard)
|
107
|
+
"#{format(creditcard.year, :four_digits)}#{format(creditcard.month, :two_digits)}"
|
108
|
+
end
|
109
|
+
|
110
|
+
def parse(body)
|
111
|
+
response = {}
|
112
|
+
|
113
|
+
root = REXML::Document.new(body).root
|
114
|
+
|
115
|
+
response[:success] = (root.attributes['valor'] == "OK")
|
116
|
+
response[:date] = root.attributes['fecha']
|
117
|
+
response[:operation_number] = root.attributes['numeroOperacion']
|
118
|
+
response[:message] = root.attributes['valor']
|
119
|
+
|
120
|
+
if root.elements['OPERACION']
|
121
|
+
response[:operation_type] = root.elements['OPERACION'].attributes['tipo']
|
122
|
+
response[:amount] = root.elements['OPERACION/importe'].text.strip
|
123
|
+
end
|
124
|
+
|
125
|
+
response[:description] = root.elements['OPERACION/descripcion'].text if root.elements['OPERACION/descripcion']
|
126
|
+
response[:authorization_number] = root.elements['OPERACION/numeroAutorizacion'].text if root.elements['OPERACION/numeroAutorizacion']
|
127
|
+
response[:reference] = root.elements['OPERACION/referencia'].text if root.elements['OPERACION/referencia']
|
128
|
+
response[:pan] = root.elements['OPERACION/pan'].text if root.elements['OPERACION/pan']
|
129
|
+
|
130
|
+
if root.elements['ERROR']
|
131
|
+
response[:error_code] = root.elements['ERROR/codigo'].text
|
132
|
+
response[:error_message] = root.elements['ERROR/descripcion'].text
|
133
|
+
else
|
134
|
+
if("000" == root.elements['OPERACION'].attributes['numeroOperacion'])
|
135
|
+
if(root.elements['OPERACION/numeroAutorizacion'])
|
136
|
+
response[:authorization] = root.elements['OPERACION/numeroAutorizacion'].text
|
137
|
+
end
|
138
|
+
else
|
139
|
+
response[:authorization] = root.attributes['numeroOperacion']
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
return response
|
144
|
+
|
145
|
+
rescue REXML::ParseException => e
|
146
|
+
response[:success] = false
|
147
|
+
response[:message] = "Unable to parse the response."
|
148
|
+
response[:error_message] = e.message
|
149
|
+
response
|
150
|
+
end
|
151
|
+
|
152
|
+
def commit(action, parameters)
|
153
|
+
parameters.merge!(
|
154
|
+
'Cifrado' => CECA_ENCRIPTION,
|
155
|
+
'Firma' => generate_signature(action, parameters),
|
156
|
+
'Exponente' => CECA_DECIMALS,
|
157
|
+
'MerchantID' => options[:merchant_id],
|
158
|
+
'AcquirerBIN' => options[:acquirer_bin],
|
159
|
+
'TerminalID' => options[:terminal_id]
|
160
|
+
)
|
161
|
+
url = (test? ? self.test_url : self.live_url) + "/cgi-bin/#{action}"
|
162
|
+
xml = ssl_post(url, post_data(parameters))
|
163
|
+
response = parse(xml)
|
164
|
+
Response.new(
|
165
|
+
response[:success],
|
166
|
+
response[:message],
|
167
|
+
response,
|
168
|
+
:test => test?,
|
169
|
+
:authorization => build_authorization(response)
|
170
|
+
)
|
171
|
+
end
|
172
|
+
|
173
|
+
def post_data(params)
|
174
|
+
return nil unless params
|
175
|
+
|
176
|
+
params.map do |key, value|
|
177
|
+
next if value.blank?
|
178
|
+
if value.is_a?(Hash)
|
179
|
+
h = {}
|
180
|
+
value.each do |k, v|
|
181
|
+
h["#{key}.#{k}"] = v unless v.blank?
|
182
|
+
end
|
183
|
+
post_data(h)
|
184
|
+
else
|
185
|
+
"#{key}=#{CGI.escape(value.to_s)}"
|
186
|
+
end
|
187
|
+
end.compact.join("&")
|
188
|
+
end
|
189
|
+
|
190
|
+
def build_authorization(response)
|
191
|
+
[response[:reference], response[:authorization]].join("|")
|
192
|
+
end
|
193
|
+
|
194
|
+
def split_authorization(authorization)
|
195
|
+
authorization.split("|")
|
196
|
+
end
|
197
|
+
|
198
|
+
def generate_signature(action, parameters)
|
199
|
+
signature_fields = case action
|
200
|
+
when CECA_ACTION_REFUND
|
201
|
+
options[:key].to_s +
|
202
|
+
options[:merchant_id].to_s +
|
203
|
+
options[:acquirer_bin].to_s +
|
204
|
+
options[:terminal_id].to_s +
|
205
|
+
parameters['Num_operacion'].to_s +
|
206
|
+
parameters['Importe'].to_s +
|
207
|
+
parameters['TipoMoneda'].to_s +
|
208
|
+
CECA_DECIMALS +
|
209
|
+
parameters['Referencia'].to_s +
|
210
|
+
CECA_ENCRIPTION
|
211
|
+
else
|
212
|
+
options[:key].to_s +
|
213
|
+
options[:merchant_id].to_s +
|
214
|
+
options[:acquirer_bin].to_s +
|
215
|
+
options[:terminal_id].to_s +
|
216
|
+
parameters['Num_operacion'].to_s +
|
217
|
+
parameters['Importe'].to_s +
|
218
|
+
parameters['TipoMoneda'].to_s +
|
219
|
+
CECA_DECIMALS +
|
220
|
+
CECA_ENCRIPTION +
|
221
|
+
CECA_NOTIFICATIONS_URL +
|
222
|
+
CECA_NOTIFICATIONS_URL
|
223
|
+
end
|
224
|
+
Digest::SHA1.hexdigest(signature_fields)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|