noctivityinc-activemerchant 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +506 -0
- data/CONTRIBUTORS +134 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +136 -0
- data/gem-public_cert.pem +20 -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 +163 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +654 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +736 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +244 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +98 -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 +593 -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/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.rb +236 -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/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.rb +121 -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 +304 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +272 -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/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.rb +146 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +309 -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 +453 -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 +25 -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/gateways.rb +18 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -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/bogus.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/chronopay.rb +23 -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/gestpay.rb +25 -0
- data/lib/active_merchant/billing/integrations/helper.rb +93 -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/hi_trust.rb +27 -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/nochex.rb +88 -0
- data/lib/active_merchant/billing/integrations/notification.rb +62 -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/paypal.rb +39 -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/quickpay.rb +17 -0
- data/lib/active_merchant/billing/integrations/return.rb +35 -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/two_checkout.rb +23 -0
- data/lib/active_merchant/billing/integrations.rb +29 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/billing.rb +9 -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/active_merchant.rb +46 -0
- data/lib/certs/cacert.pem +7815 -0
- data/lib/support/gateway_support.rb +58 -0
- metadata +204 -0
@@ -0,0 +1,304 @@
|
|
1
|
+
module ActiveMerchant
|
2
|
+
module Billing
|
3
|
+
#
|
4
|
+
# ActiveMerchant PSL Card Gateway
|
5
|
+
#
|
6
|
+
# Notes:
|
7
|
+
# -To be able to use the capture function, the IP address of the machine must be
|
8
|
+
# registered with PSL
|
9
|
+
# -ESALE_KEYED should only be used in situations where the cardholder perceives the
|
10
|
+
# transaction to be Internet-based, such as purchasing from a web site/on-line store.
|
11
|
+
# If the Internet is used purely for the transport of information from the merchant
|
12
|
+
# directly to the gateway then the appropriate cardholder present or not present message
|
13
|
+
# type should be used rather than the ‘E’ equivalent.
|
14
|
+
# -The CV2 / AVS policies are set up with the account settings when signing up for an account
|
15
|
+
class PslCardGateway < Gateway
|
16
|
+
self.money_format = :cents
|
17
|
+
self.default_currency = 'GBP'
|
18
|
+
|
19
|
+
self.supported_countries = ['GB']
|
20
|
+
# Visa Credit, Visa Debit, Mastercard, Maestro, Solo, Electron,
|
21
|
+
# American Express, Diners Club, JCB, International Maestro,
|
22
|
+
# Style, Clydesdale Financial Services, Other
|
23
|
+
|
24
|
+
self.supported_cardtypes = [ :visa, :master, :american_express, :diners_club, :jcb, :switch, :solo, :maestro ]
|
25
|
+
self.homepage_url = 'http://www.paymentsolutionsltd.com/'
|
26
|
+
self.display_name = 'PSL Payment Solutions'
|
27
|
+
|
28
|
+
# Default ISO 3166 country code (GB)
|
29
|
+
cattr_accessor :location
|
30
|
+
self.location = 826
|
31
|
+
|
32
|
+
# PslCard server URL - The url is the same whether testing or live - use
|
33
|
+
# the test account when testing...
|
34
|
+
URL = 'https://pslcard3.paymentsolutionsltd.com/secure/transact.asp?'
|
35
|
+
|
36
|
+
# eCommerce sale transaction, details keyed by merchant or cardholder
|
37
|
+
MESSAGE_TYPE = 'ESALE_KEYED'
|
38
|
+
|
39
|
+
# The type of response that we want to get from PSL, options are HTML, XML or REDIRECT
|
40
|
+
RESPONSE_ACTION = 'HTML'
|
41
|
+
|
42
|
+
# Currency Codes
|
43
|
+
CURRENCY_CODES = {
|
44
|
+
'AUD' => 036,
|
45
|
+
'GBP' => 826,
|
46
|
+
'USD' => 840
|
47
|
+
}
|
48
|
+
|
49
|
+
#The terminal used - only for swipe transactions, so hard coded to 32 for online
|
50
|
+
EMV_TERMINAL_TYPE = 32
|
51
|
+
|
52
|
+
#Different Dispatch types
|
53
|
+
DISPATCH_LATER = 'LATER'
|
54
|
+
DISPATCH_NOW = 'NOW'
|
55
|
+
|
56
|
+
# Return codes
|
57
|
+
APPROVED = '00'
|
58
|
+
|
59
|
+
#Nominal amount to authorize for a 'dispatch later' type
|
60
|
+
#The nominal amount is held straight away, when the goods are ready
|
61
|
+
#to be dispatched, PSL is informed and the full amount is the
|
62
|
+
#taken.
|
63
|
+
NOMINAL_AMOUNT = 101
|
64
|
+
|
65
|
+
AVS_CODE = {
|
66
|
+
"ALL MATCH" => 'Y',
|
67
|
+
"SECURITY CODE MATCH ONLY" => 'N',
|
68
|
+
"ADDRESS MATCH ONLY" => 'Y',
|
69
|
+
"NO DATA MATCHES" => 'N',
|
70
|
+
"DATA NOT CHECKED" => 'R',
|
71
|
+
"SECURITY CHECKS NOT SUPPORTED" => 'X'
|
72
|
+
}
|
73
|
+
|
74
|
+
CVV_CODE = {
|
75
|
+
"ALL MATCH" => 'M',
|
76
|
+
"SECURITY CODE MATCH ONLY" => 'M',
|
77
|
+
"ADDRESS MATCH ONLY" => 'N',
|
78
|
+
"NO DATA MATCHES" => 'N',
|
79
|
+
"DATA NOT CHECKED" => 'P',
|
80
|
+
"SECURITY CHECKS NOT SUPPORTED" => 'X'
|
81
|
+
}
|
82
|
+
|
83
|
+
# Create a new PslCardGateway
|
84
|
+
#
|
85
|
+
# The gateway requires that a valid :login be passed in the options hash
|
86
|
+
#
|
87
|
+
# Paramaters:
|
88
|
+
# -options:
|
89
|
+
# :login - the PslCard account login (required)
|
90
|
+
def initialize(options = {})
|
91
|
+
requires!(options, :login)
|
92
|
+
|
93
|
+
@options = options
|
94
|
+
super
|
95
|
+
end
|
96
|
+
|
97
|
+
# Purchase the item straight away
|
98
|
+
#
|
99
|
+
# Parameters:
|
100
|
+
# -money: Amount to be charged as an Integer value in cents
|
101
|
+
# -authorization: the PSL cross reference from the previous authorization
|
102
|
+
# -options:
|
103
|
+
#
|
104
|
+
# Returns:
|
105
|
+
# -ActiveRecord::Billing::Response object
|
106
|
+
#
|
107
|
+
def purchase(money, credit_card, options = {})
|
108
|
+
post = {}
|
109
|
+
|
110
|
+
add_amount(post, money, DISPATCH_NOW, options)
|
111
|
+
add_credit_card(post, credit_card)
|
112
|
+
add_address(post, options)
|
113
|
+
add_invoice(post, options)
|
114
|
+
add_purchase_details(post)
|
115
|
+
|
116
|
+
commit(post)
|
117
|
+
end
|
118
|
+
|
119
|
+
# Authorize the transaction
|
120
|
+
#
|
121
|
+
# Reserves the funds on the customer's credit card, but does not
|
122
|
+
# charge the card.
|
123
|
+
#
|
124
|
+
# This implementation does not authorize the full amount, rather it checks that the full amount
|
125
|
+
# is available and only 'reserves' the nominal amount (currently a pound and a penny)
|
126
|
+
#
|
127
|
+
# Parameters:
|
128
|
+
# -money: Amount to be charged as an Integer value in cents
|
129
|
+
# -authorization: the PSL cross reference from the previous authorization
|
130
|
+
# -options:
|
131
|
+
#
|
132
|
+
# Returns:
|
133
|
+
# -ActiveRecord::Billing::Response object
|
134
|
+
#
|
135
|
+
def authorize(money, credit_card, options = {})
|
136
|
+
post = {}
|
137
|
+
|
138
|
+
add_amount(post, money, DISPATCH_LATER, options)
|
139
|
+
add_credit_card(post, credit_card)
|
140
|
+
add_address(post, options)
|
141
|
+
add_invoice(post, options)
|
142
|
+
add_purchase_details(post)
|
143
|
+
|
144
|
+
commit(post)
|
145
|
+
end
|
146
|
+
|
147
|
+
# Post an authorization.
|
148
|
+
#
|
149
|
+
# Captures the funds from an authorized transaction.
|
150
|
+
#
|
151
|
+
# Parameters:
|
152
|
+
# -money: Amount to be charged as an Integer value in cents
|
153
|
+
# -authorization: The PSL Cross Reference
|
154
|
+
# -options:
|
155
|
+
#
|
156
|
+
# Returns:
|
157
|
+
# -ActiveRecord::Billing::Response object
|
158
|
+
#
|
159
|
+
def capture(money, authorization, options = {})
|
160
|
+
post = {}
|
161
|
+
|
162
|
+
add_amount(post, money, DISPATCH_NOW, options)
|
163
|
+
add_reference(post, authorization)
|
164
|
+
add_purchase_details(post)
|
165
|
+
|
166
|
+
commit(post)
|
167
|
+
end
|
168
|
+
|
169
|
+
private
|
170
|
+
|
171
|
+
def add_credit_card(post, credit_card)
|
172
|
+
post[:QAName] = credit_card.name
|
173
|
+
post[:CardNumber] = credit_card.number
|
174
|
+
post[:EMVTerminalType] = EMV_TERMINAL_TYPE
|
175
|
+
post[:ExpMonth] = credit_card.month
|
176
|
+
post[:ExpYear] = credit_card.year
|
177
|
+
|
178
|
+
if requires_start_date_or_issue_number?(credit_card)
|
179
|
+
post[:IssueNumber] = credit_card.issue_number unless credit_card.issue_number.blank?
|
180
|
+
post[:StartMonth] = credit_card.start_month unless credit_card.start_month.blank?
|
181
|
+
post[:StartYear] = credit_card.start_year unless credit_card.start_year.blank?
|
182
|
+
end
|
183
|
+
|
184
|
+
# CV2 check
|
185
|
+
post[:AVSCV2Check] = credit_card.verification_value? ? 'YES' : 'NO'
|
186
|
+
post[:CV2] = credit_card.verification_value if credit_card.verification_value?
|
187
|
+
end
|
188
|
+
|
189
|
+
def add_address(post, options)
|
190
|
+
address = options[:billing_address] || options[:address]
|
191
|
+
return if address.nil?
|
192
|
+
|
193
|
+
post[:QAAddress] = [:address1, :address2, :city, :state].collect{|a| address[a]}.reject{|a| a.blank?}.join(' ')
|
194
|
+
post[:QAPostcode] = address[:zip]
|
195
|
+
end
|
196
|
+
|
197
|
+
def add_invoice(post, options)
|
198
|
+
post[:MerchantName] = options[:merchant] || 'Merchant Name' # May use this as the order_id field
|
199
|
+
post[:OrderID] = options[:order_id] unless options[:order_id].blank?
|
200
|
+
end
|
201
|
+
|
202
|
+
def add_reference(post, authorization)
|
203
|
+
post[:CrossReference] = authorization
|
204
|
+
end
|
205
|
+
|
206
|
+
def add_amount(post, money, dispatch_type, options)
|
207
|
+
post[:CurrencyCode] = currency_code(options[:currency] || currency(money))
|
208
|
+
|
209
|
+
if dispatch_type == DISPATCH_LATER
|
210
|
+
post[:amount] = amount(NOMINAL_AMOUNT)
|
211
|
+
post[:DispatchLaterAmount] = amount(money)
|
212
|
+
else
|
213
|
+
post[:amount] = amount(money)
|
214
|
+
end
|
215
|
+
|
216
|
+
post[:Dispatch] = dispatch_type
|
217
|
+
end
|
218
|
+
|
219
|
+
def add_purchase_details(post)
|
220
|
+
post[:EchoAmount] = 'YES'
|
221
|
+
post[:SCBI] = 'YES' # Return information about the transaction
|
222
|
+
post[:MessageType] = MESSAGE_TYPE
|
223
|
+
end
|
224
|
+
|
225
|
+
# Get the currency code for the passed money object
|
226
|
+
#
|
227
|
+
# The money class stores the currency as an ISO 4217:2001 Alphanumeric,
|
228
|
+
# however PSL requires the ISO 4217:2001 Numeric code.
|
229
|
+
#
|
230
|
+
# Parameters:
|
231
|
+
# -money: Integer value in cents
|
232
|
+
#
|
233
|
+
# Returns:
|
234
|
+
# -the ISO 4217:2001 Numberic currency code
|
235
|
+
#
|
236
|
+
def currency_code(currency)
|
237
|
+
CURRENCY_CODES[currency]
|
238
|
+
end
|
239
|
+
|
240
|
+
# Parse the PSL response and create a Response object
|
241
|
+
#
|
242
|
+
# Parameters:
|
243
|
+
# -body: The response string returned from PSL, Formatted:
|
244
|
+
# Key=value&key=value...
|
245
|
+
#
|
246
|
+
# Returns:
|
247
|
+
# -a hash with all of the values returned in the PSL response
|
248
|
+
#
|
249
|
+
def parse(body)
|
250
|
+
|
251
|
+
fields = {}
|
252
|
+
for line in body.split('&')
|
253
|
+
key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
|
254
|
+
fields[key] = CGI.unescape(value)
|
255
|
+
end
|
256
|
+
fields.symbolize_keys
|
257
|
+
end
|
258
|
+
|
259
|
+
# Send the passed data to PSL for processing
|
260
|
+
#
|
261
|
+
# Parameters:
|
262
|
+
# -request: The data that is to be sent to PSL
|
263
|
+
#
|
264
|
+
# Returns:
|
265
|
+
# - ActiveMerchant::Billing::Response object
|
266
|
+
#
|
267
|
+
def commit(request)
|
268
|
+
response = parse( ssl_post(URL, post_data(request)) )
|
269
|
+
|
270
|
+
Response.new(response[:ResponseCode] == APPROVED, response[:Message], response,
|
271
|
+
:test => test?,
|
272
|
+
:authorization => response[:CrossReference],
|
273
|
+
:cvv_result => CVV_CODE[response[:AVSCV2Check]],
|
274
|
+
:avs_result => { :code => AVS_CODE[response[:AVSCV2Check]] }
|
275
|
+
)
|
276
|
+
end
|
277
|
+
|
278
|
+
# Put the passed data into a format that can be submitted to PSL
|
279
|
+
# Key=Value&Key=Value...
|
280
|
+
#
|
281
|
+
# Any ampersands and equal signs are removed from the data being posted
|
282
|
+
# as PSL puts them back into the response string which then cannot be parsed.
|
283
|
+
# This is after escaping before sending the request to PSL - this is a work
|
284
|
+
# around for the time being
|
285
|
+
#
|
286
|
+
# Parameters:
|
287
|
+
# -post: Hash of all the data to be sent
|
288
|
+
#
|
289
|
+
# Returns:
|
290
|
+
# -String: the data to be sent
|
291
|
+
#
|
292
|
+
def post_data(post)
|
293
|
+
post[:CountryCode] = self.location
|
294
|
+
post[:MerchantID] = @options[:login]
|
295
|
+
post[:ValidityID] = @options[:password]
|
296
|
+
post[:ResponseAction] = RESPONSE_ACTION
|
297
|
+
|
298
|
+
post.collect { |key, value|
|
299
|
+
"#{key}=#{CGI.escape(value.to_s.tr('&=', ' '))}"
|
300
|
+
}.join("&")
|
301
|
+
end
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
@@ -0,0 +1,272 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
# ActiveMerchant Implementation for Quantum Gateway XML Requester Service
|
4
|
+
# Based on API Doc from 8/6/2009
|
5
|
+
#
|
6
|
+
# Important Notes
|
7
|
+
# * Support is included for a customer id via the :customer option, invoice number via :invoice option, invoice description via :merchant option and memo via :description option
|
8
|
+
# * You can force email of receipt with :email_receipt => true
|
9
|
+
# * You can force email of merchant receipt with :merchant_receipt => true
|
10
|
+
# * You can exclude CVV with :ignore_cvv => true
|
11
|
+
# * All transactions use dollar values.
|
12
|
+
class QuantumGateway < Gateway
|
13
|
+
LIVE_URL = 'https://secure.quantumgateway.com/cgi/xml_requester.php'
|
14
|
+
|
15
|
+
# visa, master, american_express, discover
|
16
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
17
|
+
self.supported_countries = ['US']
|
18
|
+
self.default_currency = 'USD'
|
19
|
+
self.money_format = :dollars
|
20
|
+
self.homepage_url = 'http://www.quantumgateway.com'
|
21
|
+
self.display_name = 'QuantumGateway'
|
22
|
+
|
23
|
+
# These are the options that can be used when creating a new Quantum Gateway object.
|
24
|
+
#
|
25
|
+
# :login => Your Quantum Gateway Gateway ID
|
26
|
+
#
|
27
|
+
# :password => Your Quantum Gateway Vault Key or Restrict Key
|
28
|
+
#
|
29
|
+
# NOTE: For testing supply your test GatewayLogin and GatewayKey
|
30
|
+
#
|
31
|
+
# :email_receipt => true if you want a receipt sent to the customer (false be default)
|
32
|
+
#
|
33
|
+
# :merchant_receipt => true if you want to override receiving the merchant receipt
|
34
|
+
#
|
35
|
+
# :ignore_avs => true ignore both AVS and CVV verification
|
36
|
+
# :ignore_cvv => true don't want to use CVV so continue processing even if CVV would have failed
|
37
|
+
#
|
38
|
+
def initialize(options = {})
|
39
|
+
requires!(options, :login, :password)
|
40
|
+
@options = options
|
41
|
+
super
|
42
|
+
end
|
43
|
+
|
44
|
+
# Should run against the test servers or not?
|
45
|
+
def test?
|
46
|
+
@options[:test] || Base.gateway_mode == :test
|
47
|
+
end
|
48
|
+
|
49
|
+
# Request an authorization for an amount from CyberSource
|
50
|
+
#
|
51
|
+
def authorize(money, creditcard, options = {})
|
52
|
+
setup_address_hash(options)
|
53
|
+
commit(build_auth_request(money, creditcard, options), options )
|
54
|
+
end
|
55
|
+
|
56
|
+
# Capture an authorization that has previously been requested
|
57
|
+
def capture(money, authorization, options = {})
|
58
|
+
setup_address_hash(options)
|
59
|
+
commit(build_capture_request(money, authorization, options), options)
|
60
|
+
end
|
61
|
+
|
62
|
+
# Purchase is an auth followed by a capture
|
63
|
+
# You must supply an order_id in the options hash
|
64
|
+
def purchase(money, creditcard, options = {})
|
65
|
+
setup_address_hash(options)
|
66
|
+
commit(build_purchase_request(money, creditcard, options), options)
|
67
|
+
end
|
68
|
+
|
69
|
+
def void(identification, options = {})
|
70
|
+
raise ArgumentError.new("Missing transaction id") if identification.blank?
|
71
|
+
commit(build_void_request(identification, options), options)
|
72
|
+
end
|
73
|
+
|
74
|
+
def credit(money, identification, options = {})
|
75
|
+
raise ArgumentError.new("Missing transaction id") unless hash.has_key?(param) if identification.blank?
|
76
|
+
commit(build_credit_request(money, identification, options), options)
|
77
|
+
end
|
78
|
+
|
79
|
+
private
|
80
|
+
|
81
|
+
def setup_address_hash(options)
|
82
|
+
options[:billing_address] = options[:billing_address] || options[:address] || {}
|
83
|
+
end
|
84
|
+
|
85
|
+
def build_auth_request(money, creditcard, options)
|
86
|
+
xml = Builder::XmlMarkup.new
|
87
|
+
add_common_credit_card_info(xml,'AUTH_ONLY')
|
88
|
+
add_purchase_data(xml, money)
|
89
|
+
add_creditcard(xml, creditcard)
|
90
|
+
add_address(xml, creditcard, options[:billing_address], options)
|
91
|
+
add_invoice_details(xml, options)
|
92
|
+
add_customer_details(xml, options)
|
93
|
+
add_memo(xml, options)
|
94
|
+
add_business_rules_data(xml)
|
95
|
+
xml.target!
|
96
|
+
end
|
97
|
+
|
98
|
+
def build_capture_request(money, authorization, options)
|
99
|
+
xml = Builder::XmlMarkup.new
|
100
|
+
add_common_credit_card_info(xml,'PREVIOUS_SALE')
|
101
|
+
add_transaction_id(xml, authorization)
|
102
|
+
xml.target!
|
103
|
+
end
|
104
|
+
|
105
|
+
def build_purchase_request(money, creditcard, options)
|
106
|
+
xml = Builder::XmlMarkup.new
|
107
|
+
add_common_credit_card_info(xml, @options[:ignore_avs] || @options[:ignore_cvv] ? 'SALES' : 'AUTH_CAPTURE')
|
108
|
+
add_address(xml, creditcard, options[:billing_address], options)
|
109
|
+
add_purchase_data(xml, money)
|
110
|
+
add_creditcard(xml, creditcard)
|
111
|
+
add_invoice_details(xml, options)
|
112
|
+
add_customer_details(xml, options)
|
113
|
+
add_memo(xml, options)
|
114
|
+
add_business_rules_data(xml)
|
115
|
+
xml.target!
|
116
|
+
end
|
117
|
+
|
118
|
+
def build_void_request(identification, options)
|
119
|
+
xml = Builder::XmlMarkup.new
|
120
|
+
add_common_credit_card_info(xml,'VOID')
|
121
|
+
add_transaction_id(xml, identification)
|
122
|
+
xml.target!
|
123
|
+
end
|
124
|
+
|
125
|
+
def build_credit_request(money, identification, options)
|
126
|
+
xml = Builder::XmlMarkup.new
|
127
|
+
add_common_credit_card_info(xml,'RETURN')
|
128
|
+
add_purchase_data(xml, money)
|
129
|
+
add_transaction_id(xml, identification)
|
130
|
+
add_last_four_of_creditcard(xml, options)
|
131
|
+
xml.target!
|
132
|
+
end
|
133
|
+
|
134
|
+
def add_common_credit_card_info(xml, process_type)
|
135
|
+
xml.tag! 'RequestType', 'ProcessSingleTransaction'
|
136
|
+
xml.tag! 'TransactionType', 'CREDIT'
|
137
|
+
xml.tag! 'PaymentType', 'CC'
|
138
|
+
xml.tag! 'ProcessType', process_type
|
139
|
+
end
|
140
|
+
|
141
|
+
def add_business_rules_data(xml)
|
142
|
+
xml.tag!('CustomerEmail', @options[:email_receipt] ? 'Y' : 'N')
|
143
|
+
xml.tag!('MerchantEmail', @options[:merchant_receipt] ? 'Y' : 'N')
|
144
|
+
end
|
145
|
+
|
146
|
+
def add_invoice_details(xml, options)
|
147
|
+
xml.tag! 'InvoiceNumber', options[:invoice]
|
148
|
+
xml.tag! 'InvoiceDescription', options[:merchant]
|
149
|
+
end
|
150
|
+
|
151
|
+
def add_customer_details(xml, options)
|
152
|
+
xml.tag! 'CustomerID', options[:customer]
|
153
|
+
end
|
154
|
+
|
155
|
+
def add_transaction_id(xml, transaction_id)
|
156
|
+
xml.tag! 'TransactionID', transaction_id
|
157
|
+
end
|
158
|
+
|
159
|
+
def add_memo(xml, options)
|
160
|
+
xml.tag! 'Memo', options[:description]
|
161
|
+
end
|
162
|
+
|
163
|
+
def add_purchase_data(xml, money = 0)
|
164
|
+
xml.tag! 'Amount', amount(money)
|
165
|
+
xml.tag! 'TransactionDate', Time.now()
|
166
|
+
end
|
167
|
+
|
168
|
+
def add_address(xml, creditcard, address, options, shipTo = false)
|
169
|
+
xml.tag! 'FirstName', creditcard.first_name
|
170
|
+
xml.tag! 'LastName', creditcard.last_name
|
171
|
+
xml.tag! 'Address', address[:address1] # => there is no support for address2 in quantum
|
172
|
+
xml.tag! 'City', address[:city]
|
173
|
+
xml.tag! 'State', address[:state]
|
174
|
+
xml.tag! 'ZipCode', address[:zip]
|
175
|
+
xml.tag! 'Country', address[:country]
|
176
|
+
xml.tag! 'EmailAddress', options[:email]
|
177
|
+
xml.tag! 'IPAddress', options[:ip]
|
178
|
+
end
|
179
|
+
|
180
|
+
def add_creditcard(xml, creditcard)
|
181
|
+
xml.tag! 'PaymentType', 'CC'
|
182
|
+
xml.tag! 'CreditCardNumber', creditcard.number
|
183
|
+
xml.tag! 'ExpireMonth', format(creditcard.month, :two_digits)
|
184
|
+
xml.tag! 'ExpireYear', format(creditcard.year, :four_digits)
|
185
|
+
xml.tag!('CVV2', creditcard.verification_value) unless (@options[:ignore_cvv] || creditcard.verification_value.blank? )
|
186
|
+
end
|
187
|
+
|
188
|
+
def add_last_four_of_creditcard(xml, creditcard)
|
189
|
+
xml.tag! 'CreditCardNumber', creditcard.number
|
190
|
+
end
|
191
|
+
|
192
|
+
# Where we actually build the full SOAP request using builder
|
193
|
+
def build_request(body, options)
|
194
|
+
xml = Builder::XmlMarkup.new
|
195
|
+
xml.instruct!
|
196
|
+
xml.tag! 'QGWRequest' do
|
197
|
+
xml.tag! 'Authentication' do
|
198
|
+
xml.tag! 'GatewayLogin', @options[:login]
|
199
|
+
xml.tag! 'GatewayKey', @options[:password]
|
200
|
+
end
|
201
|
+
xml.tag! 'Request' do
|
202
|
+
xml << body
|
203
|
+
end
|
204
|
+
end
|
205
|
+
xml.target!
|
206
|
+
end
|
207
|
+
|
208
|
+
# Contact Quantum, make the SOAP request, and parse the reply into a Response object
|
209
|
+
def commit(request, options)
|
210
|
+
headers = { 'Content-Type' => 'text/xml' }
|
211
|
+
response = parse(ssl_post(LIVE_URL, build_request(request, options), headers))
|
212
|
+
|
213
|
+
success = response[:request_status] == "Success"
|
214
|
+
message = response[:request_message]
|
215
|
+
|
216
|
+
if success # => checking for connectivity success first
|
217
|
+
success = (response[:Status] == 'APPROVED' || response[:Status] == 'VOIDED')
|
218
|
+
message = response[:StatusDescription]
|
219
|
+
authorization = success ? response[:TransactionID] : nil
|
220
|
+
end
|
221
|
+
|
222
|
+
Response.new(success, message, response,
|
223
|
+
:test => test?,
|
224
|
+
:authorization => authorization,
|
225
|
+
:avs_result => { :code => response[:AVSResponseCode] },
|
226
|
+
:cvv_result => response[:CVV2ResponseCode]
|
227
|
+
)
|
228
|
+
end
|
229
|
+
|
230
|
+
# Parse the SOAP response
|
231
|
+
# Technique inspired by the Paypal Gateway
|
232
|
+
def parse(xml)
|
233
|
+
reply = {}
|
234
|
+
|
235
|
+
begin
|
236
|
+
xml = REXML::Document.new(xml)
|
237
|
+
|
238
|
+
root = REXML::XPath.first(xml, "//QGWRequest/ResponseSummary")
|
239
|
+
parse_element(reply, root)
|
240
|
+
reply[:request_status] = reply[:Status]
|
241
|
+
reply[:request_message] = "#{reply[:Status]}: #{reply[:StatusDescription]}"
|
242
|
+
|
243
|
+
if root = REXML::XPath.first(xml, "//QGWRequest/Result")
|
244
|
+
root.elements.to_a.each do |node|
|
245
|
+
parse_element(reply, node)
|
246
|
+
end
|
247
|
+
end
|
248
|
+
rescue Exception => e
|
249
|
+
reply[:request_status] = 'Failure'
|
250
|
+
reply[:request_message] = "Failure: There was a problem parsing the response XML"
|
251
|
+
end
|
252
|
+
|
253
|
+
return reply
|
254
|
+
end
|
255
|
+
|
256
|
+
def parse_element(reply, node)
|
257
|
+
if node.has_elements?
|
258
|
+
node.elements.each{|e| parse_element(reply, e) }
|
259
|
+
else
|
260
|
+
if node.parent.name =~ /item/
|
261
|
+
parent = node.parent.name + (node.parent.attributes["id"] ? "_" + node.parent.attributes["id"] : '')
|
262
|
+
reply[(parent + '_' + node.name).to_sym] = node.text
|
263
|
+
else
|
264
|
+
reply[node.name.to_sym] = node.text
|
265
|
+
end
|
266
|
+
end
|
267
|
+
return reply
|
268
|
+
end
|
269
|
+
|
270
|
+
end
|
271
|
+
end
|
272
|
+
end
|