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,270 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class JetpayGateway < Gateway
|
4
|
+
TEST_URL = 'https://test1.jetpay.com/jetpay'
|
5
|
+
LIVE_URL = 'https://gateway17.jetpay.com/jetpay'
|
6
|
+
|
7
|
+
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
8
|
+
self.supported_countries = ['US']
|
9
|
+
|
10
|
+
# The card types supported by the payment gateway
|
11
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
12
|
+
|
13
|
+
# The homepage URL of the gateway
|
14
|
+
self.homepage_url = 'http://www.jetpay.com/'
|
15
|
+
|
16
|
+
# The name of the gateway
|
17
|
+
self.display_name = 'JetPay'
|
18
|
+
|
19
|
+
# all transactions are in cents
|
20
|
+
self.money_format = :cents
|
21
|
+
|
22
|
+
ACTION_CODE_MESSAGES = {
|
23
|
+
"001" => "Refer to card issuer.",
|
24
|
+
"002" => "Refer to card issuer, special condition.",
|
25
|
+
"003" => "Pick up card.",
|
26
|
+
"200" => "Deny - Pick up card.",
|
27
|
+
"005" => "Do not honor.",
|
28
|
+
"100" => "Deny.",
|
29
|
+
"006" => "Error.",
|
30
|
+
"181" => "Format error.",
|
31
|
+
"007" => "Pickup card, special condition.",
|
32
|
+
"104" => "Deny - New card issued.",
|
33
|
+
"110" => "Invalid amount.",
|
34
|
+
"014" => "Invalid account number (no such number).",
|
35
|
+
"111" => "Invalid account.",
|
36
|
+
"015" => "No such issuer.",
|
37
|
+
"103" => "Deny - Invalid manual Entry 4DBC.",
|
38
|
+
"182" => "Please wait.",
|
39
|
+
"109" => "Invalid merchant.",
|
40
|
+
"041" => "Pick up card (lost card).",
|
41
|
+
"043" => "Pick up card (stolen card).",
|
42
|
+
"051" => "Insufficient funds.",
|
43
|
+
"052" => "No checking account.",
|
44
|
+
"105" => "Deny - Account Cancelled.",
|
45
|
+
"054" => "Expired Card.",
|
46
|
+
"101" => "Expired Card.",
|
47
|
+
"183" => "Invalid currency code.",
|
48
|
+
"057" => "Transaction not permitted to cardholder.",
|
49
|
+
"115" => "Service not permitted.",
|
50
|
+
"062" => "Restricted card.",
|
51
|
+
"189" => "Deny - Cancelled or Closed Merchant/SE.",
|
52
|
+
"188" => "Deny - Expiration date required.",
|
53
|
+
"125" => "Invalid effective date.",
|
54
|
+
"122" => "Invalid card (CID) security code.",
|
55
|
+
"400" => "Reversal accepted.",
|
56
|
+
"992" => "DECLINE/TIMEOUT.",
|
57
|
+
"107" => "Please Call Issuer.",
|
58
|
+
"025" => "Transaction Not Found.",
|
59
|
+
"981" => "AVS Error.",
|
60
|
+
"913" => "Invalid Card Type.",
|
61
|
+
"996" => "Terminal ID Not Found."
|
62
|
+
}
|
63
|
+
|
64
|
+
def initialize(options = {})
|
65
|
+
requires!(options, :login)
|
66
|
+
@options = options
|
67
|
+
super
|
68
|
+
end
|
69
|
+
|
70
|
+
def purchase(money, credit_card, options = {})
|
71
|
+
commit(money, build_sale_request(money, credit_card, options))
|
72
|
+
end
|
73
|
+
|
74
|
+
def authorize(money, credit_card, options = {})
|
75
|
+
commit(money, build_authonly_request(money, credit_card, options))
|
76
|
+
end
|
77
|
+
|
78
|
+
def capture(money, reference, options = {})
|
79
|
+
commit(money, build_capture_request('CAPT', reference.split(";").first))
|
80
|
+
end
|
81
|
+
|
82
|
+
def void(reference, options = {})
|
83
|
+
transaction_id, approval, amount = reference.split(";")
|
84
|
+
commit(amount.to_i, build_void_request(amount.to_i, transaction_id, approval))
|
85
|
+
end
|
86
|
+
|
87
|
+
def credit(money, transaction_id_or_card, options = {})
|
88
|
+
|
89
|
+
if transaction_id_or_card.is_a?(String)
|
90
|
+
transaction_id = transaction_id_or_card.split(";").first
|
91
|
+
credit_card = options[:credit_card]
|
92
|
+
else
|
93
|
+
transaction_id = nil
|
94
|
+
credit_card = transaction_id_or_card
|
95
|
+
end
|
96
|
+
|
97
|
+
commit(money, build_credit_request('CREDIT', money, transaction_id, credit_card))
|
98
|
+
end
|
99
|
+
|
100
|
+
private
|
101
|
+
|
102
|
+
def build_xml_request(transaction_type, transaction_id = nil, &block)
|
103
|
+
xml = Builder::XmlMarkup.new
|
104
|
+
xml.tag! 'JetPay' do
|
105
|
+
# The basic values needed for any request
|
106
|
+
xml.tag! 'TerminalID', @options[:login]
|
107
|
+
xml.tag! 'TransactionType', transaction_type
|
108
|
+
xml.tag! 'TransactionID', transaction_id.nil? ? generate_unique_id.slice(0, 18) : transaction_id
|
109
|
+
|
110
|
+
if block_given?
|
111
|
+
yield xml
|
112
|
+
else
|
113
|
+
xml.target!
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
def build_sale_request(money, credit_card, options)
|
119
|
+
build_xml_request('SALE') do |xml|
|
120
|
+
add_credit_card(xml, credit_card)
|
121
|
+
add_addresses(xml, options)
|
122
|
+
add_customer_data(xml, options)
|
123
|
+
add_invoice_data(xml, options)
|
124
|
+
xml.tag! 'TotalAmount', amount(money)
|
125
|
+
|
126
|
+
xml.target!
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
def build_authonly_request(money, credit_card, options)
|
131
|
+
build_xml_request('AUTHONLY') do |xml|
|
132
|
+
add_credit_card(xml, credit_card)
|
133
|
+
add_addresses(xml, options)
|
134
|
+
add_customer_data(xml, options)
|
135
|
+
add_invoice_data(xml, options)
|
136
|
+
xml.tag! 'TotalAmount', amount(money)
|
137
|
+
|
138
|
+
xml.target!
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def build_capture_request(transaction_type, transaction_id)
|
143
|
+
build_xml_request(transaction_type, transaction_id)
|
144
|
+
end
|
145
|
+
|
146
|
+
def build_void_request(money, transaction_id, approval)
|
147
|
+
build_xml_request('VOID', transaction_id) do |xml|
|
148
|
+
xml.tag! 'Approval', approval
|
149
|
+
xml.tag! 'TotalAmount', amount(money)
|
150
|
+
|
151
|
+
xml.target!
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# `transaction_id` may be nil for unlinked credit transactions.
|
156
|
+
def build_credit_request(transaction_type, money, transaction_id, card)
|
157
|
+
build_xml_request(transaction_type, transaction_id) do |xml|
|
158
|
+
add_credit_card(xml, card) if card
|
159
|
+
xml.tag! 'TotalAmount', amount(money)
|
160
|
+
|
161
|
+
xml.target!
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
def commit(money, request)
|
166
|
+
response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, request))
|
167
|
+
|
168
|
+
success = success?(response)
|
169
|
+
Response.new(success,
|
170
|
+
success ? 'APPROVED' : message_from(response),
|
171
|
+
response,
|
172
|
+
:test => test?,
|
173
|
+
:authorization => authorization_from(response, money),
|
174
|
+
:avs_result => { :code => response[:avs] },
|
175
|
+
:cvv_result => response[:cvv2]
|
176
|
+
)
|
177
|
+
end
|
178
|
+
|
179
|
+
def parse(body)
|
180
|
+
xml = REXML::Document.new(body)
|
181
|
+
|
182
|
+
response = {}
|
183
|
+
xml.root.elements.to_a.each do |node|
|
184
|
+
parse_element(response, node)
|
185
|
+
end
|
186
|
+
response
|
187
|
+
end
|
188
|
+
|
189
|
+
def parse_element(response, node)
|
190
|
+
if node.has_elements?
|
191
|
+
node.elements.each{|element| parse_element(response, element) }
|
192
|
+
else
|
193
|
+
response[node.name.underscore.to_sym] = node.text
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
197
|
+
def format_exp(value)
|
198
|
+
format(value, :two_digits)
|
199
|
+
end
|
200
|
+
|
201
|
+
def success?(response)
|
202
|
+
response[:action_code] == "000"
|
203
|
+
end
|
204
|
+
|
205
|
+
def message_from(response)
|
206
|
+
ACTION_CODE_MESSAGES[response[:action_code]]
|
207
|
+
end
|
208
|
+
|
209
|
+
def authorization_from(response, money)
|
210
|
+
original_amount = amount(money) if money
|
211
|
+
[ response[:transaction_id], response[:approval], original_amount ].join(";")
|
212
|
+
end
|
213
|
+
|
214
|
+
def add_credit_card(xml, credit_card)
|
215
|
+
xml.tag! 'CardNum', credit_card.number
|
216
|
+
xml.tag! 'CardExpMonth', format_exp(credit_card.month)
|
217
|
+
xml.tag! 'CardExpYear', format_exp(credit_card.year)
|
218
|
+
|
219
|
+
if credit_card.first_name || credit_card.last_name
|
220
|
+
xml.tag! 'CardName', [credit_card.first_name,credit_card.last_name].compact.join(' ')
|
221
|
+
end
|
222
|
+
|
223
|
+
unless credit_card.verification_value.nil? || (credit_card.verification_value.length == 0)
|
224
|
+
xml.tag! 'CVV2', credit_card.verification_value
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
def add_addresses(xml, options)
|
229
|
+
if billing_address = options[:billing_address] || options[:address]
|
230
|
+
xml.tag! 'BillingAddress', [billing_address[:address1], billing_address[:address2]].compact.join(" ")
|
231
|
+
xml.tag! 'BillingCity', billing_address[:city]
|
232
|
+
xml.tag! 'BillingStateProv', billing_address[:state]
|
233
|
+
xml.tag! 'BillingPostalCode', billing_address[:zip]
|
234
|
+
xml.tag! 'BillingCountry', lookup_country_code(billing_address[:country])
|
235
|
+
xml.tag! 'BillingPhone', billing_address[:phone]
|
236
|
+
end
|
237
|
+
|
238
|
+
if shipping_address = options[:shipping_address]
|
239
|
+
xml.tag! 'ShippingInfo' do
|
240
|
+
xml.tag! 'ShippingName', shipping_address[:name]
|
241
|
+
|
242
|
+
xml.tag! 'ShippingAddr' do
|
243
|
+
xml.tag! 'Address', [shipping_address[:address1], shipping_address[:address2]].compact.join(" ")
|
244
|
+
xml.tag! 'City', shipping_address[:city]
|
245
|
+
xml.tag! 'StateProv', shipping_address[:state]
|
246
|
+
xml.tag! 'PostalCode', shipping_address[:zip]
|
247
|
+
xml.tag! 'Country', lookup_country_code(shipping_address[:country])
|
248
|
+
end
|
249
|
+
end
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
def add_customer_data(xml, options)
|
254
|
+
xml.tag! 'Email', options[:email] if options[:email]
|
255
|
+
xml.tag! 'UserIPAddress', options[:ip] if options[:ip]
|
256
|
+
end
|
257
|
+
|
258
|
+
def add_invoice_data(xml, options)
|
259
|
+
xml.tag! 'OrderNumber', options[:order_id] if options[:order_id]
|
260
|
+
xml.tag! 'TaxAmount', amount(options[:tax]) if options[:tax]
|
261
|
+
end
|
262
|
+
|
263
|
+
def lookup_country_code(code)
|
264
|
+
country = Country.find(code) rescue nil
|
265
|
+
country && country.code(:alpha3)
|
266
|
+
end
|
267
|
+
end
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
@@ -0,0 +1,449 @@
|
|
1
|
+
require 'rexml/document'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
|
6
|
+
# Initialization Options
|
7
|
+
# :login Your store number
|
8
|
+
# :pem The text of your linkpoint PEM file. Note
|
9
|
+
# this is not the path to file, but its
|
10
|
+
# contents. If you are only using one PEM
|
11
|
+
# file on your site you can declare it
|
12
|
+
# globally and then you won't need to
|
13
|
+
# include this option
|
14
|
+
#
|
15
|
+
#
|
16
|
+
# A valid store number is required. Unfortunately, with LinkPoint
|
17
|
+
# YOU CAN'T JUST USE ANY OLD STORE NUMBER. Also, you can't just
|
18
|
+
# generate your own PEM file. You'll need to use a special PEM file
|
19
|
+
# provided by LinkPoint.
|
20
|
+
#
|
21
|
+
# Go to http://www.linkpoint.com/support/sup_teststore.asp to set up
|
22
|
+
# a test account and obtain your PEM file.
|
23
|
+
#
|
24
|
+
# Declaring PEM file Globally
|
25
|
+
# ActiveMerchant::Billing::LinkpointGateway.pem_file = File.read( File.dirname(__FILE__) + '/../mycert.pem' )
|
26
|
+
#
|
27
|
+
#
|
28
|
+
# Valid Order Options
|
29
|
+
# :result =>
|
30
|
+
# LIVE Production mode
|
31
|
+
# GOOD Approved response in test mode
|
32
|
+
# DECLINE Declined response in test mode
|
33
|
+
# DUPLICATE Duplicate response in test mode
|
34
|
+
#
|
35
|
+
# :ponumber Order number
|
36
|
+
#
|
37
|
+
# :transactionorigin => Source of the transaction
|
38
|
+
# ECI Email or Internet
|
39
|
+
# MAIL Mail order
|
40
|
+
# MOTO Mail order/Telephone
|
41
|
+
# TELEPHONE Telephone
|
42
|
+
# RETAIL Face-to-face
|
43
|
+
#
|
44
|
+
# :ordertype =>
|
45
|
+
# SALE Real live sale
|
46
|
+
# PREAUTH Authorize only
|
47
|
+
# POSTAUTH Forced Ticket or Ticket Only transaction
|
48
|
+
# VOID
|
49
|
+
# CREDIT
|
50
|
+
# CALCSHIPPING For shipping charges calculations
|
51
|
+
# CALCTAX For sales tax calculations
|
52
|
+
#
|
53
|
+
# Recurring Options
|
54
|
+
# :action =>
|
55
|
+
# SUBMIT
|
56
|
+
# MODIFY
|
57
|
+
# CANCEL
|
58
|
+
#
|
59
|
+
# :installments Identifies how many recurring payments to charge the customer
|
60
|
+
# :startdate Date to begin charging the recurring payments. Format: YYYYMMDD or "immediate"
|
61
|
+
# :periodicity =>
|
62
|
+
# MONTHLY
|
63
|
+
# BIMONTHLY
|
64
|
+
# WEEKLY
|
65
|
+
# BIWEEKLY
|
66
|
+
# YEARLY
|
67
|
+
# DAILY
|
68
|
+
# :threshold Tells how many times to retry the transaction (if it fails) before contacting the merchant.
|
69
|
+
# :comments Uh... comments
|
70
|
+
#
|
71
|
+
#
|
72
|
+
# For reference:
|
73
|
+
#
|
74
|
+
# https://www.linkpointcentral.com/lpc/docs/Help/APIHelp/lpintguide.htm
|
75
|
+
#
|
76
|
+
# Entities = {
|
77
|
+
# :payment => [:subtotal, :tax, :vattax, :shipping, :chargetotal],
|
78
|
+
# :billing => [:name, :address1, :address2, :city, :state, :zip, :country, :email, :phone, :fax, :addrnum],
|
79
|
+
# :shipping => [:name, :address1, :address2, :city, :state, :zip, :country, :weight, :items, :carrier, :total],
|
80
|
+
# :creditcard => [:cardnumber, :cardexpmonth, :cardexpyear, :cvmvalue, :track],
|
81
|
+
# :telecheck => [:routing, :account, :checknumber, :bankname, :bankstate, :dl, :dlstate, :void, :accounttype, :ssn],
|
82
|
+
# :transactiondetails => [:transactionorigin, :oid, :ponumber, :taxexempt, :terminaltype, :ip, :reference_number, :recurring, :tdate],
|
83
|
+
# :periodic => [:action, :installments, :threshold, :startdate, :periodicity, :comments],
|
84
|
+
# :notes => [:comments, :referred]
|
85
|
+
# :items => [:item => [:price, :quantity, :description, :id, :options => [:option => [:name, :value]]]]
|
86
|
+
# }
|
87
|
+
#
|
88
|
+
#
|
89
|
+
# LinkPoint's Items entity is an optional entity that can be attached to orders.
|
90
|
+
# It is entered as :line_items to be consistent with the CyberSource implementation
|
91
|
+
#
|
92
|
+
# The line_item hash goes in the options hash and should look like
|
93
|
+
#
|
94
|
+
# :line_items => [
|
95
|
+
# {
|
96
|
+
# :id => '123456',
|
97
|
+
# :description => 'Logo T-Shirt',
|
98
|
+
# :price => '12.00',
|
99
|
+
# :quantity => '1',
|
100
|
+
# :options => [
|
101
|
+
# {
|
102
|
+
# :name => 'Color',
|
103
|
+
# :value => 'Red'
|
104
|
+
# },
|
105
|
+
# {
|
106
|
+
# :name => 'Size',
|
107
|
+
# :value => 'XL'
|
108
|
+
# }
|
109
|
+
# ]
|
110
|
+
# },
|
111
|
+
# {
|
112
|
+
# :id => '111',
|
113
|
+
# :description => 'keychain',
|
114
|
+
# :price => '3.00',
|
115
|
+
# :quantity => '1'
|
116
|
+
# }
|
117
|
+
# ]
|
118
|
+
# This functionality is only supported by this particular gateway may
|
119
|
+
# be changed at any time
|
120
|
+
#
|
121
|
+
class LinkpointGateway < Gateway
|
122
|
+
# Your global PEM file. This will be assigned to you by linkpoint
|
123
|
+
#
|
124
|
+
# Example:
|
125
|
+
#
|
126
|
+
# ActiveMerchant::Billing::LinkpointGateway.pem_file = File.read( File.dirname(__FILE__) + '/../mycert.pem' )
|
127
|
+
#
|
128
|
+
cattr_accessor :pem_file
|
129
|
+
|
130
|
+
TEST_URL = 'https://staging.linkpt.net:1129/'
|
131
|
+
LIVE_URL = 'https://secure.linkpt.net:1129/'
|
132
|
+
|
133
|
+
# We don't have the certificate to verify LinkPoint
|
134
|
+
self.ssl_strict = false
|
135
|
+
|
136
|
+
self.supported_countries = ['US']
|
137
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
138
|
+
self.homepage_url = 'http://www.linkpoint.com/'
|
139
|
+
self.display_name = 'LinkPoint'
|
140
|
+
|
141
|
+
def initialize(options = {})
|
142
|
+
requires!(options, :login)
|
143
|
+
|
144
|
+
@options = {
|
145
|
+
:result => 'LIVE',
|
146
|
+
:pem => LinkpointGateway.pem_file
|
147
|
+
}.update(options)
|
148
|
+
|
149
|
+
raise ArgumentError, "You need to pass in your pem file using the :pem parameter or set it globally using ActiveMerchant::Billing::LinkpointGateway.pem_file = File.read( File.dirname(__FILE__) + '/../mycert.pem' ) or similar" if @options[:pem].blank?
|
150
|
+
end
|
151
|
+
|
152
|
+
# Send a purchase request with periodic options
|
153
|
+
# Recurring Options
|
154
|
+
# :action =>
|
155
|
+
# SUBMIT
|
156
|
+
# MODIFY
|
157
|
+
# CANCEL
|
158
|
+
#
|
159
|
+
# :installments Identifies how many recurring payments to charge the customer
|
160
|
+
# :startdate Date to begin charging the recurring payments. Format: YYYYMMDD or "immediate"
|
161
|
+
# :periodicity =>
|
162
|
+
# :monthly
|
163
|
+
# :bimonthly
|
164
|
+
# :weekly
|
165
|
+
# :biweekly
|
166
|
+
# :yearly
|
167
|
+
# :daily
|
168
|
+
# :threshold Tells how many times to retry the transaction (if it fails) before contacting the merchant.
|
169
|
+
# :comments Uh... comments
|
170
|
+
#
|
171
|
+
def recurring(money, creditcard, options={})
|
172
|
+
requires!(options, [:periodicity, :bimonthly, :monthly, :biweekly, :weekly, :yearly, :daily], :installments, :order_id )
|
173
|
+
|
174
|
+
options.update(
|
175
|
+
:ordertype => "SALE",
|
176
|
+
:action => options[:action] || "SUBMIT",
|
177
|
+
:installments => options[:installments] || 12,
|
178
|
+
:startdate => options[:startdate] || "immediate",
|
179
|
+
:periodicity => options[:periodicity].to_s || "monthly",
|
180
|
+
:comments => options[:comments] || nil,
|
181
|
+
:threshold => options[:threshold] || 3
|
182
|
+
)
|
183
|
+
commit(money, creditcard, options)
|
184
|
+
end
|
185
|
+
|
186
|
+
# Buy the thing
|
187
|
+
def purchase(money, creditcard, options={})
|
188
|
+
requires!(options, :order_id)
|
189
|
+
options.update(
|
190
|
+
:ordertype => "SALE"
|
191
|
+
)
|
192
|
+
commit(money, creditcard, options)
|
193
|
+
end
|
194
|
+
|
195
|
+
#
|
196
|
+
# Authorize the transaction
|
197
|
+
#
|
198
|
+
# Reserves the funds on the customer's credit card, but does not charge the card.
|
199
|
+
#
|
200
|
+
def authorize(money, creditcard, options = {})
|
201
|
+
requires!(options, :order_id)
|
202
|
+
options.update(
|
203
|
+
:ordertype => "PREAUTH"
|
204
|
+
)
|
205
|
+
commit(money, creditcard, options)
|
206
|
+
end
|
207
|
+
|
208
|
+
#
|
209
|
+
# Post an authorization.
|
210
|
+
#
|
211
|
+
# Captures the funds from an authorized transaction.
|
212
|
+
# Order_id must be a valid order id from a prior authorized transaction.
|
213
|
+
#
|
214
|
+
def capture(money, authorization, options = {})
|
215
|
+
options.update(
|
216
|
+
:order_id => authorization,
|
217
|
+
:ordertype => "POSTAUTH"
|
218
|
+
)
|
219
|
+
commit(money, nil, options)
|
220
|
+
end
|
221
|
+
|
222
|
+
# Void a previous transaction
|
223
|
+
def void(identification, options = {})
|
224
|
+
options.update(
|
225
|
+
:order_id => identification,
|
226
|
+
:ordertype => "VOID"
|
227
|
+
)
|
228
|
+
commit(nil, nil, options)
|
229
|
+
end
|
230
|
+
|
231
|
+
#
|
232
|
+
# Refund an order
|
233
|
+
#
|
234
|
+
# identification must be a valid order id previously submitted by SALE
|
235
|
+
#
|
236
|
+
def credit(money, identification, options = {})
|
237
|
+
options.update(
|
238
|
+
:ordertype => "CREDIT",
|
239
|
+
:order_id => identification
|
240
|
+
)
|
241
|
+
commit(money, nil, options)
|
242
|
+
end
|
243
|
+
|
244
|
+
def test?
|
245
|
+
@options[:test] || super
|
246
|
+
end
|
247
|
+
|
248
|
+
private
|
249
|
+
# Commit the transaction by posting the XML file to the LinkPoint server
|
250
|
+
def commit(money, creditcard, options = {})
|
251
|
+
response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, post_data(money, creditcard, options)))
|
252
|
+
|
253
|
+
Response.new(successful?(response), response[:message], response,
|
254
|
+
:test => test?,
|
255
|
+
:authorization => response[:ordernum],
|
256
|
+
:avs_result => { :code => response[:avs].to_s[2,1] },
|
257
|
+
:cvv_result => response[:avs].to_s[3,1]
|
258
|
+
)
|
259
|
+
end
|
260
|
+
|
261
|
+
def successful?(response)
|
262
|
+
response[:approved] == "APPROVED"
|
263
|
+
end
|
264
|
+
|
265
|
+
# Build the XML file
|
266
|
+
def post_data(money, creditcard, options)
|
267
|
+
params = parameters(money, creditcard, options)
|
268
|
+
|
269
|
+
xml = REXML::Document.new
|
270
|
+
order = xml.add_element("order")
|
271
|
+
|
272
|
+
# Merchant Info
|
273
|
+
merchantinfo = order.add_element("merchantinfo")
|
274
|
+
merchantinfo.add_element("configfile").text = @options[:login]
|
275
|
+
|
276
|
+
# Loop over the params hash to construct the XML string
|
277
|
+
for key, value in params
|
278
|
+
elem = order.add_element(key.to_s)
|
279
|
+
if key == :items
|
280
|
+
build_items(elem, value)
|
281
|
+
else
|
282
|
+
for k, v in params[key]
|
283
|
+
elem.add_element(k.to_s).text = params[key][k].to_s if params[key][k]
|
284
|
+
end
|
285
|
+
end
|
286
|
+
# Linkpoint doesn't understand empty elements:
|
287
|
+
order.delete(elem) if elem.size == 0
|
288
|
+
end
|
289
|
+
return xml.to_s
|
290
|
+
end
|
291
|
+
|
292
|
+
# adds LinkPoint's Items entity to the XML. Called from post_data
|
293
|
+
def build_items(element, items)
|
294
|
+
for item in items
|
295
|
+
item_element = element.add_element("item")
|
296
|
+
for key, value in item
|
297
|
+
if key == :options
|
298
|
+
options_element = item_element.add_element("options")
|
299
|
+
for option in value
|
300
|
+
opt_element = options_element.add_element("option")
|
301
|
+
opt_element.add_element("name").text = option[:name] unless option[:name].blank?
|
302
|
+
opt_element.add_element("value").text = option[:value] unless option[:value].blank?
|
303
|
+
end
|
304
|
+
else
|
305
|
+
item_element.add_element(key.to_s).text = item[key].to_s unless item[key].blank?
|
306
|
+
end
|
307
|
+
end
|
308
|
+
end
|
309
|
+
end
|
310
|
+
|
311
|
+
# Set up the parameters hash just once so we don't have to do it
|
312
|
+
# for every action.
|
313
|
+
def parameters(money, creditcard, options = {})
|
314
|
+
|
315
|
+
params = {
|
316
|
+
:payment => {
|
317
|
+
:subtotal => amount(options[:subtotal]),
|
318
|
+
:tax => amount(options[:tax]),
|
319
|
+
:vattax => amount(options[:vattax]),
|
320
|
+
:shipping => amount(options[:shipping]),
|
321
|
+
:chargetotal => amount(money)
|
322
|
+
},
|
323
|
+
:transactiondetails => {
|
324
|
+
:transactionorigin => options[:transactionorigin] || "ECI",
|
325
|
+
:oid => options[:order_id],
|
326
|
+
:ponumber => options[:ponumber],
|
327
|
+
:taxexempt => options[:taxexempt],
|
328
|
+
:terminaltype => options[:terminaltype],
|
329
|
+
:ip => options[:ip],
|
330
|
+
:reference_number => options[:reference_number],
|
331
|
+
:recurring => options[:recurring] || "NO", #DO NOT USE if you are using the periodic billing option.
|
332
|
+
:tdate => options[:tdate]
|
333
|
+
},
|
334
|
+
:orderoptions => {
|
335
|
+
:ordertype => options[:ordertype],
|
336
|
+
:result => @options[:result]
|
337
|
+
},
|
338
|
+
:periodic => {
|
339
|
+
:action => options[:action],
|
340
|
+
:installments => options[:installments],
|
341
|
+
:threshold => options[:threshold],
|
342
|
+
:startdate => options[:startdate],
|
343
|
+
:periodicity => options[:periodicity],
|
344
|
+
:comments => options[:comments]
|
345
|
+
},
|
346
|
+
:telecheck => {
|
347
|
+
:routing => options[:telecheck_routing],
|
348
|
+
:account => options[:telecheck_account],
|
349
|
+
:checknumber => options[:telecheck_checknumber],
|
350
|
+
:bankname => options[:telecheck_bankname],
|
351
|
+
:dl => options[:telecheck_dl],
|
352
|
+
:dlstate => options[:telecheck_dlstate],
|
353
|
+
:void => options[:telecheck_void],
|
354
|
+
:accounttype => options[:telecheck_accounttype],
|
355
|
+
:ssn => options[:telecheck_ssn],
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
if creditcard
|
360
|
+
params[:creditcard] = {
|
361
|
+
:cardnumber => creditcard.number,
|
362
|
+
:cardexpmonth => creditcard.month,
|
363
|
+
:cardexpyear => format_creditcard_expiry_year(creditcard.year),
|
364
|
+
:track => nil
|
365
|
+
}
|
366
|
+
|
367
|
+
if creditcard.verification_value?
|
368
|
+
params[:creditcard][:cvmvalue] = creditcard.verification_value
|
369
|
+
params[:creditcard][:cvmindicator] = 'provided'
|
370
|
+
else
|
371
|
+
params[:creditcard][:cvmindicator] = 'not_provided'
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
if billing_address = options[:billing_address] || options[:address]
|
376
|
+
|
377
|
+
params[:billing] = {}
|
378
|
+
params[:billing][:name] = billing_address[:name] || (creditcard ? creditcard.name : nil)
|
379
|
+
params[:billing][:address1] = billing_address[:address1] unless billing_address[:address1].blank?
|
380
|
+
params[:billing][:address2] = billing_address[:address2] unless billing_address[:address2].blank?
|
381
|
+
params[:billing][:city] = billing_address[:city] unless billing_address[:city].blank?
|
382
|
+
params[:billing][:state] = billing_address[:state] unless billing_address[:state].blank?
|
383
|
+
params[:billing][:zip] = billing_address[:zip] unless billing_address[:zip].blank?
|
384
|
+
params[:billing][:country] = billing_address[:country] unless billing_address[:country].blank?
|
385
|
+
params[:billing][:company] = billing_address[:company] unless billing_address[:company].blank?
|
386
|
+
params[:billing][:phone] = billing_address[:phone] unless billing_address[:phone].blank?
|
387
|
+
params[:billing][:email] = options[:email] unless options[:email].blank?
|
388
|
+
end
|
389
|
+
|
390
|
+
if shipping_address = options[:shipping_address]
|
391
|
+
|
392
|
+
params[:shipping] = {}
|
393
|
+
params[:shipping][:name] = shipping_address[:name] || creditcard ? creditcard.name : nil
|
394
|
+
params[:shipping][:address1] = shipping_address[:address1] unless shipping_address[:address1].blank?
|
395
|
+
params[:shipping][:address2] = shipping_address[:address2] unless shipping_address[:address2].blank?
|
396
|
+
params[:shipping][:city] = shipping_address[:city] unless shipping_address[:city].blank?
|
397
|
+
params[:shipping][:state] = shipping_address[:state] unless shipping_address[:state].blank?
|
398
|
+
params[:shipping][:zip] = shipping_address[:zip] unless shipping_address[:zip].blank?
|
399
|
+
params[:shipping][:country] = shipping_address[:country] unless shipping_address[:country].blank?
|
400
|
+
end
|
401
|
+
|
402
|
+
params[:items] = options[:line_items] if options[:line_items]
|
403
|
+
|
404
|
+
return params
|
405
|
+
end
|
406
|
+
|
407
|
+
def parse(xml)
|
408
|
+
|
409
|
+
# For reference, a typical response...
|
410
|
+
# <r_csp></r_csp>
|
411
|
+
# <r_time></r_time>
|
412
|
+
# <r_ref></r_ref>
|
413
|
+
# <r_error></r_error>
|
414
|
+
# <r_ordernum></r_ordernum>
|
415
|
+
# <r_message>This is a test transaction and will not show up in the Reports</r_message>
|
416
|
+
# <r_code></r_code>
|
417
|
+
# <r_tdate>Thu Feb 2 15:40:21 2006</r_tdate>
|
418
|
+
# <r_score></r_score>
|
419
|
+
# <r_authresponse></r_authresponse>
|
420
|
+
# <r_approved>APPROVED</r_approved>
|
421
|
+
# <r_avs></r_avs>
|
422
|
+
|
423
|
+
response = {:message => "Global Error Receipt", :complete => false}
|
424
|
+
|
425
|
+
xml = REXML::Document.new("<response>#{xml}</response>")
|
426
|
+
xml.root.elements.each do |node|
|
427
|
+
response[node.name.downcase.sub(/^r_/, '').to_sym] = normalize(node.text)
|
428
|
+
end unless xml.root.nil?
|
429
|
+
|
430
|
+
response
|
431
|
+
end
|
432
|
+
|
433
|
+
# Make a ruby type out of the response string
|
434
|
+
def normalize(field)
|
435
|
+
case field
|
436
|
+
when "true" then true
|
437
|
+
when "false" then false
|
438
|
+
when "" then nil
|
439
|
+
when "null" then nil
|
440
|
+
else field
|
441
|
+
end
|
442
|
+
end
|
443
|
+
|
444
|
+
def format_creditcard_expiry_year(year)
|
445
|
+
sprintf("%.4i", year)[-2..-1]
|
446
|
+
end
|
447
|
+
end
|
448
|
+
end
|
449
|
+
end
|