patmaddox-activemerchant 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +480 -0
- data/CONTRIBUTORS +126 -0
- data/MIT-LICENSE +20 -0
- data/README +136 -0
- data/Rakefile +153 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +3 -0
- data/lib/active_merchant.rb +66 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +57 -0
- data/lib/active_merchant/billing/check.rb +68 -0
- data/lib/active_merchant/billing/credit_card.rb +159 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/expiry_date.rb +34 -0
- data/lib/active_merchant/billing/gateway.rb +158 -0
- data/lib/active_merchant/billing/gateways.rb +18 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +743 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +101 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
- data/lib/active_merchant/billing/gateways/eway.rb +277 -0
- data/lib/active_merchant/billing/gateways/exact.rb +222 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -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 +138 -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 +230 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +306 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
- data/lib/active_merchant/billing/gateways/realex.rb +200 -0
- data/lib/active_merchant/billing/gateways/sage.rb +146 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +308 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +452 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
- data/lib/active_merchant/billing/gateways/transax.rb +26 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
- data/lib/active_merchant/billing/integrations.rb +29 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
- data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
- data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/helper.rb +93 -0
- data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
- data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
- data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/notification.rb +62 -0
- data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
- data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
- data/lib/active_merchant/billing/integrations/return.rb +35 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/lib/connection.rb +170 -0
- data/lib/active_merchant/lib/country.rb +319 -0
- data/lib/active_merchant/lib/error.rb +4 -0
- data/lib/active_merchant/lib/post_data.rb +22 -0
- data/lib/active_merchant/lib/posts_data.rb +47 -0
- data/lib/active_merchant/lib/requires_parameters.rb +16 -0
- data/lib/active_merchant/lib/utils.rb +18 -0
- data/lib/active_merchant/lib/validateable.rb +76 -0
- data/lib/certs/cacert.pem +7815 -0
- data/lib/support/gateway_support.rb +58 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/test/fixtures.yml +355 -0
- data/test/remote/gateways/remote_authorize_net_cim_test.rb +460 -0
- data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
- data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
- data/test/remote/gateways/remote_beanstream_test.rb +150 -0
- data/test/remote/gateways/remote_braintree_test.rb +154 -0
- data/test/remote/gateways/remote_card_stream_test.rb +148 -0
- data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
- data/test/remote/gateways/remote_data_cash_test.rb +357 -0
- data/test/remote/gateways/remote_efsnet_test.rb +81 -0
- data/test/remote/gateways/remote_elavon_test.rb +66 -0
- data/test/remote/gateways/remote_eway_test.rb +74 -0
- data/test/remote/gateways/remote_exact_test.rb +60 -0
- data/test/remote/gateways/remote_first_pay_test.rb +87 -0
- data/test/remote/gateways/remote_instapay_test.rb +61 -0
- data/test/remote/gateways/remote_jetpay_test.rb +103 -0
- data/test/remote/gateways/remote_linkpoint_test.rb +121 -0
- data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
- data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
- data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
- data/test/remote/gateways/remote_modern_payments_test.rb +57 -0
- data/test/remote/gateways/remote_moneris_test.rb +82 -0
- data/test/remote/gateways/remote_net_registry_test.rb +85 -0
- data/test/remote/gateways/remote_netbilling_test.rb +70 -0
- data/test/remote/gateways/remote_ogone_test.rb +115 -0
- data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
- data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
- data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
- data/test/remote/gateways/remote_payflow_test.rb +237 -0
- data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
- data/test/remote/gateways/remote_payment_express_test.rb +136 -0
- data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
- data/test/remote/gateways/remote_paypal_test.rb +191 -0
- data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
- data/test/remote/gateways/remote_psigate_test.rb +50 -0
- data/test/remote/gateways/remote_psl_card_test.rb +125 -0
- data/test/remote/gateways/remote_quickpay_test.rb +190 -0
- data/test/remote/gateways/remote_realex_test.rb +224 -0
- data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
- data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
- data/test/remote/gateways/remote_sage_test.rb +87 -0
- data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
- data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
- data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
- data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
- data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
- data/test/remote/gateways/remote_skipjack_test.rb +105 -0
- data/test/remote/gateways/remote_trans_first_test.rb +34 -0
- data/test/remote/gateways/remote_transax_test.rb +112 -0
- data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
- data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
- data/test/remote/gateways/remote_verifi_test.rb +107 -0
- data/test/remote/gateways/remote_viaklix_test.rb +43 -0
- data/test/remote/gateways/remote_wirecard_test.rb +111 -0
- data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
- data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
- data/test/test_helper.rb +182 -0
- data/test/unit/avs_result_test.rb +59 -0
- data/test/unit/base_test.rb +55 -0
- data/test/unit/check_test.rb +88 -0
- data/test/unit/connection_test.rb +129 -0
- data/test/unit/country_code_test.rb +33 -0
- data/test/unit/country_test.rb +64 -0
- data/test/unit/credit_card_formatting_test.rb +19 -0
- data/test/unit/credit_card_methods_test.rb +179 -0
- data/test/unit/credit_card_test.rb +318 -0
- data/test/unit/cvv_result_test.rb +33 -0
- data/test/unit/expiry_date_test.rb +32 -0
- data/test/unit/gateways/authorize_net_cim_test.rb +676 -0
- data/test/unit/gateways/authorize_net_test.rb +290 -0
- data/test/unit/gateways/beanstream_interac_test.rb +51 -0
- data/test/unit/gateways/beanstream_test.rb +108 -0
- data/test/unit/gateways/bogus_test.rb +46 -0
- data/test/unit/gateways/braintree_test.rb +126 -0
- data/test/unit/gateways/card_stream_test.rb +90 -0
- data/test/unit/gateways/cyber_source_test.rb +188 -0
- data/test/unit/gateways/data_cash_test.rb +133 -0
- data/test/unit/gateways/efsnet_test.rb +123 -0
- data/test/unit/gateways/elavon_test.rb +139 -0
- data/test/unit/gateways/eway_test.rb +118 -0
- data/test/unit/gateways/exact_test.rb +156 -0
- data/test/unit/gateways/first_pay_test.rb +125 -0
- data/test/unit/gateways/gateway_test.rb +48 -0
- data/test/unit/gateways/instapay_test.rb +102 -0
- data/test/unit/gateways/jetpay_test.rb +185 -0
- data/test/unit/gateways/linkpoint_test.rb +197 -0
- data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
- data/test/unit/gateways/merchant_ware_test.rb +188 -0
- data/test/unit/gateways/modern_payments_cim_test.rb +162 -0
- data/test/unit/gateways/moneris_test.rb +158 -0
- data/test/unit/gateways/net_registry_test.rb +416 -0
- data/test/unit/gateways/netbilling_test.rb +54 -0
- data/test/unit/gateways/ogone_test.rb +319 -0
- data/test/unit/gateways/pay_junction_test.rb +123 -0
- data/test/unit/gateways/pay_secure_test.rb +71 -0
- data/test/unit/gateways/payflow_express_test.rb +173 -0
- data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
- data/test/unit/gateways/payflow_test.rb +305 -0
- data/test/unit/gateways/payflow_uk_test.rb +30 -0
- data/test/unit/gateways/payment_express_test.rb +195 -0
- data/test/unit/gateways/paypal_express_test.rb +382 -0
- data/test/unit/gateways/paypal_test.rb +569 -0
- data/test/unit/gateways/plugnpay_test.rb +86 -0
- data/test/unit/gateways/psigate_test.rb +169 -0
- data/test/unit/gateways/psl_card_test.rb +64 -0
- data/test/unit/gateways/quickpay_test.rb +112 -0
- data/test/unit/gateways/realex_test.rb +151 -0
- data/test/unit/gateways/sage_bankcard_test.rb +196 -0
- data/test/unit/gateways/sage_pay_test.rb +139 -0
- data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
- data/test/unit/gateways/sallie_mae_test.rb +53 -0
- data/test/unit/gateways/secure_pay_au_test.rb +207 -0
- data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
- data/test/unit/gateways/secure_pay_test.rb +87 -0
- data/test/unit/gateways/skip_jack_test.rb +213 -0
- data/test/unit/gateways/trans_first_test.rb +112 -0
- data/test/unit/gateways/trust_commerce_test.rb +90 -0
- data/test/unit/gateways/usa_epay_test.rb +128 -0
- data/test/unit/gateways/verifi_test.rb +96 -0
- data/test/unit/gateways/viaklix_test.rb +78 -0
- data/test/unit/gateways/wirecard_test.rb +250 -0
- data/test/unit/generators/test_gateway_generator.rb +46 -0
- data/test/unit/generators/test_generator_helper.rb +20 -0
- data/test/unit/generators/test_integration_generator.rb +53 -0
- data/test/unit/integrations/action_view_helper_test.rb +50 -0
- data/test/unit/integrations/bogus_module_test.rb +20 -0
- data/test/unit/integrations/chronopay_module_test.rb +13 -0
- data/test/unit/integrations/gestpay_module_test.rb +14 -0
- data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
- data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
- data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
- data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
- data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
- data/test/unit/integrations/helpers/paypal_helper_test.rb +171 -0
- data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
- data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
- data/test/unit/integrations/hi_trust_module_test.rb +13 -0
- data/test/unit/integrations/nochex_module_test.rb +13 -0
- data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
- data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
- data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
- data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
- data/test/unit/integrations/notifications/notification_test.rb +54 -0
- data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
- data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
- data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
- data/test/unit/integrations/paypal_module_test.rb +28 -0
- data/test/unit/integrations/quickpay_module_test.rb +9 -0
- data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
- data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
- data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
- data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
- data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
- data/test/unit/integrations/returns/return_test.rb +11 -0
- data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
- data/test/unit/integrations/two_checkout_module_test.rb +13 -0
- data/test/unit/post_data_test.rb +55 -0
- data/test/unit/posts_data_test.rb +48 -0
- data/test/unit/response_test.rb +28 -0
- data/test/unit/utils_test.rb +7 -0
- data/test/unit/validateable_test.rb +60 -0
- metadata +367 -0
@@ -0,0 +1,194 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
|
4
|
+
class UsaEpayGateway < Gateway
|
5
|
+
URL = 'https://www.usaepay.com/gate.php'
|
6
|
+
|
7
|
+
self.supported_cardtypes = [:visa, :master, :american_express]
|
8
|
+
self.supported_countries = ['US']
|
9
|
+
self.homepage_url = 'http://www.usaepay.com/'
|
10
|
+
self.display_name = 'USA ePay'
|
11
|
+
|
12
|
+
TRANSACTIONS = {
|
13
|
+
:authorization => 'authonly',
|
14
|
+
:purchase => 'sale',
|
15
|
+
:capture => 'capture'
|
16
|
+
}
|
17
|
+
|
18
|
+
def initialize(options = {})
|
19
|
+
requires!(options, :login)
|
20
|
+
@options = options
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def authorize(money, credit_card, options = {})
|
25
|
+
post = {}
|
26
|
+
|
27
|
+
add_amount(post, money)
|
28
|
+
add_invoice(post, options)
|
29
|
+
add_credit_card(post, credit_card)
|
30
|
+
add_address(post, credit_card, options)
|
31
|
+
add_customer_data(post, options)
|
32
|
+
|
33
|
+
commit(:authorization, post)
|
34
|
+
end
|
35
|
+
|
36
|
+
def purchase(money, credit_card, options = {})
|
37
|
+
post = {}
|
38
|
+
|
39
|
+
add_amount(post, money)
|
40
|
+
add_invoice(post, options)
|
41
|
+
add_credit_card(post, credit_card)
|
42
|
+
add_address(post, credit_card, options)
|
43
|
+
add_customer_data(post, options)
|
44
|
+
|
45
|
+
commit(:purchase, post)
|
46
|
+
end
|
47
|
+
|
48
|
+
def capture(money, authorization, options = {})
|
49
|
+
post = {
|
50
|
+
:refNum => authorization
|
51
|
+
}
|
52
|
+
|
53
|
+
add_amount(post, money)
|
54
|
+
commit(:capture, post)
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
|
59
|
+
def add_amount(post, money)
|
60
|
+
post[:amount] = amount(money)
|
61
|
+
end
|
62
|
+
|
63
|
+
def expdate(credit_card)
|
64
|
+
year = format(credit_card.year, :two_digits)
|
65
|
+
month = format(credit_card.month, :two_digits)
|
66
|
+
|
67
|
+
"#{month}#{year}"
|
68
|
+
end
|
69
|
+
|
70
|
+
def add_customer_data(post, options)
|
71
|
+
address = options[:billing_address] || options[:address] || {}
|
72
|
+
post[:street] = address[:address1]
|
73
|
+
post[:zip] = address[:zip]
|
74
|
+
|
75
|
+
if options.has_key? :email
|
76
|
+
post[:custemail] = options[:email]
|
77
|
+
post[:custreceipt] = 'No'
|
78
|
+
end
|
79
|
+
|
80
|
+
if options.has_key? :customer
|
81
|
+
post[:custid] = options[:customer]
|
82
|
+
end
|
83
|
+
|
84
|
+
if options.has_key? :ip
|
85
|
+
post[:ip] = options[:ip]
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def add_address(post, credit_card, options)
|
90
|
+
billing_address = options[:billing_address] || options[:address]
|
91
|
+
|
92
|
+
add_address_for_type(:billing, post, credit_card, billing_address) if billing_address
|
93
|
+
add_address_for_type(:shipping, post, credit_card, options[:shipping_address]) if options[:shipping_address]
|
94
|
+
end
|
95
|
+
|
96
|
+
def add_address_for_type(type, post, credit_card, address)
|
97
|
+
prefix = address_key_prefix(type)
|
98
|
+
|
99
|
+
post[address_key(prefix, 'fname')] = credit_card.first_name
|
100
|
+
post[address_key(prefix, 'lname')] = credit_card.last_name
|
101
|
+
post[address_key(prefix, 'company')] = address[:company] unless address[:company].blank?
|
102
|
+
post[address_key(prefix, 'street')] = address[:address1] unless address[:address1].blank?
|
103
|
+
post[address_key(prefix, 'street2')] = address[:address2] unless address[:address2].blank?
|
104
|
+
post[address_key(prefix, 'city')] = address[:city] unless address[:city].blank?
|
105
|
+
post[address_key(prefix, 'state')] = address[:state] unless address[:state].blank?
|
106
|
+
post[address_key(prefix, 'zip')] = address[:zip] unless address[:zip].blank?
|
107
|
+
post[address_key(prefix, 'country')] = address[:country] unless address[:country].blank?
|
108
|
+
post[address_key(prefix, 'phone')] = address[:phone] unless address[:phone].blank?
|
109
|
+
end
|
110
|
+
|
111
|
+
def address_key_prefix(type)
|
112
|
+
case type
|
113
|
+
when :shipping then 'ship'
|
114
|
+
when :billing then 'bill'
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
def address_key(prefix, key)
|
119
|
+
"#{prefix}#{key}".to_sym
|
120
|
+
end
|
121
|
+
|
122
|
+
def add_invoice(post, options)
|
123
|
+
post[:invoice] = options[:order_id]
|
124
|
+
end
|
125
|
+
|
126
|
+
def add_credit_card(post, credit_card)
|
127
|
+
post[:card] = credit_card.number
|
128
|
+
post[:cvv2] = credit_card.verification_value if credit_card.verification_value?
|
129
|
+
post[:expir] = expdate(credit_card)
|
130
|
+
post[:name] = credit_card.name
|
131
|
+
end
|
132
|
+
|
133
|
+
def parse(body)
|
134
|
+
fields = {}
|
135
|
+
for line in body.split('&')
|
136
|
+
key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
|
137
|
+
fields[key] = CGI.unescape(value)
|
138
|
+
end
|
139
|
+
|
140
|
+
{
|
141
|
+
:status => fields['UMstatus'],
|
142
|
+
:auth_code => fields['UMauthCode'],
|
143
|
+
:ref_num => fields['UMrefNum'],
|
144
|
+
:batch => fields['UMbatch'],
|
145
|
+
:avs_result => fields['UMavsResult'],
|
146
|
+
:avs_result_code => fields['UMavsResultCode'],
|
147
|
+
:cvv2_result => fields['UMcvv2Result'],
|
148
|
+
:cvv2_result_code => fields['UMcvv2ResultCode'],
|
149
|
+
:vpas_result_code => fields['UMvpasResultCode'],
|
150
|
+
:result => fields['UMresult'],
|
151
|
+
:error => fields['UMerror'],
|
152
|
+
:error_code => fields['UMerrorcode'],
|
153
|
+
:acs_url => fields['UMacsurl'],
|
154
|
+
:payload => fields['UMpayload']
|
155
|
+
}.delete_if{|k, v| v.nil?}
|
156
|
+
end
|
157
|
+
|
158
|
+
|
159
|
+
def commit(action, parameters)
|
160
|
+
response = parse( ssl_post(URL, post_data(action, parameters)) )
|
161
|
+
|
162
|
+
Response.new(response[:status] == 'Approved', message_from(response), response,
|
163
|
+
:test => @options[:test] || test?,
|
164
|
+
:authorization => response[:ref_num],
|
165
|
+
:cvv_result => response[:cvv2_result_code],
|
166
|
+
:avs_result => {
|
167
|
+
:street_match => response[:avs_result_code].to_s[0,1],
|
168
|
+
:postal_match => response[:avs_result_code].to_s[1,1],
|
169
|
+
:code => response[:avs_result_code].to_s[2,1]
|
170
|
+
}
|
171
|
+
)
|
172
|
+
end
|
173
|
+
|
174
|
+
def message_from(response)
|
175
|
+
if response[:status] == "Approved"
|
176
|
+
return 'Success'
|
177
|
+
else
|
178
|
+
return 'Unspecified error' if response[:error].blank?
|
179
|
+
return response[:error]
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
def post_data(action, parameters = {})
|
184
|
+
parameters[:command] = TRANSACTIONS[action]
|
185
|
+
parameters[:key] = @options[:login]
|
186
|
+
parameters[:software] = 'Active Merchant'
|
187
|
+
parameters[:testmode] = @options[:test] ? 1 : 0
|
188
|
+
|
189
|
+
parameters.collect { |key, value| "UM#{key}=#{CGI.escape(value.to_s)}" }.join("&")
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
@@ -0,0 +1,228 @@
|
|
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
|
+
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
|
+
@options = options
|
69
|
+
super
|
70
|
+
end
|
71
|
+
|
72
|
+
def purchase(money, credit_card, options = {})
|
73
|
+
sale_authorization_or_credit_template(:purchase, money, credit_card, options)
|
74
|
+
end
|
75
|
+
|
76
|
+
def authorize(money, credit_card, options = {})
|
77
|
+
sale_authorization_or_credit_template(:authorization, money, credit_card, options)
|
78
|
+
end
|
79
|
+
|
80
|
+
def capture(money, authorization, options = {})
|
81
|
+
capture_void_or_refund_template(:capture, money, authorization, options)
|
82
|
+
end
|
83
|
+
|
84
|
+
def void(authorization, options = {})
|
85
|
+
capture_void_or_refund_template(:void, 0, authorization, options)
|
86
|
+
end
|
87
|
+
|
88
|
+
def credit(money, credit_card_or_authorization, options = {})
|
89
|
+
if credit_card_or_authorization.is_a?(String)
|
90
|
+
capture_void_or_refund_template(: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
|
+
private
|
97
|
+
|
98
|
+
def sale_authorization_or_credit_template(trx_type, money, credit_card, options = {})
|
99
|
+
post = VerifiPostData.new
|
100
|
+
add_security_key_data(post, options, money)
|
101
|
+
add_credit_card(post, credit_card)
|
102
|
+
add_addresses(post, options)
|
103
|
+
add_customer_data(post, options)
|
104
|
+
add_invoice_data(post, options)
|
105
|
+
add_optional_data(post, options)
|
106
|
+
commit(trx_type, money, post)
|
107
|
+
end
|
108
|
+
|
109
|
+
def capture_void_or_refund_template(trx_type, money, authorization, options)
|
110
|
+
post = VerifiPostData.new
|
111
|
+
post[:transactionid] = authorization
|
112
|
+
|
113
|
+
commit(trx_type, money, post)
|
114
|
+
end
|
115
|
+
|
116
|
+
def add_credit_card(post, credit_card)
|
117
|
+
post[:ccnumber] = credit_card.number
|
118
|
+
post[:ccexp] = expdate(credit_card)
|
119
|
+
post[:firstname] = credit_card.first_name
|
120
|
+
post[:lastname] = credit_card.last_name
|
121
|
+
post[:cvv] = credit_card.verification_value
|
122
|
+
end
|
123
|
+
|
124
|
+
def expdate(credit_card)
|
125
|
+
year = sprintf("%.4i", credit_card.year)
|
126
|
+
month = sprintf("%.2i", credit_card.month)
|
127
|
+
|
128
|
+
"#{month}#{year[-2..-1]}"
|
129
|
+
end
|
130
|
+
|
131
|
+
def add_addresses(post, options)
|
132
|
+
if billing_address = options[:billing_address] || options[:address]
|
133
|
+
post[:company] = billing_address[:company]
|
134
|
+
post[:address1] = billing_address[:address1]
|
135
|
+
post[:address2] = billing_address[:address2]
|
136
|
+
post[:city] = billing_address[:city]
|
137
|
+
post[:state] = billing_address[:state]
|
138
|
+
post[:zip] = billing_address[:zip]
|
139
|
+
post[:country] = billing_address[:country]
|
140
|
+
post[:phone] = billing_address[:phone]
|
141
|
+
post[:fax] = billing_address[:fax]
|
142
|
+
end
|
143
|
+
|
144
|
+
if shipping_address = options[:shipping_address]
|
145
|
+
post[:shipping_firstname] = shipping_address[:first_name]
|
146
|
+
post[:shipping_lastname] = shipping_address[:last_name]
|
147
|
+
post[:shipping_company] = shipping_address[:company]
|
148
|
+
post[:shipping_address1] = shipping_address[:address1]
|
149
|
+
post[:shipping_address2] = shipping_address[:address2]
|
150
|
+
post[:shipping_city] = shipping_address[:city]
|
151
|
+
post[:shipping_state] = shipping_address[:state]
|
152
|
+
post[:shipping_zip] = shipping_address[:zip]
|
153
|
+
post[:shipping_country] = shipping_address[:country]
|
154
|
+
post[:shipping_email] = shipping_address[:email]
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
def add_customer_data(post, options)
|
159
|
+
post[:email] = options[:email]
|
160
|
+
post[:ipaddress] = options[:ip]
|
161
|
+
end
|
162
|
+
|
163
|
+
def add_invoice_data(post, options)
|
164
|
+
post[:orderid] = options[:order_id]
|
165
|
+
post[:ponumber] = options[:invoice]
|
166
|
+
post[:orderdescription] = options[:description]
|
167
|
+
post[:tax] = options[:tax]
|
168
|
+
post[:shipping] = options[:shipping]
|
169
|
+
end
|
170
|
+
|
171
|
+
def add_optional_data(post, options)
|
172
|
+
post[:billing_method] = options[:billing_method]
|
173
|
+
post[:website] = options[:website]
|
174
|
+
post[:descriptor] = options[:descriptor]
|
175
|
+
post[:descriptor_phone] = options[:descriptor_phone]
|
176
|
+
post[:cardholder_auth] = options[:cardholder_auth]
|
177
|
+
post[:cavv] = options[:cavv]
|
178
|
+
post[:xid] = options[:xid]
|
179
|
+
post[:customer_receipt] = options[:customer_receipt]
|
180
|
+
end
|
181
|
+
|
182
|
+
def add_security_key_data(post, options, money)
|
183
|
+
# MD5(username|password|orderid|amount|time)
|
184
|
+
now = Time.now.to_i.to_s
|
185
|
+
md5 = Digest::MD5.new
|
186
|
+
md5 << @options[:login].to_s + "|"
|
187
|
+
md5 << @options[:password].to_s + "|"
|
188
|
+
md5 << options[:order_id].to_s + "|"
|
189
|
+
md5 << amount(money).to_s + "|"
|
190
|
+
md5 << now
|
191
|
+
post[:key] = md5.hexdigest
|
192
|
+
post[:time] = now
|
193
|
+
end
|
194
|
+
|
195
|
+
def commit(trx_type, money, post)
|
196
|
+
post[:amount] = amount(money)
|
197
|
+
|
198
|
+
response = parse( ssl_post(URL, post_data(trx_type, post)) )
|
199
|
+
|
200
|
+
Response.new(response[:response].to_i == SUCCESS, message_from(response), response,
|
201
|
+
:test => test?,
|
202
|
+
:authorization => response[:transactionid],
|
203
|
+
:avs_result => { :code => response[:avsresponse] },
|
204
|
+
:cvv_result => response[:cvvresponse]
|
205
|
+
)
|
206
|
+
end
|
207
|
+
|
208
|
+
def message_from(response)
|
209
|
+
response[:response_code_message] ? response[:response_code_message] : ""
|
210
|
+
end
|
211
|
+
|
212
|
+
def parse(body)
|
213
|
+
results = {}
|
214
|
+
CGI.parse(body).each { |key, value| results[key.intern] = value[0] }
|
215
|
+
results[:response_code_message] = RESPONSE_CODE_MESSAGES[results[:response_code]] if results[:response_code]
|
216
|
+
results
|
217
|
+
end
|
218
|
+
|
219
|
+
def post_data(trx_type, post)
|
220
|
+
post[:username] = @options[:login]
|
221
|
+
post[:password] = @options[:password]
|
222
|
+
post[:type] = TRANSACTIONS[trx_type]
|
223
|
+
|
224
|
+
post.to_s
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
end
|
@@ -0,0 +1,189 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class ViaklixGateway < Gateway
|
4
|
+
class_inheritable_accessor :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]
|
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
|
+
@options = options
|
36
|
+
super
|
37
|
+
end
|
38
|
+
|
39
|
+
# Make a purchase
|
40
|
+
def purchase(money, creditcard, options = {})
|
41
|
+
form = {}
|
42
|
+
add_invoice(form, options)
|
43
|
+
add_creditcard(form, creditcard)
|
44
|
+
add_address(form, options)
|
45
|
+
add_customer_data(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
|
+
commit(:credit, money, form)
|
62
|
+
end
|
63
|
+
|
64
|
+
private
|
65
|
+
def add_customer_data(form, options)
|
66
|
+
form[:email] = options[:email].to_s.slice(0, 100) unless options[:email].blank?
|
67
|
+
form[:customer_code] = options[:customer].to_s.slice(0, 10) unless options[:customer].blank?
|
68
|
+
end
|
69
|
+
|
70
|
+
def add_invoice(form,options)
|
71
|
+
form[:invoice_number] = (options[:order_id] || options[:invoice]).to_s.slice(0, 10)
|
72
|
+
form[:description] = options[:description].to_s.slice(0, 255)
|
73
|
+
end
|
74
|
+
|
75
|
+
def add_address(form,options)
|
76
|
+
billing_address = options[:billing_address] || options[:address]
|
77
|
+
|
78
|
+
if billing_address
|
79
|
+
form[:avs_address] = billing_address[:address1].to_s.slice(0, 30)
|
80
|
+
form[:address2] = billing_address[:address2].to_s.slice(0, 30)
|
81
|
+
form[:avs_zip] = billing_address[:zip].to_s.slice(0, 10)
|
82
|
+
form[:city] = billing_address[:city].to_s.slice(0, 30)
|
83
|
+
form[:state] = billing_address[:state].to_s.slice(0, 10)
|
84
|
+
form[:company] = billing_address[:company].to_s.slice(0, 50)
|
85
|
+
form[:phone] = billing_address[:phone].to_s.slice(0, 20)
|
86
|
+
form[:country] = billing_address[:country].to_s.slice(0, 50)
|
87
|
+
end
|
88
|
+
|
89
|
+
if shipping_address = options[:shipping_address]
|
90
|
+
first_name, last_name = parse_first_and_last_name(shipping_address[:name])
|
91
|
+
form[:ship_to_first_name] = first_name.to_s.slice(0, 20)
|
92
|
+
form[:ship_to_last_name] = last_name.to_s.slice(0, 30)
|
93
|
+
form[:ship_to_address] = shipping_address[:address1].to_s.slice(0, 30)
|
94
|
+
form[:ship_to_city] = shipping_address[:city].to_s.slice(0, 30)
|
95
|
+
form[:ship_to_state] = shipping_address[:state].to_s.slice(0, 10)
|
96
|
+
form[:ship_to_company] = shipping_address[:company].to_s.slice(0, 50)
|
97
|
+
form[:ship_to_country] = shipping_address[:country].to_s.slice(0, 50)
|
98
|
+
form[:ship_to_zip] = shipping_address[:zip].to_s.slice(0, 10)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def parse_first_and_last_name(value)
|
103
|
+
name = value.to_s.split(' ')
|
104
|
+
|
105
|
+
last_name = name.pop || ''
|
106
|
+
first_name = name.join(' ')
|
107
|
+
[ first_name, last_name ]
|
108
|
+
end
|
109
|
+
|
110
|
+
def add_creditcard(form, creditcard)
|
111
|
+
form[:card_number] = creditcard.number
|
112
|
+
form[:exp_date] = expdate(creditcard)
|
113
|
+
|
114
|
+
if creditcard.verification_value?
|
115
|
+
add_verification_value(form, creditcard)
|
116
|
+
end
|
117
|
+
|
118
|
+
form[:first_name] = creditcard.first_name.to_s.slice(0, 20)
|
119
|
+
form[:last_name] = creditcard.last_name.to_s.slice(0, 30)
|
120
|
+
end
|
121
|
+
|
122
|
+
def add_verification_value(form, creditcard)
|
123
|
+
form[:cvv2cvc2] = creditcard.verification_value
|
124
|
+
form[:cvv2] = 'present'
|
125
|
+
end
|
126
|
+
|
127
|
+
def preamble
|
128
|
+
result = {
|
129
|
+
'merchant_id' => @options[:login],
|
130
|
+
'pin' => @options[:password],
|
131
|
+
'show_form' => 'false',
|
132
|
+
'test_mode' => test? ? 'TRUE' : 'FALSE',
|
133
|
+
'result_format' => 'ASCII',
|
134
|
+
}
|
135
|
+
|
136
|
+
result['user_id'] = @options[:user] unless @options[:user].blank?
|
137
|
+
result
|
138
|
+
end
|
139
|
+
|
140
|
+
def test?
|
141
|
+
@options[:test] || super
|
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
|
+
def expdate(creditcard)
|
173
|
+
year = sprintf("%.4i", creditcard.year)
|
174
|
+
month = sprintf("%.2i", creditcard.month)
|
175
|
+
"#{month}#{year[2..3]}"
|
176
|
+
end
|
177
|
+
|
178
|
+
# Parse the response message
|
179
|
+
def parse(msg)
|
180
|
+
resp = {}
|
181
|
+
msg.split(self.delimiter).collect{|li|
|
182
|
+
key, value = li.split("=")
|
183
|
+
resp[key.strip.gsub(/^ssl_/, '')] = value.to_s.strip
|
184
|
+
}
|
185
|
+
resp
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|