jelaniharris-activemerchant 1.24.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. data/CHANGELOG +893 -0
  2. data/CONTRIBUTORS +307 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.md +196 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant.rb +63 -0
  7. data/lib/active_merchant/billing.rb +9 -0
  8. data/lib/active_merchant/billing/avs_result.rb +98 -0
  9. data/lib/active_merchant/billing/base.rb +57 -0
  10. data/lib/active_merchant/billing/check.rb +68 -0
  11. data/lib/active_merchant/billing/credit_card.rb +274 -0
  12. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  13. data/lib/active_merchant/billing/credit_card_methods.rb +143 -0
  14. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  15. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  16. data/lib/active_merchant/billing/gateway.rb +170 -0
  17. data/lib/active_merchant/billing/gateways.rb +18 -0
  18. data/lib/active_merchant/billing/gateways/authorize_net.rb +694 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +946 -0
  20. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +308 -0
  21. data/lib/active_merchant/billing/gateways/beanstream.rb +167 -0
  22. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +388 -0
  23. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  24. data/lib/active_merchant/billing/gateways/blue_pay.rb +492 -0
  25. data/lib/active_merchant/billing/gateways/bogus.rb +142 -0
  26. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  27. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
  28. data/lib/active_merchant/billing/gateways/braintree_blue.rb +335 -0
  29. data/lib/active_merchant/billing/gateways/braintree_orange.rb +21 -0
  30. data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
  31. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  32. data/lib/active_merchant/billing/gateways/certo_direct.rb +279 -0
  33. data/lib/active_merchant/billing/gateways/cyber_source.rb +430 -0
  34. data/lib/active_merchant/billing/gateways/data_cash.rb +597 -0
  35. data/lib/active_merchant/billing/gateways/efsnet.rb +235 -0
  36. data/lib/active_merchant/billing/gateways/elavon.rb +137 -0
  37. data/lib/active_merchant/billing/gateways/epay.rb +276 -0
  38. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  39. data/lib/active_merchant/billing/gateways/eway_managed.rb +265 -0
  40. data/lib/active_merchant/billing/gateways/exact.rb +227 -0
  41. data/lib/active_merchant/billing/gateways/federated_canada.rb +168 -0
  42. data/lib/active_merchant/billing/gateways/first_pay.rb +177 -0
  43. data/lib/active_merchant/billing/gateways/garanti.rb +262 -0
  44. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +250 -0
  45. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
  46. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
  47. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +55 -0
  48. data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
  49. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  50. data/lib/active_merchant/billing/gateways/iridium.rb +258 -0
  51. data/lib/active_merchant/billing/gateways/itransact.rb +450 -0
  52. data/lib/active_merchant/billing/gateways/jetpay.rb +276 -0
  53. data/lib/active_merchant/billing/gateways/linkpoint.rb +454 -0
  54. data/lib/active_merchant/billing/gateways/litle.rb +275 -0
  55. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +157 -0
  56. data/lib/active_merchant/billing/gateways/merchant_ware.rb +289 -0
  57. data/lib/active_merchant/billing/gateways/migs.rb +259 -0
  58. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  59. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  60. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  61. data/lib/active_merchant/billing/gateways/moneris.rb +250 -0
  62. data/lib/active_merchant/billing/gateways/moneris_us.rb +211 -0
  63. data/lib/active_merchant/billing/gateways/nab_transact.rb +255 -0
  64. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  65. data/lib/active_merchant/billing/gateways/netaxept.rb +239 -0
  66. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  67. data/lib/active_merchant/billing/gateways/nmi.rb +13 -0
  68. data/lib/active_merchant/billing/gateways/ogone.rb +422 -0
  69. data/lib/active_merchant/billing/gateways/optimal_payment.rb +277 -0
  70. data/lib/active_merchant/billing/gateways/orbital.rb +353 -0
  71. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
  72. data/lib/active_merchant/billing/gateways/pay_junction.rb +397 -0
  73. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  74. data/lib/active_merchant/billing/gateways/paybox_direct.rb +199 -0
  75. data/lib/active_merchant/billing/gateways/payflow.rb +266 -0
  76. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +211 -0
  77. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  78. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  79. data/lib/active_merchant/billing/gateways/payflow_express.rb +224 -0
  80. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  81. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  82. data/lib/active_merchant/billing/gateways/payment_express.rb +282 -0
  83. data/lib/active_merchant/billing/gateways/paypal.rb +106 -0
  84. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +640 -0
  85. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +49 -0
  86. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +245 -0
  87. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  88. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +43 -0
  89. data/lib/active_merchant/billing/gateways/paypal_express.rb +178 -0
  90. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  91. data/lib/active_merchant/billing/gateways/paystation.rb +201 -0
  92. data/lib/active_merchant/billing/gateways/plugnpay.rb +298 -0
  93. data/lib/active_merchant/billing/gateways/psigate.rb +219 -0
  94. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  95. data/lib/active_merchant/billing/gateways/qbms.rb +297 -0
  96. data/lib/active_merchant/billing/gateways/quantum.rb +282 -0
  97. data/lib/active_merchant/billing/gateways/quickpay.rb +298 -0
  98. data/lib/active_merchant/billing/gateways/realex.rb +313 -0
  99. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  100. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  101. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  102. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  103. data/lib/active_merchant/billing/gateways/sage_pay.rb +320 -0
  104. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  105. data/lib/active_merchant/billing/gateways/samurai.rb +121 -0
  106. data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
  107. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  108. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +281 -0
  109. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  110. data/lib/active_merchant/billing/gateways/skip_jack.rb +458 -0
  111. data/lib/active_merchant/billing/gateways/smart_ps.rb +271 -0
  112. data/lib/active_merchant/billing/gateways/stripe.rb +236 -0
  113. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  114. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  115. data/lib/active_merchant/billing/gateways/trust_commerce.rb +437 -0
  116. data/lib/active_merchant/billing/gateways/usa_epay.rb +23 -0
  117. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1496 -0
  118. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +202 -0
  119. data/lib/active_merchant/billing/gateways/verifi.rb +233 -0
  120. data/lib/active_merchant/billing/gateways/viaklix.rb +194 -0
  121. data/lib/active_merchant/billing/gateways/vindicia.rb +359 -0
  122. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  123. data/lib/active_merchant/billing/gateways/worldpay.rb +280 -0
  124. data/lib/active_merchant/billing/integrations.rb +17 -0
  125. data/lib/active_merchant/billing/integrations/action_view_helper.rb +72 -0
  126. data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +38 -0
  127. data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +228 -0
  128. data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +340 -0
  129. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  130. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  131. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  132. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  133. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  134. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  135. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  136. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  137. data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
  138. data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
  139. data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
  140. data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
  141. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
  142. data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
  143. data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
  144. data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
  145. data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
  146. data/lib/active_merchant/billing/integrations/dotpay.rb +22 -0
  147. data/lib/active_merchant/billing/integrations/dotpay/helper.rb +77 -0
  148. data/lib/active_merchant/billing/integrations/dotpay/notification.rb +86 -0
  149. data/lib/active_merchant/billing/integrations/dotpay/return.rb +11 -0
  150. data/lib/active_merchant/billing/integrations/dwolla.rb +30 -0
  151. data/lib/active_merchant/billing/integrations/dwolla/helper.rb +31 -0
  152. data/lib/active_merchant/billing/integrations/dwolla/notification.rb +55 -0
  153. data/lib/active_merchant/billing/integrations/dwolla/return.rb +38 -0
  154. data/lib/active_merchant/billing/integrations/e_payment_plans.rb +48 -0
  155. data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +34 -0
  156. data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +84 -0
  157. data/lib/active_merchant/billing/integrations/epay.rb +21 -0
  158. data/lib/active_merchant/billing/integrations/epay/helper.rb +55 -0
  159. data/lib/active_merchant/billing/integrations/epay/notification.rb +110 -0
  160. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  161. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  162. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  163. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  164. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  165. data/lib/active_merchant/billing/integrations/helper.rb +113 -0
  166. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  167. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  168. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  169. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  170. data/lib/active_merchant/billing/integrations/moneybookers.rb +26 -0
  171. data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +59 -0
  172. data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -0
  173. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  174. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  175. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  176. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  177. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  178. data/lib/active_merchant/billing/integrations/payflow_link.rb +21 -0
  179. data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +100 -0
  180. data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +78 -0
  181. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  182. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  183. data/lib/active_merchant/billing/integrations/paypal/notification.rb +155 -0
  184. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  185. data/lib/active_merchant/billing/integrations/quickpay.rb +21 -0
  186. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +71 -0
  187. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  188. data/lib/active_merchant/billing/integrations/return.rb +42 -0
  189. data/lib/active_merchant/billing/integrations/robokassa.rb +49 -0
  190. data/lib/active_merchant/billing/integrations/robokassa/common.rb +19 -0
  191. data/lib/active_merchant/billing/integrations/robokassa/helper.rb +50 -0
  192. data/lib/active_merchant/billing/integrations/robokassa/notification.rb +55 -0
  193. data/lib/active_merchant/billing/integrations/robokassa/return.rb +17 -0
  194. data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
  195. data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
  196. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +129 -0
  197. data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
  198. data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
  199. data/lib/active_merchant/billing/integrations/two_checkout.rb +44 -0
  200. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +91 -0
  201. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +139 -0
  202. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  203. data/lib/active_merchant/billing/integrations/valitor.rb +33 -0
  204. data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
  205. data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
  206. data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +97 -0
  207. data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
  208. data/lib/active_merchant/billing/integrations/verkkomaksut.rb +20 -0
  209. data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +87 -0
  210. data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +59 -0
  211. data/lib/active_merchant/billing/integrations/world_pay.rb +27 -0
  212. data/lib/active_merchant/billing/integrations/world_pay/helper.rb +100 -0
  213. data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
  214. data/lib/active_merchant/billing/response.rb +32 -0
  215. data/lib/active_merchant/version.rb +3 -0
  216. data/lib/activemerchant.rb +1 -0
  217. data/lib/support/gateway_support.rb +58 -0
  218. data/lib/support/outbound_hosts.rb +25 -0
  219. metadata +447 -0
@@ -0,0 +1,202 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+
4
+ class UsaEpayTransactionGateway < Gateway
5
+ URL = 'https://www.usaepay.com/gate.php'
6
+
7
+ self.supported_cardtypes = [:visa, :master, :american_express]
8
+ self.supported_countries = ['US']
9
+ self.homepage_url = 'http://www.usaepay.com/'
10
+ self.display_name = 'USA ePay'
11
+
12
+ TRANSACTIONS = {
13
+ :authorization => 'authonly',
14
+ :purchase => 'sale',
15
+ :capture => 'capture',
16
+ :refund => 'refund',
17
+ :void => 'void'
18
+ }
19
+
20
+ def initialize(options = {})
21
+ requires!(options, :login)
22
+ @options = options
23
+ super
24
+ end
25
+
26
+ def authorize(money, credit_card, options = {})
27
+ post = {}
28
+
29
+ add_amount(post, money)
30
+ add_invoice(post, options)
31
+ add_credit_card(post, credit_card)
32
+ add_address(post, credit_card, options)
33
+ add_customer_data(post, options)
34
+
35
+ commit(:authorization, post)
36
+ end
37
+
38
+ def purchase(money, credit_card, options = {})
39
+ post = {}
40
+
41
+ add_amount(post, money)
42
+ add_invoice(post, options)
43
+ add_credit_card(post, credit_card)
44
+ add_address(post, credit_card, options)
45
+ add_customer_data(post, options)
46
+
47
+ commit(:purchase, post)
48
+ end
49
+
50
+ def capture(money, authorization, options = {})
51
+ post = { :refNum => authorization }
52
+
53
+ add_amount(post, money)
54
+ commit(:capture, post)
55
+ end
56
+
57
+ def refund(money, authorization, options = {})
58
+ post = { :refNum => authorization }
59
+
60
+ add_amount(post, money)
61
+ commit(:refund, post)
62
+ end
63
+
64
+ def void(authorization, options = {})
65
+ post = { :refNum => authorization }
66
+ commit(:void, post)
67
+ end
68
+
69
+ private
70
+
71
+ def add_amount(post, money)
72
+ post[:amount] = amount(money)
73
+ end
74
+
75
+ def expdate(credit_card)
76
+ year = format(credit_card.year, :two_digits)
77
+ month = format(credit_card.month, :two_digits)
78
+
79
+ "#{month}#{year}"
80
+ end
81
+
82
+ def add_customer_data(post, options)
83
+ address = options[:billing_address] || options[:address] || {}
84
+ post[:street] = address[:address1]
85
+ post[:zip] = address[:zip]
86
+
87
+ if options.has_key? :email
88
+ post[:custemail] = options[:email]
89
+ post[:custreceipt] = 'No'
90
+ end
91
+
92
+ if options.has_key? :customer
93
+ post[:custid] = options[:customer]
94
+ end
95
+
96
+ if options.has_key? :ip
97
+ post[:ip] = options[:ip]
98
+ end
99
+ end
100
+
101
+ def add_address(post, credit_card, options)
102
+ billing_address = options[:billing_address] || options[:address]
103
+
104
+ add_address_for_type(:billing, post, credit_card, billing_address) if billing_address
105
+ add_address_for_type(:shipping, post, credit_card, options[:shipping_address]) if options[:shipping_address]
106
+ end
107
+
108
+ def add_address_for_type(type, post, credit_card, address)
109
+ prefix = address_key_prefix(type)
110
+
111
+ post[address_key(prefix, 'fname')] = credit_card.first_name
112
+ post[address_key(prefix, 'lname')] = credit_card.last_name
113
+ post[address_key(prefix, 'company')] = address[:company] unless address[:company].blank?
114
+ post[address_key(prefix, 'street')] = address[:address1] unless address[:address1].blank?
115
+ post[address_key(prefix, 'street2')] = address[:address2] unless address[:address2].blank?
116
+ post[address_key(prefix, 'city')] = address[:city] unless address[:city].blank?
117
+ post[address_key(prefix, 'state')] = address[:state] unless address[:state].blank?
118
+ post[address_key(prefix, 'zip')] = address[:zip] unless address[:zip].blank?
119
+ post[address_key(prefix, 'country')] = address[:country] unless address[:country].blank?
120
+ post[address_key(prefix, 'phone')] = address[:phone] unless address[:phone].blank?
121
+ end
122
+
123
+ def address_key_prefix(type)
124
+ case type
125
+ when :shipping then 'ship'
126
+ when :billing then 'bill'
127
+ end
128
+ end
129
+
130
+ def address_key(prefix, key)
131
+ "#{prefix}#{key}".to_sym
132
+ end
133
+
134
+ def add_invoice(post, options)
135
+ post[:invoice] = options[:order_id]
136
+ end
137
+
138
+ def add_credit_card(post, credit_card)
139
+ post[:card] = credit_card.number
140
+ post[:cvv2] = credit_card.verification_value if credit_card.verification_value?
141
+ post[:expir] = expdate(credit_card)
142
+ post[:name] = credit_card.name
143
+ end
144
+
145
+ def parse(body)
146
+ fields = {}
147
+ for line in body.split('&')
148
+ key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
149
+ fields[key] = CGI.unescape(value.to_s)
150
+ end
151
+
152
+ {
153
+ :status => fields['UMstatus'],
154
+ :auth_code => fields['UMauthCode'],
155
+ :ref_num => fields['UMrefNum'],
156
+ :batch => fields['UMbatch'],
157
+ :avs_result => fields['UMavsResult'],
158
+ :avs_result_code => fields['UMavsResultCode'],
159
+ :cvv2_result => fields['UMcvv2Result'],
160
+ :cvv2_result_code => fields['UMcvv2ResultCode'],
161
+ :vpas_result_code => fields['UMvpasResultCode'],
162
+ :result => fields['UMresult'],
163
+ :error => fields['UMerror'],
164
+ :error_code => fields['UMerrorcode'],
165
+ :acs_url => fields['UMacsurl'],
166
+ :payload => fields['UMpayload']
167
+ }.delete_if{|k, v| v.nil?}
168
+ end
169
+
170
+
171
+ def commit(action, parameters)
172
+ response = parse( ssl_post(URL, post_data(action, parameters)) )
173
+
174
+ Response.new(response[:status] == 'Approved', message_from(response), response,
175
+ :test => @options[:test] || test?,
176
+ :authorization => response[:ref_num],
177
+ :cvv_result => response[:cvv2_result_code],
178
+ :avs_result => { :code => response[:avs_result_code] }
179
+ )
180
+ end
181
+
182
+ def message_from(response)
183
+ if response[:status] == "Approved"
184
+ return 'Success'
185
+ else
186
+ return 'Unspecified error' if response[:error].blank?
187
+ return response[:error]
188
+ end
189
+ end
190
+
191
+ def post_data(action, parameters = {})
192
+ parameters[:command] = TRANSACTIONS[action]
193
+ parameters[:key] = @options[:login]
194
+ parameters[:software] = 'Active Merchant'
195
+ parameters[:testmode] = @options[:test] ? 1 : 0
196
+
197
+ parameters.collect { |key, value| "UM#{key}=#{CGI.escape(value.to_s)}" }.join("&")
198
+ end
199
+ end
200
+ end
201
+ end
202
+
@@ -0,0 +1,233 @@
1
+ require 'rexml/document'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class VerifiGateway < Gateway
6
+ class VerifiPostData < PostData
7
+ # Fields that will be sent even if they are blank
8
+ self.required_fields = [ :amount, :type, :ccnumber, :ccexp, :firstname, :lastname,
9
+ :company, :address1, :address2, :city, :state, :zip, :country, :phone ]
10
+ end
11
+
12
+ URL = 'https://secure.verifi.com/gw/api/transact.php'
13
+
14
+ RESPONSE_CODE_MESSAGES = {
15
+ "100" => "Transaction was Approved",
16
+ "200" => "Transaction was Declined by Processor",
17
+ "201" => "Do Not Honor",
18
+ "202" => "Insufficient Funds",
19
+ "203" => "Over Limit",
20
+ "204" => "Transaction not allowed",
21
+ "220" => "Incorrect payment Data",
22
+ "221" => "No Such Card Issuer",
23
+ "222" => "No Card Number on file with Issuer",
24
+ "223" => "Expired Card",
25
+ "224" => "Invalid Expiration Date",
26
+ "225" => "Invalid Card Security Code",
27
+ "240" => "Call Issuer for Further Information",
28
+ "250" => "Pick Up Card",
29
+ "251" => "Lost Card",
30
+ "252" => "Stolen Card",
31
+ "253" => "Fraudulent Card",
32
+ "260" => "Declined With further Instructions Available (see response text)",
33
+ "261" => "Declined - Stop All Recurring Payments",
34
+ "262" => "Declined - Stop this Recurring Program",
35
+ "263" => "Declined - Update Cardholder Data Available",
36
+ "264" => "Declined - Retry in a few days",
37
+ "300" => "Transaction was Rejected by Gateway",
38
+ "400" => "Transaction Error Returned by Processor",
39
+ "410" => "Invalid Merchant Configuration",
40
+ "411" => "Merchant Account is Inactive",
41
+ "420" => "Communication Error",
42
+ "421" => "Communication Error with Issuer",
43
+ "430" => "Duplicate Transaction at Processor",
44
+ "440" => "Processor Format Error",
45
+ "441" => "Invalid Transaction Information",
46
+ "460" => "Processor Feature Not Available",
47
+ "461" => "Unsupported Card Type"
48
+ }
49
+
50
+ SUCCESS = 1
51
+
52
+ TRANSACTIONS = {
53
+ :authorization => 'auth',
54
+ :purchase => 'sale',
55
+ :capture => 'capture',
56
+ :void => 'void',
57
+ :credit => 'credit',
58
+ :refund => 'refund'
59
+ }
60
+
61
+ self.supported_countries = ['US']
62
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
63
+ self.homepage_url = 'http://www.verifi.com/'
64
+ self.display_name = 'Verifi'
65
+
66
+ def initialize(options = {})
67
+ requires!(options, :login, :password)
68
+ @options = options
69
+ super
70
+ end
71
+
72
+ def purchase(money, credit_card, options = {})
73
+ sale_authorization_or_credit_template(:purchase, money, credit_card, options)
74
+ end
75
+
76
+ def authorize(money, credit_card, options = {})
77
+ sale_authorization_or_credit_template(:authorization, money, credit_card, options)
78
+ end
79
+
80
+ def capture(money, authorization, options = {})
81
+ capture_void_or_refund_template(:capture, money, authorization, options)
82
+ end
83
+
84
+ def void(authorization, options = {})
85
+ capture_void_or_refund_template(:void, 0, authorization, options)
86
+ end
87
+
88
+ def credit(money, credit_card_or_authorization, options = {})
89
+ if credit_card_or_authorization.is_a?(String)
90
+ deprecated CREDIT_DEPRECATION_MESSAGE
91
+ refund(money, credit_card_or_authorization, options)
92
+ else
93
+ sale_authorization_or_credit_template(:credit, money, credit_card_or_authorization, options)
94
+ end
95
+ end
96
+
97
+ def refund(money, reference, options = {})
98
+ capture_void_or_refund_template(:refund, money, reference, options)
99
+ end
100
+
101
+ private
102
+
103
+ def sale_authorization_or_credit_template(trx_type, money, credit_card, options = {})
104
+ post = VerifiPostData.new
105
+ add_security_key_data(post, options, money)
106
+ add_credit_card(post, credit_card)
107
+ add_addresses(post, options)
108
+ add_customer_data(post, options)
109
+ add_invoice_data(post, options)
110
+ add_optional_data(post, options)
111
+ commit(trx_type, money, post)
112
+ end
113
+
114
+ def capture_void_or_refund_template(trx_type, money, authorization, options)
115
+ post = VerifiPostData.new
116
+ post[:transactionid] = authorization
117
+
118
+ commit(trx_type, money, post)
119
+ end
120
+
121
+ def add_credit_card(post, credit_card)
122
+ post[:ccnumber] = credit_card.number
123
+ post[:ccexp] = expdate(credit_card)
124
+ post[:firstname] = credit_card.first_name
125
+ post[:lastname] = credit_card.last_name
126
+ post[:cvv] = credit_card.verification_value
127
+ end
128
+
129
+ def expdate(credit_card)
130
+ year = sprintf("%.4i", credit_card.year)
131
+ month = sprintf("%.2i", credit_card.month)
132
+
133
+ "#{month}#{year[-2..-1]}"
134
+ end
135
+
136
+ def add_addresses(post, options)
137
+ if billing_address = options[:billing_address] || options[:address]
138
+ post[:company] = billing_address[:company]
139
+ post[:address1] = billing_address[:address1]
140
+ post[:address2] = billing_address[:address2]
141
+ post[:city] = billing_address[:city]
142
+ post[:state] = billing_address[:state]
143
+ post[:zip] = billing_address[:zip]
144
+ post[:country] = billing_address[:country]
145
+ post[:phone] = billing_address[:phone]
146
+ post[:fax] = billing_address[:fax]
147
+ end
148
+
149
+ if shipping_address = options[:shipping_address]
150
+ post[:shipping_firstname] = shipping_address[:first_name]
151
+ post[:shipping_lastname] = shipping_address[:last_name]
152
+ post[:shipping_company] = shipping_address[:company]
153
+ post[:shipping_address1] = shipping_address[:address1]
154
+ post[:shipping_address2] = shipping_address[:address2]
155
+ post[:shipping_city] = shipping_address[:city]
156
+ post[:shipping_state] = shipping_address[:state]
157
+ post[:shipping_zip] = shipping_address[:zip]
158
+ post[:shipping_country] = shipping_address[:country]
159
+ post[:shipping_email] = shipping_address[:email]
160
+ end
161
+ end
162
+
163
+ def add_customer_data(post, options)
164
+ post[:email] = options[:email]
165
+ post[:ipaddress] = options[:ip]
166
+ end
167
+
168
+ def add_invoice_data(post, options)
169
+ post[:orderid] = options[:order_id]
170
+ post[:ponumber] = options[:invoice]
171
+ post[:orderdescription] = options[:description]
172
+ post[:tax] = options[:tax]
173
+ post[:shipping] = options[:shipping]
174
+ end
175
+
176
+ def add_optional_data(post, options)
177
+ post[:billing_method] = options[:billing_method]
178
+ post[:website] = options[:website]
179
+ post[:descriptor] = options[:descriptor]
180
+ post[:descriptor_phone] = options[:descriptor_phone]
181
+ post[:cardholder_auth] = options[:cardholder_auth]
182
+ post[:cavv] = options[:cavv]
183
+ post[:xid] = options[:xid]
184
+ post[:customer_receipt] = options[:customer_receipt]
185
+ end
186
+
187
+ def add_security_key_data(post, options, money)
188
+ # MD5(username|password|orderid|amount|time)
189
+ now = Time.now.to_i.to_s
190
+ md5 = Digest::MD5.new
191
+ md5 << @options[:login].to_s + "|"
192
+ md5 << @options[:password].to_s + "|"
193
+ md5 << options[:order_id].to_s + "|"
194
+ md5 << amount(money).to_s + "|"
195
+ md5 << now
196
+ post[:key] = md5.hexdigest
197
+ post[:time] = now
198
+ end
199
+
200
+ def commit(trx_type, money, post)
201
+ post[:amount] = amount(money)
202
+
203
+ response = parse( ssl_post(URL, post_data(trx_type, post)) )
204
+
205
+ Response.new(response[:response].to_i == SUCCESS, message_from(response), response,
206
+ :test => test?,
207
+ :authorization => response[:transactionid],
208
+ :avs_result => { :code => response[:avsresponse] },
209
+ :cvv_result => response[:cvvresponse]
210
+ )
211
+ end
212
+
213
+ def message_from(response)
214
+ response[:response_code_message] ? response[:response_code_message] : ""
215
+ end
216
+
217
+ def parse(body)
218
+ results = {}
219
+ CGI.parse(body).each { |key, value| results[key.intern] = value[0] }
220
+ results[:response_code_message] = RESPONSE_CODE_MESSAGES[results[:response_code]] if results[:response_code]
221
+ results
222
+ end
223
+
224
+ def post_data(trx_type, post)
225
+ post[:username] = @options[:login]
226
+ post[:password] = @options[:password]
227
+ post[:type] = TRANSACTIONS[trx_type]
228
+
229
+ post.to_s
230
+ end
231
+ end
232
+ end
233
+ end
@@ -0,0 +1,194 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class ViaklixGateway < Gateway
4
+ class_attribute :test_url, :live_url, :delimiter, :actions
5
+
6
+ self.test_url = 'https://demo.viaklix.com/process.asp'
7
+ self.live_url = 'https://www.viaklix.com/process.asp'
8
+ self.delimiter = "\r\n"
9
+
10
+ self.actions = {
11
+ :purchase => 'SALE',
12
+ :credit => 'CREDIT'
13
+ }
14
+
15
+ APPROVED = '0'
16
+
17
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
18
+ self.supported_countries = ['US']
19
+ self.display_name = 'ViaKLIX'
20
+ self.homepage_url = 'http://viaklix.com'
21
+
22
+ # Initialize the Gateway
23
+ #
24
+ # The gateway requires that a valid login and password be passed
25
+ # in the +options+ hash.
26
+ #
27
+ # ==== Options
28
+ #
29
+ # * <tt>:login</tt> -- Merchant ID
30
+ # * <tt>:password</tt> -- PIN
31
+ # * <tt>:user</tt> -- Specify a subuser of the account (optional)
32
+ # * <tt>:test => +true+ or +false+</tt> -- Force test transactions
33
+ def initialize(options = {})
34
+ requires!(options, :login, :password)
35
+ @options = options
36
+ super
37
+ end
38
+
39
+ # Make a purchase
40
+ def purchase(money, creditcard, options = {})
41
+ form = {}
42
+ add_invoice(form, options)
43
+ add_creditcard(form, creditcard)
44
+ add_address(form, options)
45
+ add_customer_data(form, options)
46
+ add_test_mode(form, options)
47
+ commit(:purchase, money, form)
48
+ end
49
+
50
+ # Make a credit to a card (Void can only be done from the virtual terminal)
51
+ # Viaklix does not support credits by reference. You must pass in the credit card
52
+ def credit(money, creditcard, options = {})
53
+ if creditcard.is_a?(String)
54
+ raise ArgumentError, "Reference credits are not supported. Please supply the original credit card"
55
+ end
56
+
57
+ form = {}
58
+ add_invoice(form, options)
59
+ add_creditcard(form, creditcard)
60
+ add_address(form, options)
61
+ add_customer_data(form, options)
62
+ add_test_mode(form, options)
63
+ commit(:credit, money, form)
64
+ end
65
+
66
+ private
67
+ def add_test_mode(form, options)
68
+ form[:test_mode] = 'TRUE' if options[:test_mode]
69
+ end
70
+
71
+ def add_customer_data(form, options)
72
+ form[:email] = options[:email].to_s.slice(0, 100) unless options[:email].blank?
73
+ form[:customer_code] = options[:customer].to_s.slice(0, 10) unless options[:customer].blank?
74
+ end
75
+
76
+ def add_invoice(form,options)
77
+ form[:invoice_number] = (options[:order_id] || options[:invoice]).to_s.slice(0, 10)
78
+ form[:description] = options[:description].to_s.slice(0, 255)
79
+ end
80
+
81
+ def add_address(form,options)
82
+ billing_address = options[:billing_address] || options[:address]
83
+
84
+ if billing_address
85
+ form[:avs_address] = billing_address[:address1].to_s.slice(0, 30)
86
+ form[:address2] = billing_address[:address2].to_s.slice(0, 30)
87
+ form[:avs_zip] = billing_address[:zip].to_s.slice(0, 10)
88
+ form[:city] = billing_address[:city].to_s.slice(0, 30)
89
+ form[:state] = billing_address[:state].to_s.slice(0, 10)
90
+ form[:company] = billing_address[:company].to_s.slice(0, 50)
91
+ form[:phone] = billing_address[:phone].to_s.slice(0, 20)
92
+ form[:country] = billing_address[:country].to_s.slice(0, 50)
93
+ end
94
+
95
+ if shipping_address = options[:shipping_address]
96
+ first_name, last_name = parse_first_and_last_name(shipping_address[:name])
97
+ form[:ship_to_first_name] = first_name.to_s.slice(0, 20)
98
+ form[:ship_to_last_name] = last_name.to_s.slice(0, 30)
99
+ form[:ship_to_address] = shipping_address[:address1].to_s.slice(0, 30)
100
+ form[:ship_to_city] = shipping_address[:city].to_s.slice(0, 30)
101
+ form[:ship_to_state] = shipping_address[:state].to_s.slice(0, 10)
102
+ form[:ship_to_company] = shipping_address[:company].to_s.slice(0, 50)
103
+ form[:ship_to_country] = shipping_address[:country].to_s.slice(0, 50)
104
+ form[:ship_to_zip] = shipping_address[:zip].to_s.slice(0, 10)
105
+ end
106
+ end
107
+
108
+ def parse_first_and_last_name(value)
109
+ name = value.to_s.split(' ')
110
+
111
+ last_name = name.pop || ''
112
+ first_name = name.join(' ')
113
+ [ first_name, last_name ]
114
+ end
115
+
116
+ def add_creditcard(form, creditcard)
117
+ form[:card_number] = creditcard.number
118
+ form[:exp_date] = expdate(creditcard)
119
+
120
+ if creditcard.verification_value?
121
+ add_verification_value(form, creditcard)
122
+ end
123
+
124
+ form[:first_name] = creditcard.first_name.to_s.slice(0, 20)
125
+ form[:last_name] = creditcard.last_name.to_s.slice(0, 30)
126
+ end
127
+
128
+ def add_verification_value(form, creditcard)
129
+ form[:cvv2cvc2] = creditcard.verification_value
130
+ form[:cvv2] = 'present'
131
+ end
132
+
133
+ def preamble
134
+ result = {
135
+ 'merchant_id' => @options[:login],
136
+ 'pin' => @options[:password],
137
+ 'show_form' => 'false',
138
+ 'result_format' => 'ASCII'
139
+ }
140
+
141
+ result['user_id'] = @options[:user] unless @options[:user].blank?
142
+ result
143
+ end
144
+
145
+ def test?
146
+ @options[:test] || super
147
+ end
148
+
149
+ def commit(action, money, parameters)
150
+ parameters[:amount] = amount(money)
151
+ parameters[:transaction_type] = self.actions[action]
152
+
153
+ response = parse( ssl_post(test? ? self.test_url : self.live_url, post_data(parameters)) )
154
+
155
+ Response.new(response['result'] == APPROVED, message_from(response), response,
156
+ :test => @options[:test] || test?,
157
+ :authorization => authorization_from(response),
158
+ :avs_result => { :code => response['avs_response'] },
159
+ :cvv_result => response['cvv2_response']
160
+ )
161
+ end
162
+
163
+ def authorization_from(response)
164
+ response['txn_id']
165
+ end
166
+
167
+ def message_from(response)
168
+ response['result_message']
169
+ end
170
+
171
+ def post_data(parameters)
172
+ result = preamble
173
+ result.merge!(parameters)
174
+ result.collect { |key, value| "ssl_#{key}=#{CGI.escape(value.to_s)}" }.join("&")
175
+ end
176
+
177
+ def expdate(creditcard)
178
+ year = sprintf("%.4i", creditcard.year)
179
+ month = sprintf("%.2i", creditcard.month)
180
+ "#{month}#{year[2..3]}"
181
+ end
182
+
183
+ # Parse the response message
184
+ def parse(msg)
185
+ resp = {}
186
+ msg.split(self.delimiter).collect{|li|
187
+ key, value = li.split("=")
188
+ resp[key.strip.gsub(/^ssl_/, '')] = value.to_s.strip
189
+ }
190
+ resp
191
+ end
192
+ end
193
+ end
194
+ end