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,144 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class SallieMaeGateway < Gateway
|
4
|
+
URL = 'https://trans.salliemae.com/cgi-bin/process.cgi'
|
5
|
+
|
6
|
+
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
7
|
+
self.supported_countries = ['US']
|
8
|
+
|
9
|
+
# The card types supported by the payment gateway
|
10
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
11
|
+
|
12
|
+
# The homepage URL of the gateway
|
13
|
+
self.homepage_url = 'http://www.salliemae.com/'
|
14
|
+
|
15
|
+
# The name of the gateway
|
16
|
+
self.display_name = 'Sallie Mae'
|
17
|
+
|
18
|
+
def initialize(options = {})
|
19
|
+
requires!(options, :login)
|
20
|
+
@options = options
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def test?
|
25
|
+
@options[:login] == "TEST0"
|
26
|
+
end
|
27
|
+
|
28
|
+
def authorize(money, creditcard, options = {})
|
29
|
+
post = PostData.new
|
30
|
+
add_invoice(post, options)
|
31
|
+
add_creditcard(post, creditcard)
|
32
|
+
add_address(post, creditcard, options)
|
33
|
+
add_customer_data(post, options)
|
34
|
+
|
35
|
+
commit(:authonly, money, post)
|
36
|
+
end
|
37
|
+
|
38
|
+
def purchase(money, creditcard, options = {})
|
39
|
+
post = PostData.new
|
40
|
+
add_invoice(post, options)
|
41
|
+
add_creditcard(post, creditcard)
|
42
|
+
add_address(post, creditcard, options)
|
43
|
+
add_customer_data(post, options)
|
44
|
+
|
45
|
+
commit(:sale, money, post)
|
46
|
+
end
|
47
|
+
|
48
|
+
def capture(money, authorization, options = {})
|
49
|
+
post = PostData.new
|
50
|
+
post[:postonly] = authorization
|
51
|
+
commit(:capture, money, post)
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def add_customer_data(post, options)
|
57
|
+
if address = options[:billing_address] || options[:shipping_address] || options[:address]
|
58
|
+
post[:ci_phone] = address[:phone].to_s
|
59
|
+
end
|
60
|
+
|
61
|
+
post[:ci_email] = options[:email].to_s unless options[:email].blank?
|
62
|
+
post[:ci_IP] = options[:ip].to_s unless options[:ip].blank?
|
63
|
+
end
|
64
|
+
|
65
|
+
def add_address(post, creditcard, options)
|
66
|
+
if address = options[:billing_address] || options[:address]
|
67
|
+
post[:ci_billaddr1] = address[:address1].to_s
|
68
|
+
post[:ci_billaddr2] = address[:address2].to_s unless address[:address2].blank?
|
69
|
+
post[:ci_billcity] = address[:city].to_s
|
70
|
+
post[:ci_billstate] = address[:state].to_s
|
71
|
+
post[:ci_billzip] = address[:zip].to_s
|
72
|
+
end
|
73
|
+
|
74
|
+
if shipping_address = options[:shipping_address] || options[:address]
|
75
|
+
post[:ci_shipaddr1] = shipping_address[:address1].to_s
|
76
|
+
post[:ci_shipaddr2] = shipping_address[:address2].to_s unless shipping_address[:address2].blank?
|
77
|
+
post[:ci_shipcity] = shipping_address[:city].to_s
|
78
|
+
post[:ci_shipstate] = shipping_address[:state].to_s
|
79
|
+
post[:ci_shipzip] = shipping_address[:zip].to_s
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def add_invoice(post, options)
|
84
|
+
memo = "OrderID: #{options[:order_id]}\nDescription: #{options[:description]}"
|
85
|
+
post[:ci_memo] = memo
|
86
|
+
end
|
87
|
+
|
88
|
+
def add_creditcard(post, creditcard)
|
89
|
+
post[:ccnum] = creditcard.number.to_s
|
90
|
+
post[:ccname] = creditcard.name.to_s
|
91
|
+
post[:cvv2] = creditcard.verification_value.to_s if creditcard.verification_value?
|
92
|
+
post[:expmon] = creditcard.month.to_s
|
93
|
+
post[:expyear] = creditcard.year.to_s
|
94
|
+
end
|
95
|
+
|
96
|
+
def parse(body)
|
97
|
+
h = {}
|
98
|
+
body.gsub!("<html><body><plaintext>", "")
|
99
|
+
body.
|
100
|
+
split("\r\n").
|
101
|
+
map do |i|
|
102
|
+
a = i.split("=")
|
103
|
+
h[a.first] = a.last unless a.first.nil?
|
104
|
+
end
|
105
|
+
h
|
106
|
+
end
|
107
|
+
|
108
|
+
def commit(action, money, parameters)
|
109
|
+
parameters[:acctid] = @options[:login].to_s
|
110
|
+
parameters[:subid] = @options[:sub_id].to_s unless @options[:sub_id].blank?
|
111
|
+
parameters[:amount] = amount(money)
|
112
|
+
|
113
|
+
case action
|
114
|
+
when :sale
|
115
|
+
parameters[:action] = "ns_quicksale_cc"
|
116
|
+
when :authonly
|
117
|
+
parameters[:action] = "ns_quicksale_cc"
|
118
|
+
parameters[:authonly] = 1
|
119
|
+
when :capture
|
120
|
+
parameters[:action] = "ns_quicksale_cc"
|
121
|
+
end
|
122
|
+
|
123
|
+
response = parse(ssl_post(URL, parameters.to_post_data) || "")
|
124
|
+
Response.new(successful?(response), message_from(response), response,
|
125
|
+
:test => test?,
|
126
|
+
:authorization => response["refcode"]
|
127
|
+
)
|
128
|
+
end
|
129
|
+
|
130
|
+
def successful?(response)
|
131
|
+
response["Status"] == "Accepted"
|
132
|
+
end
|
133
|
+
|
134
|
+
def message_from(response)
|
135
|
+
if successful?(response)
|
136
|
+
"Accepted"
|
137
|
+
else
|
138
|
+
response["Reason"].split(":")[2].capitalize unless response["Reason"].nil?
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class SamuraiGateway < Gateway
|
4
|
+
|
5
|
+
self.homepage_url = 'https://samurai.feefighters.com'
|
6
|
+
self.display_name = 'Samurai'
|
7
|
+
self.supported_countries = ['US']
|
8
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :jcb, :diners_club]
|
9
|
+
self.default_currency = 'USD'
|
10
|
+
self.money_format = :dollars
|
11
|
+
|
12
|
+
def initialize(options = {})
|
13
|
+
begin
|
14
|
+
require 'samurai'
|
15
|
+
rescue LoadError
|
16
|
+
raise "Could not load the samurai gem (>= 0.2.25). Use `gem install samurai` to install it."
|
17
|
+
end
|
18
|
+
|
19
|
+
requires!(options, :login, :password, :processor_token)
|
20
|
+
@options = options
|
21
|
+
Samurai.options = {
|
22
|
+
:merchant_key => options[:login],
|
23
|
+
:merchant_password => options[:password],
|
24
|
+
:processor_token => options[:processor_token]
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
def test?
|
29
|
+
@options[:test] || super
|
30
|
+
end
|
31
|
+
|
32
|
+
def authorize(money, credit_card_or_vault_id, options = {})
|
33
|
+
token = payment_method_token(credit_card_or_vault_id, options)
|
34
|
+
return token if token.is_a?(Response)
|
35
|
+
|
36
|
+
authorize = Samurai::Processor.authorize(token, amount(money), processor_options(options))
|
37
|
+
handle_result(authorize)
|
38
|
+
end
|
39
|
+
|
40
|
+
def purchase(money, credit_card_or_vault_id, options = {})
|
41
|
+
token = payment_method_token(credit_card_or_vault_id, options)
|
42
|
+
return token if token.is_a?(Response)
|
43
|
+
|
44
|
+
purchase = Samurai::Processor.purchase(token, amount(money), processor_options(options))
|
45
|
+
handle_result(purchase)
|
46
|
+
end
|
47
|
+
|
48
|
+
def capture(money, authorization_id, options = {})
|
49
|
+
transaction = Samurai::Transaction.find(authorization_id)
|
50
|
+
handle_result(transaction.capture(amount(money)))
|
51
|
+
end
|
52
|
+
|
53
|
+
def refund(money, transaction_id, options = {})
|
54
|
+
transaction = Samurai::Transaction.find(transaction_id)
|
55
|
+
handle_result(transaction.credit(amount(money)))
|
56
|
+
end
|
57
|
+
|
58
|
+
def void(transaction_id, options = {})
|
59
|
+
transaction = Samurai::Transaction.find(transaction_id)
|
60
|
+
handle_result(transaction.void)
|
61
|
+
end
|
62
|
+
|
63
|
+
def store(creditcard, options = {})
|
64
|
+
address = options[:billing_address] || options[:address] || {}
|
65
|
+
|
66
|
+
result = Samurai::PaymentMethod.create({
|
67
|
+
:card_number => creditcard.number,
|
68
|
+
:expiry_month => creditcard.month.to_s.rjust(2, "0"),
|
69
|
+
:expiry_year => creditcard.year.to_s,
|
70
|
+
:cvv => creditcard.verification_value,
|
71
|
+
:first_name => creditcard.first_name,
|
72
|
+
:last_name => creditcard.last_name,
|
73
|
+
:address_1 => address[:address1],
|
74
|
+
:address_2 => address[:address2],
|
75
|
+
:city => address[:city],
|
76
|
+
:zip => address[:zip],
|
77
|
+
:sandbox => test?
|
78
|
+
})
|
79
|
+
result.retain if options[:retain] && result.is_sensitive_data_valid && result.payment_method_token
|
80
|
+
|
81
|
+
Response.new(result.is_sensitive_data_valid,
|
82
|
+
message_from_result(result),
|
83
|
+
{ :payment_method_token => result.is_sensitive_data_valid && result.payment_method_token })
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
def payment_method_token(credit_card_or_vault_id, options)
|
89
|
+
return credit_card_or_vault_id if credit_card_or_vault_id.is_a?(String)
|
90
|
+
store_result = store(credit_card_or_vault_id, options)
|
91
|
+
store_result.success? ? store_result.params["payment_method_token"] : store_result
|
92
|
+
end
|
93
|
+
|
94
|
+
def handle_result(result)
|
95
|
+
response_params, response_options = {}, {}
|
96
|
+
if result.success?
|
97
|
+
response_options[:test] = test?
|
98
|
+
response_options[:authorization] = result.reference_id
|
99
|
+
response_params[:reference_id] = result.reference_id
|
100
|
+
response_params[:transaction_token] = result.transaction_token
|
101
|
+
response_params[:payment_method_token] = result.payment_method.payment_method_token
|
102
|
+
end
|
103
|
+
|
104
|
+
response_options[:avs_result] = { :code => result.processor_response && result.processor_response.avs_result_code }
|
105
|
+
response_options[:cvv_result] = result.processor_response && result.processor_response.cvv_result_code
|
106
|
+
|
107
|
+
message = message_from_result(result)
|
108
|
+
Response.new(result.success?, message, response_params, response_options)
|
109
|
+
end
|
110
|
+
|
111
|
+
def message_from_result(result)
|
112
|
+
return "OK" if result.success?
|
113
|
+
result.errors.map {|_, messages| messages }.join(" ")
|
114
|
+
end
|
115
|
+
|
116
|
+
def processor_options(options)
|
117
|
+
options.slice(:billing_reference, :customer_reference, :custom, :descriptor)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,330 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class SecureNetGateway < Gateway
|
4
|
+
|
5
|
+
API_VERSION = "4.0"
|
6
|
+
|
7
|
+
TRANSACTIONS = {
|
8
|
+
:auth_only => "0000", #
|
9
|
+
:partial_auth_only => "0001",
|
10
|
+
:auth_capture => "0100", #
|
11
|
+
:partial_auth_capture => "0101",
|
12
|
+
:prior_auth_capture => "0200",
|
13
|
+
:capture_only => "0300", #
|
14
|
+
:void => "0400", #
|
15
|
+
:partial_void => "0401",
|
16
|
+
:credit => "0500", #
|
17
|
+
:credit_authonly => "0501",
|
18
|
+
:credit_priorauthcapture => "0502",
|
19
|
+
:force_credit => "0600",
|
20
|
+
:force_credit_authonly => "0601",
|
21
|
+
:force_credit_priorauthcapture => "0602",
|
22
|
+
:verification => "0700",
|
23
|
+
:auth_increment => "0800",
|
24
|
+
:issue => "0900",
|
25
|
+
:activate => "0901",
|
26
|
+
:redeem => "0902",
|
27
|
+
:redeem_partial => "0903",
|
28
|
+
:deactivate => "0904",
|
29
|
+
:reactivate => "0905",
|
30
|
+
:inquiry_balance => "0906"
|
31
|
+
}
|
32
|
+
|
33
|
+
XML_ATTRIBUTES = { 'xmlns' => "http://gateway.securenet.com/API/Contracts",
|
34
|
+
'xmlns:i' => "http://www.w3.org/2001/XMLSchema-instance"
|
35
|
+
}
|
36
|
+
NIL_ATTRIBUTE = { 'i:nil' => "true" }
|
37
|
+
|
38
|
+
# SUCCESS = "true"
|
39
|
+
# SENSITIVE_FIELDS = [ :verification_str2, :expiry_date, :card_number ]
|
40
|
+
|
41
|
+
self.supported_countries = ['US']
|
42
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
43
|
+
self.homepage_url = 'http://www.securenet.com/'
|
44
|
+
self.display_name = 'SecureNet'
|
45
|
+
# self.wiredump_device = STDOUT
|
46
|
+
|
47
|
+
# TEST_URL = 'https://certify.securenet.com/api/Gateway.svc'
|
48
|
+
TEST_URL = 'https://certify.securenet.com/API/gateway.svc/webHttp/ProcessTransaction'
|
49
|
+
LIVE_URL = 'https://gateway.securenet.com/api/Gateway.svc'
|
50
|
+
|
51
|
+
APPROVED, DECLINED, ERROR = 1, 2, 3
|
52
|
+
|
53
|
+
RESPONSE_CODE, RESPONSE_REASON_CODE, RESPONSE_REASON_TEXT = 0, 2, 3
|
54
|
+
AVS_RESULT_CODE, CARD_CODE_RESPONSE_CODE, TRANSACTION_ID = 5, 6, 8
|
55
|
+
|
56
|
+
CARD_CODE_ERRORS = %w( N S )
|
57
|
+
AVS_ERRORS = %w( A E N R W Z )
|
58
|
+
|
59
|
+
def initialize(options = {})
|
60
|
+
requires!(options, :login, :password)
|
61
|
+
@options = options
|
62
|
+
super
|
63
|
+
end
|
64
|
+
|
65
|
+
def authorize(money, creditcard, options = {})
|
66
|
+
commit(build_sale_or_authorization_request(creditcard, options, :auth_only), money)
|
67
|
+
end
|
68
|
+
|
69
|
+
def purchase(money, creditcard, options = {})
|
70
|
+
commit(build_sale_or_authorization_request(creditcard, options, :auth_capture), money)
|
71
|
+
end
|
72
|
+
|
73
|
+
def capture(money, creditcard, authorization, options = {})
|
74
|
+
commit(build_capture_request(authorization, creditcard, options, :prior_auth_capture), money)
|
75
|
+
end
|
76
|
+
|
77
|
+
def void(money, creditcard, authorization, options = {})
|
78
|
+
commit(build_void_request(authorization, creditcard, options, :void), money)
|
79
|
+
end
|
80
|
+
|
81
|
+
def credit(money, creditcard, authorization, options = {})
|
82
|
+
commit(build_credit_request(authorization, creditcard, options, :credit), money)
|
83
|
+
end
|
84
|
+
|
85
|
+
private
|
86
|
+
def commit(request, money)
|
87
|
+
xml = build_request(request, money)
|
88
|
+
data = ssl_post(TEST_URL, xml, "Content-Type" => "text/xml")
|
89
|
+
response = parse(data)
|
90
|
+
|
91
|
+
test_mode = test?
|
92
|
+
Response.new(success?(response), message_from(response), response,
|
93
|
+
:test => test_mode,
|
94
|
+
:authorization => response[:transactionid],
|
95
|
+
:avs_result => { :code => response[:avs_result_code] },
|
96
|
+
:cvv_result => response[:card_code_response_code]
|
97
|
+
)
|
98
|
+
end
|
99
|
+
|
100
|
+
def build_request(request, money)
|
101
|
+
xml = Builder::XmlMarkup.new
|
102
|
+
|
103
|
+
xml.instruct!
|
104
|
+
xml.tag!("TRANSACTION", XML_ATTRIBUTES) do
|
105
|
+
xml.tag! 'AMOUNT', amount(money)
|
106
|
+
xml << request
|
107
|
+
end
|
108
|
+
|
109
|
+
xml.target!
|
110
|
+
end
|
111
|
+
|
112
|
+
def build_sale_or_authorization_request(creditcard, options, action)
|
113
|
+
xml = Builder::XmlMarkup.new
|
114
|
+
|
115
|
+
add_credit_card(xml, creditcard)
|
116
|
+
xml.tag! 'CODE', TRANSACTIONS[action]
|
117
|
+
add_customer_data(xml, options)
|
118
|
+
add_address(xml, creditcard, options)
|
119
|
+
xml.tag! 'DCI', 0 # No duplicate checking will be done, except for ORDERID
|
120
|
+
xml.tag! 'INSTALLMENT_SEQUENCENUM', 1
|
121
|
+
add_invoice(xml, options)
|
122
|
+
add_merchant_key(xml, options)
|
123
|
+
xml.tag! 'METHOD', 'CC'
|
124
|
+
xml.tag! 'ORDERID', options[:order_id]#'30'.to_i.to_s#'22'# @options[:order_id]
|
125
|
+
xml.tag! 'OVERRIDE_FROM', 0 # Docs say not required, but doesn't work without it
|
126
|
+
xml.tag! 'RETAIL_LANENUM', '0' # Docs say string, but it's an integer!?
|
127
|
+
xml.tag! 'TEST', 'TRUE'
|
128
|
+
xml.tag! 'TOTAL_INSTALLMENTCOUNT', 0
|
129
|
+
xml.tag! 'TRANSACTION_SERVICE', 0
|
130
|
+
|
131
|
+
xml.target!
|
132
|
+
end
|
133
|
+
|
134
|
+
def build_capture_or_credit_request(identification, options)
|
135
|
+
xml = Builder::XmlMarkup.new
|
136
|
+
|
137
|
+
add_identification(xml, identification)
|
138
|
+
add_customer_data(xml, options)
|
139
|
+
|
140
|
+
xml.target!
|
141
|
+
end
|
142
|
+
|
143
|
+
def build_capture_request(authorization, creditcard, options, action)
|
144
|
+
xml = Builder::XmlMarkup.new
|
145
|
+
|
146
|
+
add_credit_card(xml, creditcard)
|
147
|
+
xml.tag! 'CODE', TRANSACTIONS[action]
|
148
|
+
add_customer_data(xml, options)
|
149
|
+
xml.tag! 'DCI', 0 # No duplicate checking will be done, except for ORDERID
|
150
|
+
xml.tag! 'INSTALLMENT_SEQUENCENUM', 1
|
151
|
+
add_merchant_key(xml, options)
|
152
|
+
xml.tag! 'METHOD', 'CC'
|
153
|
+
xml.tag! 'ORDERID', options[:order_id]#'30'.to_i.to_s#'22'# @options[:order_id]
|
154
|
+
xml.tag! 'OVERRIDE_FROM', 0 # Docs say not required, but doesn't work without it
|
155
|
+
xml.tag! 'REF_TRANSID', authorization
|
156
|
+
xml.tag! 'RETAIL_LANENUM', '0' # Docs say string, but it's an integer!?
|
157
|
+
xml.tag! 'TEST', 'TRUE'
|
158
|
+
xml.tag! 'TOTAL_INSTALLMENTCOUNT', 0
|
159
|
+
xml.tag! 'TRANSACTION_SERVICE', 0
|
160
|
+
|
161
|
+
xml.target!
|
162
|
+
end
|
163
|
+
|
164
|
+
def build_credit_request(authorization, creditcard, options, action)
|
165
|
+
# requires!(options, :card_number)
|
166
|
+
xml = Builder::XmlMarkup.new
|
167
|
+
|
168
|
+
add_credit_card(xml, creditcard)
|
169
|
+
xml.tag! 'CODE', TRANSACTIONS[action]
|
170
|
+
add_customer_data(xml, options)
|
171
|
+
xml.tag! 'DCI', 0 # No duplicate checking will be done, except for ORDERID
|
172
|
+
xml.tag! 'INSTALLMENT_SEQUENCENUM', 1
|
173
|
+
add_merchant_key(xml, options)
|
174
|
+
xml.tag! 'METHOD', 'CC'
|
175
|
+
xml.tag! 'ORDERID', options[:order_id]#'30'.to_i.to_s#'22'# @options[:order_id]
|
176
|
+
xml.tag! 'OVERRIDE_FROM', 0 # Docs say not required, but doesn't work without it
|
177
|
+
xml.tag! 'REF_TRANSID', authorization
|
178
|
+
xml.tag! 'RETAIL_LANENUM', '0' # Docs say string, but it's an integer!?
|
179
|
+
xml.tag! 'TEST', 'TRUE'
|
180
|
+
xml.tag! 'TOTAL_INSTALLMENTCOUNT', 0
|
181
|
+
xml.tag! 'TRANSACTION_SERVICE', 0
|
182
|
+
|
183
|
+
xml.target!
|
184
|
+
end
|
185
|
+
|
186
|
+
def build_void_request(authorization, creditcard, options, action)
|
187
|
+
xml = Builder::XmlMarkup.new
|
188
|
+
|
189
|
+
add_credit_card(xml, creditcard)
|
190
|
+
xml.tag! 'CODE', TRANSACTIONS[action]
|
191
|
+
add_customer_data(xml, options)
|
192
|
+
xml.tag! 'DCI', 0 # No duplicate checking will be done, except for ORDERID
|
193
|
+
xml.tag! 'INSTALLMENT_SEQUENCENUM', 1
|
194
|
+
add_merchant_key(xml, options)
|
195
|
+
xml.tag! 'METHOD', 'CC'
|
196
|
+
xml.tag! 'ORDERID', options[:order_id]#'30'.to_i.to_s#'22'# @options[:order_id]
|
197
|
+
xml.tag! 'OVERRIDE_FROM', 0 # Docs say not required, but doesn't work without it
|
198
|
+
xml.tag! 'REF_TRANSID', authorization
|
199
|
+
xml.tag! 'RETAIL_LANENUM', '0' # Docs say string, but it's an integer!?
|
200
|
+
xml.tag! 'TEST', 'TRUE'
|
201
|
+
xml.tag! 'TOTAL_INSTALLMENTCOUNT', 0
|
202
|
+
xml.tag! 'TRANSACTION_SERVICE', 0
|
203
|
+
|
204
|
+
xml.target!
|
205
|
+
end
|
206
|
+
|
207
|
+
#########################################################################
|
208
|
+
# FUNCTIONS RELATED TO BUILDING THE XML
|
209
|
+
#########################################################################
|
210
|
+
def add_credit_card(xml, creditcard)
|
211
|
+
xml.tag!("CARD") do
|
212
|
+
xml.tag! 'CARDCODE', creditcard.verification_value if creditcard.verification_value?
|
213
|
+
xml.tag! 'CARDNUMBER', creditcard.number
|
214
|
+
xml.tag! 'EXPDATE', expdate(creditcard)
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
def expdate(creditcard)
|
219
|
+
year = sprintf("%.4i", creditcard.year)
|
220
|
+
month = sprintf("%.2i", creditcard.month)
|
221
|
+
|
222
|
+
"#{month}#{year[-2..-1]}"
|
223
|
+
end
|
224
|
+
|
225
|
+
def add_customer_data(xml, options)
|
226
|
+
if options.has_key? :customer
|
227
|
+
xml.tag! 'CUSTOMERID', options[:customer]
|
228
|
+
end
|
229
|
+
|
230
|
+
if options.has_key? :ip
|
231
|
+
xml.tag! 'CUSTOMERIP', options[:ip]
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
def add_address(xml, creditcard, options)
|
236
|
+
|
237
|
+
if address = options[:billing_address] || options[:address]
|
238
|
+
xml.tag!("CUSTOMER_BILL") do
|
239
|
+
xml.tag! 'ADDRESS', address[:address1].to_s
|
240
|
+
xml.tag! 'CITY', address[:city].to_s
|
241
|
+
xml.tag! 'COMPANY', address[:company].to_s
|
242
|
+
xml.tag! 'COUNTRY', address[:country].to_s
|
243
|
+
if options.has_key? :email
|
244
|
+
xml.tag! 'EMAIL', options[:email]
|
245
|
+
# xml.tag! 'EMAIL', 'myemail@yahoo.com'
|
246
|
+
xml.tag! 'EMAILRECEIPT', 'FALSE'
|
247
|
+
end
|
248
|
+
xml.tag! 'FIRSTNAME', creditcard.first_name
|
249
|
+
xml.tag! 'LASTNAME', creditcard.last_name
|
250
|
+
xml.tag! 'PHONE', address[:phone].to_s
|
251
|
+
xml.tag! 'STATE', address[:state].blank? ? 'n/a' : address[:state]
|
252
|
+
xml.tag! 'ZIP', address[:zip].to_s
|
253
|
+
end
|
254
|
+
end
|
255
|
+
|
256
|
+
if address = options[:shipping_address]
|
257
|
+
xml.tag!("CUSTOMER_SHIP") do
|
258
|
+
xml.tag! 'ADDRESS', address[:address1].to_s
|
259
|
+
xml.tag! 'CITY', address[:city].to_s
|
260
|
+
xml.tag! 'COMPANY', address[:company].to_s
|
261
|
+
xml.tag! 'COUNTRY', address[:country].to_s
|
262
|
+
xml.tag! 'FIRSTNAME', address[:first_name].to_s
|
263
|
+
xml.tag! 'LASTNAME', address[:last_name].to_s
|
264
|
+
xml.tag! 'STATE', address[:state].blank? ? 'n/a' : address[:state]
|
265
|
+
xml.tag! 'ZIP', address[:zip].to_s
|
266
|
+
end
|
267
|
+
else
|
268
|
+
xml.tag!('CUSTOMER_SHIP', NIL_ATTRIBUTE) do
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
end
|
273
|
+
|
274
|
+
def add_invoice(xml, options)
|
275
|
+
xml.tag! 'INVOICEDESC', options[:description]
|
276
|
+
xml.tag! 'INVOICENUM', 'inv-8'
|
277
|
+
end
|
278
|
+
|
279
|
+
def add_merchant_key(xml, options)
|
280
|
+
xml.tag!("MERCHANT_KEY") do
|
281
|
+
xml.tag! 'GROUPID', 0
|
282
|
+
xml.tag! 'SECUREKEY', @options[:password]
|
283
|
+
xml.tag! 'SECURENETID', @options[:login]
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
287
|
+
#########################################################################
|
288
|
+
# FUNCTIONS RELATED TO THE RESPONSE
|
289
|
+
#########################################################################
|
290
|
+
def success?(response)
|
291
|
+
response[:response_code].to_i == APPROVED
|
292
|
+
end
|
293
|
+
|
294
|
+
def message_from(response)
|
295
|
+
if response[:response_code].to_i == DECLINED
|
296
|
+
return CVVResult.messages[ response[:card_code_response_code] ] if CARD_CODE_ERRORS.include?(response[:card_code_response_code])
|
297
|
+
return AVSResult.messages[ response[:avs_result_code] ] if AVS_ERRORS.include?(response[:avs_result_code])
|
298
|
+
end
|
299
|
+
|
300
|
+
return response[:response_reason_text].nil? ? '' : response[:response_reason_text][0..-1]
|
301
|
+
end
|
302
|
+
|
303
|
+
def parse(xml)
|
304
|
+
response = {}
|
305
|
+
xml = REXML::Document.new(xml)
|
306
|
+
root = REXML::XPath.first(xml, "//GATEWAYRESPONSE")# ||
|
307
|
+
# root = REXML::XPath.first(xml, "//ProcessTransactionResponse")# ||
|
308
|
+
# REXML::XPath.first(xml, "//ErrorResponse")
|
309
|
+
if root
|
310
|
+
root.elements.to_a.each do |node|
|
311
|
+
recurring_parse_element(response, node)
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
response
|
316
|
+
end
|
317
|
+
|
318
|
+
def recurring_parse_element(response, node)
|
319
|
+
if node.has_elements?
|
320
|
+
node.elements.each{|e| recurring_parse_element(response, e) }
|
321
|
+
else
|
322
|
+
response[node.name.underscore.to_sym] = node.text
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
|
327
|
+
end
|
328
|
+
end
|
329
|
+
end
|
330
|
+
|