tlconnor-activemerchant 1.20.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +805 -0
- data/CONTRIBUTORS +274 -0
- data/MIT-LICENSE +20 -0
- data/gem-public_cert.pem +20 -0
- data/lib/active_merchant.rb +63 -0
- data/lib/active_merchant/billing.rb +9 -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 +264 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +129 -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 +170 -0
- data/lib/active_merchant/billing/gateways.rb +18 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +694 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +944 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +308 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +167 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +388 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +11 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +142 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +308 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +21 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
- data/lib/active_merchant/billing/gateways/certo_direct.rb +279 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +430 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +597 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +235 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +135 -0
- data/lib/active_merchant/billing/gateways/epay.rb +274 -0
- data/lib/active_merchant/billing/gateways/eway.rb +277 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +265 -0
- data/lib/active_merchant/billing/gateways/exact.rb +227 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +168 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +177 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +262 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +250 -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 +55 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +258 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +276 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +454 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +157 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +289 -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 +239 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +244 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +239 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +13 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +330 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +277 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +344 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +397 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +207 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +261 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +208 -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 +222 -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 +235 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +354 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +49 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +229 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +25 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +201 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +298 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +219 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +297 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +282 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +298 -0
- data/lib/active_merchant/billing/gateways/realex.rb +315 -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 +320 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
- data/lib/active_merchant/billing/gateways/samurai.rb +121 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +280 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +458 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +271 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +244 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
- data/lib/active_merchant/billing/gateways/transax.rb +25 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +423 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +23 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1496 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +206 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +233 -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/gateways/worldpay.rb +280 -0
- data/lib/active_merchant/billing/integrations.rb +17 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +72 -0
- data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +38 -0
- data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +228 -0
- data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +340 -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 +120 -0
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
- data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
- data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
- data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
- data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
- data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
- data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
- data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
- data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
- data/lib/active_merchant/billing/integrations/dwolla.rb +30 -0
- data/lib/active_merchant/billing/integrations/dwolla/helper.rb +31 -0
- data/lib/active_merchant/billing/integrations/dwolla/notification.rb +55 -0
- data/lib/active_merchant/billing/integrations/dwolla/return.rb +38 -0
- data/lib/active_merchant/billing/integrations/e_payment_plans.rb +48 -0
- data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +34 -0
- data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +84 -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 +85 -0
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/helper.rb +113 -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/moneybookers.rb +26 -0
- data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +59 -0
- data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -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/payflow_link.rb +21 -0
- data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +100 -0
- data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +78 -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 +21 -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 +42 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +127 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +22 -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/integrations/valitor.rb +33 -0
- data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
- data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
- data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +97 -0
- data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
- data/lib/active_merchant/billing/integrations/world_pay.rb +27 -0
- data/lib/active_merchant/billing/integrations/world_pay/helper.rb +100 -0
- data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/support/gateway_support.rb +58 -0
- data/lib/support/outbound_hosts.rb +25 -0
- metadata +411 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class OrbitalSoftDescriptors
|
4
|
+
include Validateable
|
5
|
+
|
6
|
+
PHONE_FORMAT_1 = /\A\d{3}-\d{3}-\d{4}\z/
|
7
|
+
PHONE_FORMAT_2 = /\A\d{3}-\w{7}\z/
|
8
|
+
|
9
|
+
# ==== Tampa PNS Soft Descriptors
|
10
|
+
# The support for Soft Descriptors via the PNS Host is only for customers processing through Chase
|
11
|
+
# Paymentech Canada.
|
12
|
+
|
13
|
+
# Unlike Salem, the only value that gets passed on the cardholder statement is the Merchant Name field.
|
14
|
+
# And for these customers, it is a maximum of 25 bytes of data.
|
15
|
+
#
|
16
|
+
# All other Soft Descriptor fields can optionally be sent, but will not be submitted to the settlement host
|
17
|
+
# and will not display on the cardholder statement.
|
18
|
+
|
19
|
+
attr_accessor :merchant_name, :product_description, :merchant_city, :merchant_phone, :merchant_url, :merchant_email
|
20
|
+
|
21
|
+
def initialize(options = {})
|
22
|
+
self.merchant_name = options[:merchant_name]
|
23
|
+
self.merchant_city = options[:merchant_city]
|
24
|
+
self.merchant_phone = options[:merchant_phone]
|
25
|
+
self.merchant_url = options[:merchant_url]
|
26
|
+
self.merchant_email = options[:merchant_email]
|
27
|
+
end
|
28
|
+
|
29
|
+
def validate
|
30
|
+
errors.add(:merchant_name, "is required") if self.merchant_name.blank?
|
31
|
+
errors.add(:merchant_name, "is required to be 25 bytes or less") if self.merchant_name.bytesize > 25
|
32
|
+
|
33
|
+
unless self.merchant_phone.blank? || self.merchant_phone.match(PHONE_FORMAT_1) || self.merchant_phone.match(PHONE_FORMAT_2)
|
34
|
+
errors.add(:merchant_phone, "is required to follow \"NNN-NNN-NNNN\" or \"NNN-AAAAAAA\" format")
|
35
|
+
end
|
36
|
+
|
37
|
+
[:merchant_email, :merchant_url].each do |attr|
|
38
|
+
unless self.send(attr).blank?
|
39
|
+
errors.add(attr, "is required to be 13 bytes or less") if self.send(attr).bytesize > 13
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,397 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
# PayJunction Gateway
|
4
|
+
#
|
5
|
+
# This gateway accepts the following arguments:
|
6
|
+
# :login => your PayJunction username
|
7
|
+
# :password => your PayJunction pass
|
8
|
+
#
|
9
|
+
# Example use:
|
10
|
+
#
|
11
|
+
# gateway = ActiveMerchant::Billing::Base.gateway(:pay_junction).new(
|
12
|
+
# :login => "my_account",
|
13
|
+
# :password => "my_pass"
|
14
|
+
# )
|
15
|
+
#
|
16
|
+
# # set up credit card obj as in main ActiveMerchant example
|
17
|
+
# creditcard = ActiveMerchant::Billing::CreditCard.new(
|
18
|
+
# :type => 'visa',
|
19
|
+
# :number => '4242424242424242',
|
20
|
+
# :month => 8,
|
21
|
+
# :year => 2009,
|
22
|
+
# :first_name => 'Bob',
|
23
|
+
# :last_name => 'Bobsen'
|
24
|
+
# )
|
25
|
+
#
|
26
|
+
# # optionally specify address if using AVS
|
27
|
+
# address = { :address1 => '101 Test Ave', :city => 'Test', :state => 'TS',
|
28
|
+
# :zip => '10101', :country => 'US' }
|
29
|
+
#
|
30
|
+
# # run request
|
31
|
+
# response = gateway.purchase(1000, creditcard, :address => address) # charge 10 dollars
|
32
|
+
#
|
33
|
+
# 1) Check whether the transaction was successful
|
34
|
+
#
|
35
|
+
# response.success?
|
36
|
+
#
|
37
|
+
# 2) Retrieve the message returned by PayJunction
|
38
|
+
#
|
39
|
+
# response.message
|
40
|
+
#
|
41
|
+
# 3) Retrieve the unique transaction ID returned by PayJunction
|
42
|
+
#
|
43
|
+
# response.authorization
|
44
|
+
#
|
45
|
+
# This gateway supports "instant" transactions. These transactions allow you
|
46
|
+
# to execute an operation on a previously run card without card information
|
47
|
+
# provided you have the transaction id from a previous transaction with the
|
48
|
+
# same card. All functions that take a credit card object for this gateway
|
49
|
+
# can take a transaction id string instead.
|
50
|
+
#
|
51
|
+
# Test Transactions
|
52
|
+
#
|
53
|
+
# See the source for initialize() for test account information. Note that
|
54
|
+
# PayJunction does not allow test transactions on your account, so if the
|
55
|
+
# gateway is running in :test mode your transaction will be run against
|
56
|
+
# PayJunction's global test account and will not show up in your account.
|
57
|
+
#
|
58
|
+
# Transactions ran on this account go through a test processor, so there is no
|
59
|
+
# need to void or otherwise cancel transactions. However, for further safety,
|
60
|
+
# please use the special card numbers 4433221111223344 or 4444333322221111 and
|
61
|
+
# keep transaction amounts below $4.00 when testing.
|
62
|
+
#
|
63
|
+
# Also note, transactions ran for an amount between $0.00 and $1.99 will likely
|
64
|
+
# result in denial. To demonstrate approvals, use amounts between $2.00 and $4.00.
|
65
|
+
#
|
66
|
+
# Test transactions can be checked by logging into
|
67
|
+
# PayJunction Web Login with username 'pj-cm-01' and password 'pj-cm-01p'
|
68
|
+
#
|
69
|
+
# Usage Details
|
70
|
+
#
|
71
|
+
# Below is a map of values accepted by PayJunction and how you should submit
|
72
|
+
# each to ActiveMerchant
|
73
|
+
#
|
74
|
+
# PayJunction Field ActiveMerchant Use
|
75
|
+
#
|
76
|
+
# dc_logon provide as :login value to gateway instantation
|
77
|
+
# dc_password provide as :password value to gateway instantiation
|
78
|
+
#
|
79
|
+
# dc_name will be retrieved from credit_card.name
|
80
|
+
# dc_first_name :first_name on CreditCard object instantation
|
81
|
+
# dc_last_name :last_name on CreditCard object instantation
|
82
|
+
# dc_number :number on CreditCard object instantation
|
83
|
+
# dc_expiration_month :month on CreditCard object instantation
|
84
|
+
# dc_expiration_year :year on CreditCard object instantation
|
85
|
+
# dc_verification_number :verification_value on CC object instantation
|
86
|
+
#
|
87
|
+
# dc_transaction_amount include as argument to method for your transaction type
|
88
|
+
# dc_transaction_type do nothing, set by your transaction type
|
89
|
+
# dc_version do nothing, always "1.2"
|
90
|
+
#
|
91
|
+
# dc_transaction_id submit as a string in place of CreditCard obj for
|
92
|
+
# "instant" transactions.
|
93
|
+
#
|
94
|
+
# dc_invoice :order_id in options for transaction method
|
95
|
+
# dc_notes :description in options for transaction method
|
96
|
+
#
|
97
|
+
# See example use above for address AVS fields
|
98
|
+
# See #recurring for periodic transaction fields
|
99
|
+
class PayJunctionGateway < Gateway
|
100
|
+
API_VERSION = '1.2'
|
101
|
+
|
102
|
+
class_attribute :test_url, :live_url
|
103
|
+
|
104
|
+
self.test_url = "https://www.payjunctionlabs.com/quick_link"
|
105
|
+
self.live_url = "https://payjunction.com/quick_link"
|
106
|
+
|
107
|
+
TEST_LOGIN = 'pj-ql-01'
|
108
|
+
TEST_PASSWORD = 'pj-ql-01p'
|
109
|
+
|
110
|
+
SUCCESS_CODES = ["00", "85"]
|
111
|
+
SUCCESS_MESSAGE = 'The transaction was approved.'
|
112
|
+
|
113
|
+
FAILURE_MESSAGE = 'The transaction was declined.'
|
114
|
+
|
115
|
+
DECLINE_CODES = {
|
116
|
+
"AE" => 'Address verification failed because address did not match.',
|
117
|
+
'ZE' => 'Address verification failed because zip did not match.',
|
118
|
+
'XE' => 'Address verification failed because zip and address did not match.',
|
119
|
+
'YE' => 'Address verification failed because zip and address did not match.',
|
120
|
+
'OE' => 'Address verification failed because address or zip did not match.',
|
121
|
+
'UE' => 'Address verification failed because cardholder address unavailable.',
|
122
|
+
'RE' => 'Address verification failed because address verification system is not working.',
|
123
|
+
'SE' => 'Address verification failed because address verification system is unavailable.',
|
124
|
+
'EE' => 'Address verification failed because transaction is not a mail or phone order.',
|
125
|
+
'GE' => 'Address verification failed because international support is unavailable.',
|
126
|
+
'CE' => 'Declined because CVV2/CVC2 code did not match.',
|
127
|
+
'04' => 'Declined. Pick up card.',
|
128
|
+
'07' => 'Declined. Pick up card (Special Condition).',
|
129
|
+
'41' => 'Declined. Pick up card (Lost).',
|
130
|
+
'43' => 'Declined. Pick up card (Stolen).',
|
131
|
+
'13' => 'Declined because of the amount is invalid.',
|
132
|
+
'14' => 'Declined because the card number is invalid.',
|
133
|
+
'80' => 'Declined because of an invalid date.',
|
134
|
+
'05' => 'Declined. Do not honor.',
|
135
|
+
'51' => 'Declined because of insufficient funds.',
|
136
|
+
'N4' => 'Declined because the amount exceeds issuer withdrawal limit.',
|
137
|
+
'61' => 'Declined because the amount exceeds withdrawal limit.',
|
138
|
+
'62' => 'Declined because of an invalid service code (restricted).',
|
139
|
+
'65' => 'Declined because the card activity limit exceeded.',
|
140
|
+
'93' => 'Declined because there a violation (the transaction could not be completed).',
|
141
|
+
'06' => 'Declined because address verification failed.',
|
142
|
+
'54' => 'Declined because the card has expired.',
|
143
|
+
'15' => 'Declined because there is no such issuer.',
|
144
|
+
'96' => 'Declined because of a system error.',
|
145
|
+
'N7' => 'Declined because of a CVV2/CVC2 mismatch.',
|
146
|
+
'M4' => 'Declined.',
|
147
|
+
"FE" => "There was a format error with your Trinity Gateway Service (API) request.",
|
148
|
+
"LE" => "Could not log you in (problem with dc_logon and/or dc_password).",
|
149
|
+
'NL' => 'Aborted because of a system error, please try again later. ',
|
150
|
+
'AB' => 'Aborted because of an upstream system error, please try again later.'
|
151
|
+
}
|
152
|
+
|
153
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
154
|
+
self.supported_countries = ['US']
|
155
|
+
self.homepage_url = 'http://www.payjunction.com/'
|
156
|
+
self.display_name = 'PayJunction'
|
157
|
+
|
158
|
+
def initialize(options = {})
|
159
|
+
requires!(options, :login, :password)
|
160
|
+
@options = options
|
161
|
+
super
|
162
|
+
end
|
163
|
+
|
164
|
+
# The first half of the preauth(authorize)/postauth(capture) model.
|
165
|
+
# Checks to make sure funds are available for a transaction, and returns a
|
166
|
+
# transaction_id that can be used later to postauthorize (capture) the funds.
|
167
|
+
def authorize(money, payment_source, options = {})
|
168
|
+
parameters = {
|
169
|
+
:transaction_amount => amount(money),
|
170
|
+
}
|
171
|
+
|
172
|
+
add_payment_source(parameters, payment_source)
|
173
|
+
add_address(parameters, options)
|
174
|
+
add_optional_fields(parameters, options)
|
175
|
+
commit('AUTHORIZATION', parameters)
|
176
|
+
end
|
177
|
+
|
178
|
+
# A simple sale, capturing funds immediately.
|
179
|
+
# Execute authorization and capture in a single step.
|
180
|
+
def purchase(money, payment_source, options = {})
|
181
|
+
parameters = {
|
182
|
+
:transaction_amount => amount(money),
|
183
|
+
}
|
184
|
+
|
185
|
+
add_payment_source(parameters, payment_source)
|
186
|
+
add_address(parameters, options)
|
187
|
+
add_optional_fields(parameters, options)
|
188
|
+
commit('AUTHORIZATION_CAPTURE', parameters)
|
189
|
+
end
|
190
|
+
|
191
|
+
# The second half of the preauth(authorize)/postauth(capture) model.
|
192
|
+
# Retrieve funds that have been previously authorized with _authorization_
|
193
|
+
def capture(money, authorization, options = {})
|
194
|
+
parameters = {
|
195
|
+
:transaction_id => authorization,
|
196
|
+
:posture => 'capture'
|
197
|
+
}
|
198
|
+
|
199
|
+
add_optional_fields(parameters, options)
|
200
|
+
commit('update', parameters)
|
201
|
+
end
|
202
|
+
|
203
|
+
# Return money to a card that was previously billed.
|
204
|
+
# _authorization_ should be the transaction id of the transaction we are returning.
|
205
|
+
def refund(money, authorization, options = {})
|
206
|
+
parameters = {
|
207
|
+
:transaction_amount => amount(money),
|
208
|
+
:transaction_id => authorization
|
209
|
+
}
|
210
|
+
|
211
|
+
commit('CREDIT', parameters)
|
212
|
+
end
|
213
|
+
|
214
|
+
def credit(money, authorization, options = {})
|
215
|
+
deprecated CREDIT_DEPRECATION_MESSAGE
|
216
|
+
refund(money, authorization, options)
|
217
|
+
end
|
218
|
+
|
219
|
+
# Cancel a transaction that has been charged but has not yet made it
|
220
|
+
# through the batch process.
|
221
|
+
def void(authorization, options = {})
|
222
|
+
parameters = {
|
223
|
+
:transaction_id => authorization,
|
224
|
+
:posture => 'void'
|
225
|
+
}
|
226
|
+
|
227
|
+
add_optional_fields(parameters, options)
|
228
|
+
commit('update', parameters)
|
229
|
+
end
|
230
|
+
|
231
|
+
# Set up a sale that will be made on a regular basis for the same amount
|
232
|
+
# (ex. $20 a month for 12 months)
|
233
|
+
#
|
234
|
+
# The parameter :periodicity should be specified as either :monthly, :weekly, or :daily
|
235
|
+
# The parameter :payments should be the number of payments to be made
|
236
|
+
#
|
237
|
+
# gateway.recurring('2000', creditcard, :periodicity => :monthly, :payments => 12)
|
238
|
+
#
|
239
|
+
# The optional parameter :starting_at takes a date or time argument or a string in
|
240
|
+
# YYYYMMDD format and can be used to specify when the first charge will be made.
|
241
|
+
# If omitted the first charge will be immediate.
|
242
|
+
def recurring(money, payment_source, options = {})
|
243
|
+
requires!(options, [:periodicity, :monthly, :weekly, :daily], :payments)
|
244
|
+
|
245
|
+
periodic_type = case options[:periodicity]
|
246
|
+
when :monthly
|
247
|
+
'month'
|
248
|
+
when :weekly
|
249
|
+
'week'
|
250
|
+
when :daily
|
251
|
+
'day'
|
252
|
+
end
|
253
|
+
|
254
|
+
if options[:starting_at].nil?
|
255
|
+
start_date = Time.now.strftime('%Y-%m-%d')
|
256
|
+
elsif options[:starting_at].is_a?(String)
|
257
|
+
sa = options[:starting_at]
|
258
|
+
start_date = "#{sa[0..3]}-#{sa[4..5]}-#{sa[6..7]}"
|
259
|
+
else
|
260
|
+
start_date = options[:starting_at].strftime('%Y-%m-%d')
|
261
|
+
end
|
262
|
+
|
263
|
+
parameters = {
|
264
|
+
:transaction_amount => amount(money),
|
265
|
+
:schedule_periodic_type => periodic_type,
|
266
|
+
:schedule_create => 'true',
|
267
|
+
:schedule_limit => options[:payments].to_i > 1 ? options[:payments] : 1,
|
268
|
+
:schedule_periodic_number => 1,
|
269
|
+
:schedule_start => start_date
|
270
|
+
}
|
271
|
+
|
272
|
+
add_payment_source(parameters, payment_source)
|
273
|
+
add_optional_fields(parameters, options)
|
274
|
+
add_address(parameters, options)
|
275
|
+
commit('AUTHORIZATION_CAPTURE', parameters)
|
276
|
+
end
|
277
|
+
|
278
|
+
def test?
|
279
|
+
test_login? || @options[:test] || super
|
280
|
+
end
|
281
|
+
|
282
|
+
private
|
283
|
+
|
284
|
+
def test_login?
|
285
|
+
@options[:login] == TEST_LOGIN && @options[:password] == TEST_PASSWORD
|
286
|
+
end
|
287
|
+
|
288
|
+
# add fields depending on payment source selected (cc or transaction id)
|
289
|
+
def add_payment_source(params, source)
|
290
|
+
if source.is_a?(String)
|
291
|
+
add_billing_id(params, source)
|
292
|
+
else
|
293
|
+
add_creditcard(params, source)
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
# add fields for credit card
|
298
|
+
def add_creditcard(params, creditcard)
|
299
|
+
params[:name] = creditcard.name
|
300
|
+
params[:number] = creditcard.number
|
301
|
+
params[:expiration_month] = creditcard.month
|
302
|
+
params[:expiration_year] = creditcard.year
|
303
|
+
params[:verification_number] = creditcard.verification_value if creditcard.verification_value?
|
304
|
+
end
|
305
|
+
|
306
|
+
# add field for "instant" transaction, using previous transaction id
|
307
|
+
def add_billing_id(params, billingid)
|
308
|
+
params[:transaction_id] = billingid
|
309
|
+
end
|
310
|
+
|
311
|
+
# add address fields if present
|
312
|
+
def add_address(params, options)
|
313
|
+
address = options[:billing_address] || options[:address]
|
314
|
+
|
315
|
+
if address
|
316
|
+
params[:address] = address[:address1] unless address[:address1].blank?
|
317
|
+
params[:city] = address[:city] unless address[:city].blank?
|
318
|
+
params[:state] = address[:state] unless address[:state].blank?
|
319
|
+
params[:zipcode] = address[:zip] unless address[:zip].blank?
|
320
|
+
params[:country] = address[:country] unless address[:country].blank?
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
def add_optional_fields(params, options)
|
325
|
+
params[:notes] = options[:description] unless options[:description].blank?
|
326
|
+
params[:invoice] = options[:order_id].to_s.gsub(/[^-\/\w.,']/, '') unless options[:order_id].blank?
|
327
|
+
end
|
328
|
+
|
329
|
+
def commit(action, parameters)
|
330
|
+
url = test? ? self.test_url : self.live_url
|
331
|
+
|
332
|
+
response = parse( ssl_post(url, post_data(action, parameters)) )
|
333
|
+
|
334
|
+
Response.new(successful?(response), message_from(response), response,
|
335
|
+
:test => test?,
|
336
|
+
:authorization => response[:transaction_id] || parameters[:transaction_id]
|
337
|
+
)
|
338
|
+
end
|
339
|
+
|
340
|
+
def successful?(response)
|
341
|
+
SUCCESS_CODES.include?(response[:response_code]) || response[:query_status] == true
|
342
|
+
end
|
343
|
+
|
344
|
+
def message_from(response)
|
345
|
+
if successful?(response)
|
346
|
+
SUCCESS_MESSAGE
|
347
|
+
else
|
348
|
+
DECLINE_CODES[response[:response_code]] || FAILURE_MESSAGE
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
def post_data(action, params)
|
353
|
+
if test?
|
354
|
+
# test requests must use global test account
|
355
|
+
params[:logon] = TEST_LOGIN
|
356
|
+
params[:password] = TEST_PASSWORD
|
357
|
+
else
|
358
|
+
params[:logon] = @options[:login]
|
359
|
+
params[:password] = @options[:password]
|
360
|
+
end
|
361
|
+
params[:version] = API_VERSION
|
362
|
+
params[:transaction_type] = action
|
363
|
+
|
364
|
+
params.reject{|k,v| v.blank?}.collect{ |k, v| "dc_#{k.to_s}=#{CGI.escape(v.to_s)}" }.join("&")
|
365
|
+
end
|
366
|
+
|
367
|
+
def parse(body)
|
368
|
+
# PayJunction uses the Field Separator ASCII character to separate key/val
|
369
|
+
# pairs in the response. The <FS> character's octal value is 034.
|
370
|
+
#
|
371
|
+
# Sample response:
|
372
|
+
#
|
373
|
+
# transaction_id=44752<FS>response_code=M4<FS>response_message=Declined (INV TEST CARD).
|
374
|
+
|
375
|
+
pairs = body.chomp.split("\034")
|
376
|
+
response = {}
|
377
|
+
pairs.each do |pair|
|
378
|
+
key, val = pair.split('=')
|
379
|
+
response[key[3..-1].to_sym] = val ? normalize(val) : nil
|
380
|
+
end
|
381
|
+
response
|
382
|
+
end
|
383
|
+
|
384
|
+
# Make a ruby type out of the response string
|
385
|
+
def normalize(field)
|
386
|
+
case field
|
387
|
+
when "true" then true
|
388
|
+
when "false" then false
|
389
|
+
when "" then nil
|
390
|
+
when "null" then nil
|
391
|
+
else field
|
392
|
+
end
|
393
|
+
end
|
394
|
+
|
395
|
+
end
|
396
|
+
end
|
397
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class PaySecureGateway < Gateway
|
4
|
+
URL = 'https://clearance.commsecure.com.au/cgi-bin/PSDirect'
|
5
|
+
|
6
|
+
self.money_format = :cents
|
7
|
+
|
8
|
+
# Currently Authorization and Capture is not implemented because
|
9
|
+
# capturing requires the original credit card information
|
10
|
+
TRANSACTIONS = {
|
11
|
+
:purchase => 'PURCHASE',
|
12
|
+
:authorization => 'AUTHORISE',
|
13
|
+
:capture => 'ADVICE',
|
14
|
+
:credit => 'REFUND'
|
15
|
+
}
|
16
|
+
|
17
|
+
SUCCESS = 'Accepted'
|
18
|
+
SUCCESS_MESSAGE = 'The transaction was approved'
|
19
|
+
|
20
|
+
self.supported_countries = ['AU']
|
21
|
+
self.homepage_url = 'http://www.commsecure.com.au/paysecure.shtml'
|
22
|
+
self.display_name = 'PaySecure'
|
23
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :diners_club]
|
24
|
+
|
25
|
+
def initialize(options = {})
|
26
|
+
requires!(options, :login, :password)
|
27
|
+
@options = options
|
28
|
+
super
|
29
|
+
end
|
30
|
+
|
31
|
+
def purchase(money, credit_card, options = {})
|
32
|
+
requires!(options, :order_id)
|
33
|
+
|
34
|
+
post = {}
|
35
|
+
add_amount(post, money)
|
36
|
+
add_invoice(post, options)
|
37
|
+
add_credit_card(post, credit_card)
|
38
|
+
|
39
|
+
commit(:purchase, money, post)
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
# Used for capturing, which is currently not supported.
|
44
|
+
def add_reference(post, identification)
|
45
|
+
auth, trans_id = identification.split(";")
|
46
|
+
post[:authnum] = auth
|
47
|
+
post[:transid] = trans_id
|
48
|
+
end
|
49
|
+
|
50
|
+
def add_amount(post, money)
|
51
|
+
post[:amount] = amount(money)
|
52
|
+
end
|
53
|
+
|
54
|
+
def add_invoice(post, options)
|
55
|
+
post[:merchant_transid] = options[:order_id].to_s.slice(0,21)
|
56
|
+
post[:memnum] = options[:invoice]
|
57
|
+
post[:custnum] = options[:customer]
|
58
|
+
post[:clientdata] = options[:description]
|
59
|
+
end
|
60
|
+
|
61
|
+
def add_credit_card(post, credit_card)
|
62
|
+
post[:cardnum] = credit_card.number
|
63
|
+
post[:cardname] = credit_card.name
|
64
|
+
post[:expiry] = expdate(credit_card)
|
65
|
+
post[:cvv2] = credit_card.verification_value
|
66
|
+
end
|
67
|
+
|
68
|
+
def expdate(credit_card)
|
69
|
+
year = sprintf("%.4i", credit_card.year)
|
70
|
+
month = sprintf("%.2i", credit_card.month)
|
71
|
+
|
72
|
+
"#{month}#{year[-2..-1]}"
|
73
|
+
end
|
74
|
+
|
75
|
+
def commit(action, money, parameters)
|
76
|
+
response = parse( ssl_post(URL, post_data(action, parameters)) )
|
77
|
+
|
78
|
+
Response.new(successful?(response), message_from(response), response,
|
79
|
+
:test => test_response?(response),
|
80
|
+
:authorization => authorization_from(response)
|
81
|
+
)
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
def successful?(response)
|
86
|
+
response[:status] == SUCCESS
|
87
|
+
end
|
88
|
+
|
89
|
+
def authorization_from(response)
|
90
|
+
[ response[:authnum], response[:transid] ].compact.join(";")
|
91
|
+
end
|
92
|
+
|
93
|
+
def test_response?(response)
|
94
|
+
!!(response[:transid] =~ /SimProxy/)
|
95
|
+
end
|
96
|
+
|
97
|
+
def message_from(response)
|
98
|
+
successful?(response) ? SUCCESS_MESSAGE : response[:errorstring]
|
99
|
+
end
|
100
|
+
|
101
|
+
def parse(body)
|
102
|
+
response = {}
|
103
|
+
body.to_s.each_line do |l|
|
104
|
+
key, value = l.split(":", 2)
|
105
|
+
response[key.to_s.downcase.to_sym] = value.strip
|
106
|
+
end
|
107
|
+
response
|
108
|
+
end
|
109
|
+
|
110
|
+
def post_data(action, parameters = {})
|
111
|
+
parameters[:request_type] = TRANSACTIONS[action]
|
112
|
+
parameters[:merchant_id] = @options[:login]
|
113
|
+
parameters[:password] = @options[:password]
|
114
|
+
|
115
|
+
parameters.reject{|k,v| v.blank?}.collect { |key, value| "#{key.to_s.upcase}=#{CGI.escape(value.to_s)}" }.join("&")
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|