johnreitano-activemerchant 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. data/CHANGELOG +508 -0
  2. data/CONTRIBUTORS +134 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +136 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant/billing/avs_result.rb +98 -0
  7. data/lib/active_merchant/billing/base.rb +57 -0
  8. data/lib/active_merchant/billing/check.rb +68 -0
  9. data/lib/active_merchant/billing/credit_card.rb +159 -0
  10. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  11. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  12. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  13. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  14. data/lib/active_merchant/billing/gateway.rb +163 -0
  15. data/lib/active_merchant/billing/gateways/authorize_net.rb +654 -0
  16. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +736 -0
  17. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +244 -0
  18. data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
  19. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  20. data/lib/active_merchant/billing/gateways/bogus.rb +98 -0
  21. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  22. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  23. data/lib/active_merchant/billing/gateways/cyber_source.rb +594 -0
  24. data/lib/active_merchant/billing/gateways/data_cash.rb +593 -0
  25. data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  26. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  27. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  28. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  29. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  30. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  31. data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
  32. data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
  33. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  34. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  35. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  36. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  37. data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
  38. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  39. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  40. data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
  41. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  42. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  43. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  44. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  45. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  46. data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  47. data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  48. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  49. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  50. data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
  51. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
  52. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  53. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  54. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  55. data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
  56. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  57. data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  58. data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  59. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  60. data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
  61. data/lib/active_merchant/billing/gateways/realex.rb +200 -0
  62. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  63. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  64. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  65. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  66. data/lib/active_merchant/billing/gateways/sage_pay.rb +309 -0
  67. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  68. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  69. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
  70. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  71. data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
  72. data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
  73. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  74. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  75. data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
  76. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  77. data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  78. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  79. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  80. data/lib/active_merchant/billing/gateways.rb +18 -0
  81. data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
  82. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  83. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  84. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  85. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  86. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  87. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  88. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  89. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  90. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  91. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  92. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  93. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  94. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  95. data/lib/active_merchant/billing/integrations/helper.rb +93 -0
  96. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  97. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  98. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  99. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  100. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  101. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  102. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  103. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  104. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  105. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  106. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  107. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  108. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  109. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  110. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  111. data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
  112. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  113. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  114. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  115. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  116. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  117. data/lib/active_merchant/billing/integrations.rb +29 -0
  118. data/lib/active_merchant/billing/response.rb +32 -0
  119. data/lib/active_merchant/billing.rb +9 -0
  120. data/lib/active_merchant/lib/connection.rb +170 -0
  121. data/lib/active_merchant/lib/country.rb +319 -0
  122. data/lib/active_merchant/lib/error.rb +4 -0
  123. data/lib/active_merchant/lib/post_data.rb +22 -0
  124. data/lib/active_merchant/lib/posts_data.rb +47 -0
  125. data/lib/active_merchant/lib/requires_parameters.rb +16 -0
  126. data/lib/active_merchant/lib/utils.rb +18 -0
  127. data/lib/active_merchant/lib/validateable.rb +76 -0
  128. data/lib/active_merchant.rb +46 -0
  129. data/lib/certs/cacert.pem +7815 -0
  130. data/lib/support/gateway_support.rb +58 -0
  131. metadata +218 -0
@@ -0,0 +1,309 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class SagePayGateway < Gateway
4
+ cattr_accessor :simulate
5
+ self.simulate = false
6
+
7
+ TEST_URL = 'https://test.sagepay.com/gateway/service'
8
+ LIVE_URL = 'https://live.sagepay.com/gateway/service'
9
+ SIMULATOR_URL = 'https://test.sagepay.com/Simulator'
10
+
11
+ APPROVED = 'OK'
12
+
13
+ TRANSACTIONS = {
14
+ :purchase => 'PAYMENT',
15
+ :credit => 'REFUND',
16
+ :authorization => 'DEFERRED',
17
+ :capture => 'RELEASE',
18
+ :void => 'VOID',
19
+ :abort => 'ABORT'
20
+ }
21
+
22
+ CREDIT_CARDS = {
23
+ :visa => "VISA",
24
+ :master => "MC",
25
+ :delta => "DELTA",
26
+ :solo => "SOLO",
27
+ :switch => "MAESTRO",
28
+ :maestro => "MAESTRO",
29
+ :american_express => "AMEX",
30
+ :electron => "UKE",
31
+ :diners_club => "DC",
32
+ :jcb => "JCB"
33
+ }
34
+
35
+ ELECTRON = /^(424519|42496[23]|450875|48440[6-8]|4844[1-5][1-5]|4917[3-5][0-9]|491880)\d{10}(\d{3})?$/
36
+
37
+ AVS_CVV_CODE = {
38
+ "NOTPROVIDED" => nil,
39
+ "NOTCHECKED" => 'X',
40
+ "MATCHED" => 'Y',
41
+ "NOTMATCHED" => 'N'
42
+ }
43
+
44
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover, :jcb, :switch, :solo, :maestro, :diners_club]
45
+ self.supported_countries = ['GB']
46
+ self.default_currency = 'GBP'
47
+
48
+ self.homepage_url = 'http://www.sagepay.com'
49
+ self.display_name = 'SagePay'
50
+
51
+ def initialize(options = {})
52
+ requires!(options, :login)
53
+ @options = options
54
+ super
55
+ end
56
+
57
+ def test?
58
+ @options[:test] || super
59
+ end
60
+
61
+ def purchase(money, credit_card, options = {})
62
+ requires!(options, :order_id)
63
+
64
+ post = {}
65
+
66
+ add_amount(post, money, options)
67
+ add_invoice(post, options)
68
+ add_credit_card(post, credit_card)
69
+ add_address(post, options)
70
+ add_customer_data(post, options)
71
+
72
+ commit(:purchase, post)
73
+ end
74
+
75
+ def authorize(money, credit_card, options = {})
76
+ requires!(options, :order_id)
77
+
78
+ post = {}
79
+
80
+ add_amount(post, money, options)
81
+ add_invoice(post, options)
82
+ add_credit_card(post, credit_card)
83
+ add_address(post, options)
84
+ add_customer_data(post, options)
85
+
86
+ commit(:authorization, post)
87
+ end
88
+
89
+ # You can only capture a transaction once, even if you didn't capture the full amount the first time.
90
+ def capture(money, identification, options = {})
91
+ post = {}
92
+
93
+ add_reference(post, identification)
94
+ add_release_amount(post, money, options)
95
+
96
+ commit(:capture, post)
97
+ end
98
+
99
+ def void(identification, options = {})
100
+ post = {}
101
+
102
+ add_reference(post, identification)
103
+ action = abort_or_void_from(identification)
104
+
105
+ commit(action, post)
106
+ end
107
+
108
+ # Crediting requires a new order_id to passed in, as well as a description
109
+ def credit(money, identification, options = {})
110
+ requires!(options, :order_id, :description)
111
+
112
+ post = {}
113
+
114
+ add_credit_reference(post, identification)
115
+ add_amount(post, money, options)
116
+ add_invoice(post, options)
117
+
118
+ commit(:credit, post)
119
+ end
120
+
121
+ private
122
+ def add_reference(post, identification)
123
+ order_id, transaction_id, authorization, security_key = identification.split(';')
124
+
125
+ add_pair(post, :VendorTxCode, order_id)
126
+ add_pair(post, :VPSTxId, transaction_id)
127
+ add_pair(post, :TxAuthNo, authorization)
128
+ add_pair(post, :SecurityKey, security_key)
129
+ end
130
+
131
+ def add_credit_reference(post, identification)
132
+ order_id, transaction_id, authorization, security_key = identification.split(';')
133
+
134
+ add_pair(post, :RelatedVendorTxCode, order_id)
135
+ add_pair(post, :RelatedVPSTxId, transaction_id)
136
+ add_pair(post, :RelatedTxAuthNo, authorization)
137
+ add_pair(post, :RelatedSecurityKey, security_key)
138
+ end
139
+
140
+ def add_amount(post, money, options)
141
+ add_pair(post, :Amount, amount(money), :required => true)
142
+ add_pair(post, :Currency, options[:currency] || currency(money), :required => true)
143
+ end
144
+
145
+ # doesn't actually use the currency -- dodgy!
146
+ def add_release_amount(post, money, options)
147
+ add_pair(post, :ReleaseAmount, amount(money), :required => true)
148
+ end
149
+
150
+ def add_customer_data(post, options)
151
+ add_pair(post, :CustomerEMail, options[:email][0,255]) unless options[:email].blank?
152
+ add_pair(post, :BillingPhone, options[:phone].gsub(/[^0-9+]/, '')[0,20]) unless options[:phone].blank?
153
+ add_pair(post, :ClientIPAddress, options[:ip])
154
+ end
155
+
156
+ def add_address(post, options)
157
+ if billing_address = options[:billing_address] || options[:address]
158
+ first_name, last_name = parse_first_and_last_name(billing_address[:name])
159
+ add_pair(post, :BillingSurname, last_name)
160
+ add_pair(post, :BillingFirstnames, first_name)
161
+ add_pair(post, :BillingAddress1, billing_address[:address1])
162
+ add_pair(post, :BillingAddress2, billing_address[:address2])
163
+ add_pair(post, :BillingCity, billing_address[:city])
164
+ add_pair(post, :BillingState, billing_address[:state]) if billing_address[:country] == 'US'
165
+ add_pair(post, :BillingCountry, billing_address[:country])
166
+ add_pair(post, :BillingPostCode, billing_address[:zip])
167
+ end
168
+
169
+ if shipping_address = options[:shipping_address] || billing_address
170
+ first_name, last_name = parse_first_and_last_name(shipping_address[:name])
171
+ add_pair(post, :DeliverySurname, last_name)
172
+ add_pair(post, :DeliveryFirstnames, first_name)
173
+ add_pair(post, :DeliveryAddress1, shipping_address[:address1])
174
+ add_pair(post, :DeliveryAddress2, shipping_address[:address2])
175
+ add_pair(post, :DeliveryCity, shipping_address[:city])
176
+ add_pair(post, :DeliveryState, shipping_address[:state]) if shipping_address[:country] == 'US'
177
+ add_pair(post, :DeliveryCountry, shipping_address[:country])
178
+ add_pair(post, :DeliveryPostCode, shipping_address[:zip])
179
+ end
180
+ end
181
+
182
+ def add_invoice(post, options)
183
+ add_pair(post, :VendorTxCode, sanitize_order_id(options[:order_id]), :required => true)
184
+ add_pair(post, :Description, options[:description] || options[:order_id])
185
+ end
186
+
187
+ def add_credit_card(post, credit_card)
188
+ add_pair(post, :CardHolder, credit_card.name, :required => true)
189
+ add_pair(post, :CardNumber, credit_card.number, :required => true)
190
+
191
+ add_pair(post, :ExpiryDate, format_date(credit_card.month, credit_card.year), :required => true)
192
+
193
+ if requires_start_date_or_issue_number?(credit_card)
194
+ add_pair(post, :StartDate, format_date(credit_card.start_month, credit_card.start_year))
195
+ add_pair(post, :IssueNumber, credit_card.issue_number)
196
+ end
197
+ add_pair(post, :CardType, map_card_type(credit_card))
198
+
199
+ add_pair(post, :CV2, credit_card.verification_value)
200
+ end
201
+
202
+ def sanitize_order_id(order_id)
203
+ order_id.to_s.gsub(/[^-a-zA-Z0-9._]/, '')
204
+ end
205
+
206
+ def map_card_type(credit_card)
207
+ raise ArgumentError, "The credit card type must be provided" if card_brand(credit_card).blank?
208
+
209
+ card_type = card_brand(credit_card).to_sym
210
+
211
+ # Check if it is an electron card
212
+ if card_type == :visa && credit_card.number =~ ELECTRON
213
+ CREDIT_CARDS[:electron]
214
+ else
215
+ CREDIT_CARDS[card_type]
216
+ end
217
+ end
218
+
219
+ # MMYY format
220
+ def format_date(month, year)
221
+ return nil if year.blank? || month.blank?
222
+
223
+ year = sprintf("%.4i", year)
224
+ month = sprintf("%.2i", month)
225
+
226
+ "#{month}#{year[-2..-1]}"
227
+ end
228
+
229
+ def commit(action, parameters)
230
+ response = parse( ssl_post(url_for(action), post_data(action, parameters)) )
231
+
232
+ Response.new(response["Status"] == APPROVED, message_from(response), response,
233
+ :test => test?,
234
+ :authorization => authorization_from(response, parameters, action),
235
+ :avs_result => {
236
+ :street_match => AVS_CVV_CODE[ response["AddressResult"] ],
237
+ :postal_match => AVS_CVV_CODE[ response["PostCodeResult"] ],
238
+ },
239
+ :cvv_result => AVS_CVV_CODE[ response["CV2Result"] ]
240
+ )
241
+ end
242
+
243
+ def authorization_from(response, params, action)
244
+ [ params[:VendorTxCode],
245
+ response["VPSTxId"],
246
+ response["TxAuthNo"],
247
+ response["SecurityKey"],
248
+ action ].join(";")
249
+ end
250
+
251
+ def abort_or_void_from(identification)
252
+ original_transaction = identification.split(';').last
253
+ original_transaction == 'authorization' ? :abort : :void
254
+ end
255
+
256
+ def url_for(action)
257
+ simulate ? build_simulator_url(action) : build_url(action)
258
+ end
259
+
260
+ def build_url(action)
261
+ endpoint = [ :purchase, :authorization ].include?(action) ? "vspdirect-register" : TRANSACTIONS[action].downcase
262
+ "#{test? ? TEST_URL : LIVE_URL}/#{endpoint}.vsp"
263
+ end
264
+
265
+ def build_simulator_url(action)
266
+ endpoint = [ :purchase, :authorization ].include?(action) ? "VSPDirectGateway.asp" : "VSPServerGateway.asp?Service=Vendor#{TRANSACTIONS[action].capitalize}Tx"
267
+ "#{SIMULATOR_URL}/#{endpoint}"
268
+ end
269
+
270
+ def message_from(response)
271
+ response['Status'] == APPROVED ? 'Success' : (response['StatusDetail'] || 'Unspecified error') # simonr 20080207 can't actually get non-nil blanks, so this is shorter
272
+ end
273
+
274
+ def post_data(action, parameters = {})
275
+ parameters.update(
276
+ :Vendor => @options[:login],
277
+ :TxType => TRANSACTIONS[action],
278
+ :VPSProtocol => "2.23"
279
+ )
280
+
281
+ parameters.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join("&")
282
+ end
283
+
284
+ # SagePay returns data in the following format
285
+ # Key1=value1
286
+ # Key2=value2
287
+ def parse(body)
288
+ result = {}
289
+ body.to_s.each_line do |pair|
290
+ result[$1] = $2 if pair.strip =~ /\A([^=]+)=(.+)\Z/im
291
+ end
292
+ result
293
+ end
294
+
295
+ def add_pair(post, key, value, options = {})
296
+ post[key] = value if !value.blank? || options[:required]
297
+ end
298
+
299
+ def parse_first_and_last_name(value)
300
+ name = value.to_s.split(' ')
301
+
302
+ last_name = name.pop || ''
303
+ first_name = name.join(' ')
304
+ [ first_name[0,20], last_name[0,20] ]
305
+ end
306
+ end
307
+ end
308
+ end
309
+
@@ -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,31 @@
1
+ require File.dirname(__FILE__) + '/authorize_net'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SecurePayGateway < AuthorizeNetGateway
6
+ self.live_url = self.test_url = 'https://www.securepay.com/AuthSpayAdapter/process.aspx'
7
+
8
+ self.homepage_url = 'http://www.securepay.com/'
9
+ self.display_name = 'SecurePay'
10
+
11
+ # Limit support to purchase() for the time being
12
+ # JRuby chokes here
13
+ # undef_method :authorize, :capture, :void, :credit
14
+
15
+ undef_method :authorize
16
+ undef_method :capture
17
+ undef_method :void
18
+ undef_method :credit
19
+
20
+ def test?
21
+ Base.gateway_mode == :test
22
+ end
23
+
24
+ private
25
+ def split(response)
26
+ response.split(',')
27
+ end
28
+ end
29
+ end
30
+ end
31
+
@@ -0,0 +1,157 @@
1
+ require 'rexml/document'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SecurePayAuGateway < Gateway
6
+ API_VERSION = 'xml-4.2'
7
+
8
+ TEST_URL = 'https://www.securepay.com.au/test/payment'
9
+ LIVE_URL = 'https://www.securepay.com.au/xmlapi/payment'
10
+
11
+ self.supported_countries = ['AU']
12
+ self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :jcb]
13
+
14
+ # The homepage URL of the gateway
15
+ self.homepage_url = 'http://securepay.com.au'
16
+
17
+ # The name of the gateway
18
+ self.display_name = 'SecurePay'
19
+
20
+ class_inheritable_accessor :request_timeout
21
+ self.request_timeout = 60
22
+
23
+ self.money_format = :cents
24
+ self.default_currency = 'AUD'
25
+
26
+ # 0 Standard Payment
27
+ # 4 Refund
28
+ # 6 Client Reversal (Void)
29
+ # 10 Preauthorise
30
+ # 11 Preauth Complete (Advice)
31
+ TRANSACTIONS = {
32
+ :purchase => 0,
33
+ :authorization => 10,
34
+ :capture => 11,
35
+ :void => 6,
36
+ :credit => 4
37
+ }
38
+
39
+ SUCCESS_CODES = [ '00', '08', '11', '16', '77' ]
40
+
41
+ def initialize(options = {})
42
+ requires!(options, :login, :password)
43
+ @options = options
44
+ super
45
+ end
46
+
47
+ def test?
48
+ @options[:test] || super
49
+ end
50
+
51
+ def purchase(money, credit_card, options = {})
52
+ commit :purchase, build_purchase_request(money, credit_card, options)
53
+ end
54
+
55
+ private
56
+
57
+ def build_purchase_request(money, credit_card, options)
58
+ xml = Builder::XmlMarkup.new
59
+
60
+ xml.tag! 'amount', amount(money)
61
+ xml.tag! 'currency', options[:currency] || currency(money)
62
+ xml.tag! 'purchaseOrderNo', options[:order_id].to_s.gsub(/[ ']/, '')
63
+
64
+ xml.tag! 'CreditCardInfo' do
65
+ xml.tag! 'cardNumber', credit_card.number
66
+ xml.tag! 'expiryDate', expdate(credit_card)
67
+ xml.tag! 'cvv', credit_card.verification_value if credit_card.verification_value?
68
+ end
69
+
70
+ xml.target!
71
+ end
72
+
73
+ def build_request(action, body)
74
+ xml = Builder::XmlMarkup.new
75
+ xml.instruct!
76
+ xml.tag! 'SecurePayMessage' do
77
+ xml.tag! 'MessageInfo' do
78
+ xml.tag! 'messageID', Utils.generate_unique_id.slice(0, 30)
79
+ xml.tag! 'messageTimestamp', generate_timestamp
80
+ xml.tag! 'timeoutValue', request_timeout
81
+ xml.tag! 'apiVersion', API_VERSION
82
+ end
83
+
84
+ xml.tag! 'MerchantInfo' do
85
+ xml.tag! 'merchantID', @options[:login]
86
+ xml.tag! 'password', @options[:password]
87
+ end
88
+
89
+ xml.tag! 'RequestType', 'Payment'
90
+ xml.tag! 'Payment' do
91
+ xml.tag! 'TxnList', "count" => 1 do
92
+ xml.tag! 'Txn', "ID" => 1 do
93
+ xml.tag! 'txnType', TRANSACTIONS[action]
94
+ xml.tag! 'txnSource', 23
95
+ xml << body
96
+ end
97
+ end
98
+ end
99
+ end
100
+
101
+ xml.target!
102
+ end
103
+
104
+ def commit(action, request)
105
+ response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, build_request(action, request)))
106
+
107
+ Response.new(success?(response), message_from(response), response,
108
+ :test => test?,
109
+ :authorization => authorization_from(response)
110
+ )
111
+ end
112
+
113
+ def success?(response)
114
+ SUCCESS_CODES.include?(response[:response_code])
115
+ end
116
+
117
+ def authorization_from(response)
118
+ response[:txn_id]
119
+ end
120
+
121
+ def message_from(response)
122
+ response[:response_text] || response[:status_description]
123
+ end
124
+
125
+ def expdate(credit_card)
126
+ "#{format(credit_card.month, :two_digits)}/#{format(credit_card.year, :two_digits)}"
127
+ end
128
+
129
+ def parse(body)
130
+ xml = REXML::Document.new(body)
131
+
132
+ response = {}
133
+
134
+ xml.root.elements.to_a.each do |node|
135
+ parse_element(response, node)
136
+ end
137
+
138
+ response
139
+ end
140
+
141
+ def parse_element(response, node)
142
+ if node.has_elements?
143
+ node.elements.each{|element| parse_element(response, element) }
144
+ else
145
+ response[node.name.underscore.to_sym] = node.text
146
+ end
147
+ end
148
+
149
+ # YYYYDDMMHHNNSSKKK000sOOO
150
+ def generate_timestamp
151
+ time = Time.now.utc
152
+ time.strftime("%Y%d%m%H%M%S#{time.usec}+000")
153
+ end
154
+ end
155
+ end
156
+ end
157
+