gonow-activemerchant 1.15.0

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 (189) hide show
  1. data/CHANGELOG +690 -0
  2. data/CONTRIBUTORS +237 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +165 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant.rb +47 -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 +178 -0
  12. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  13. data/lib/active_merchant/billing/credit_card_methods.rb +125 -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 +664 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +858 -0
  20. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +308 -0
  21. data/lib/active_merchant/billing/gateways/beanstream.rb +139 -0
  22. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +282 -0
  23. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  24. data/lib/active_merchant/billing/gateways/blue_pay.rb +11 -0
  25. data/lib/active_merchant/billing/gateways/bogus.rb +132 -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 +293 -0
  29. data/lib/active_merchant/billing/gateways/braintree_orange.rb +17 -0
  30. data/lib/active_merchant/billing/gateways/braspag.rb +188 -0
  31. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  32. data/lib/active_merchant/billing/gateways/cyber_source.rb +430 -0
  33. data/lib/active_merchant/billing/gateways/data_cash.rb +597 -0
  34. data/lib/active_merchant/billing/gateways/efsnet.rb +235 -0
  35. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  36. data/lib/active_merchant/billing/gateways/epay.rb +268 -0
  37. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  38. data/lib/active_merchant/billing/gateways/eway_managed.rb +231 -0
  39. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  40. data/lib/active_merchant/billing/gateways/federated_canada.rb +168 -0
  41. data/lib/active_merchant/billing/gateways/first_pay.rb +177 -0
  42. data/lib/active_merchant/billing/gateways/garanti.rb +262 -0
  43. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +250 -0
  44. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
  45. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
  46. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +55 -0
  47. data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
  48. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  49. data/lib/active_merchant/billing/gateways/iridium.rb +258 -0
  50. data/lib/active_merchant/billing/gateways/jetpay.rb +276 -0
  51. data/lib/active_merchant/billing/gateways/linkpoint.rb +454 -0
  52. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +156 -0
  53. data/lib/active_merchant/billing/gateways/merchant_ware.rb +289 -0
  54. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  55. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  56. data/lib/active_merchant/billing/gateways/moneris.rb +209 -0
  57. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  58. data/lib/active_merchant/billing/gateways/netaxept.rb +239 -0
  59. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  60. data/lib/active_merchant/billing/gateways/nmi.rb +13 -0
  61. data/lib/active_merchant/billing/gateways/ogone.rb +292 -0
  62. data/lib/active_merchant/billing/gateways/orbital.rb +321 -0
  63. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
  64. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  65. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  66. data/lib/active_merchant/billing/gateways/paybox_direct.rb +207 -0
  67. data/lib/active_merchant/billing/gateways/payflow.rb +253 -0
  68. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  69. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  70. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  71. data/lib/active_merchant/billing/gateways/payflow_express.rb +222 -0
  72. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  73. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  74. data/lib/active_merchant/billing/gateways/payment_express.rb +235 -0
  75. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  76. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +351 -0
  77. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +49 -0
  78. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  79. data/lib/active_merchant/billing/gateways/paypal_express.rb +177 -0
  80. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +25 -0
  81. data/lib/active_merchant/billing/gateways/plugnpay.rb +298 -0
  82. data/lib/active_merchant/billing/gateways/psigate.rb +219 -0
  83. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  84. data/lib/active_merchant/billing/gateways/qbms.rb +295 -0
  85. data/lib/active_merchant/billing/gateways/quantum.rb +282 -0
  86. data/lib/active_merchant/billing/gateways/quickpay.rb +218 -0
  87. data/lib/active_merchant/billing/gateways/realex.rb +311 -0
  88. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  89. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  90. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  91. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  92. data/lib/active_merchant/billing/gateways/sage_pay.rb +320 -0
  93. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  94. data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
  95. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  96. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +193 -0
  97. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  98. data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
  99. data/lib/active_merchant/billing/gateways/smart_ps.rb +271 -0
  100. data/lib/active_merchant/billing/gateways/stripe.rb +212 -0
  101. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  102. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  103. data/lib/active_merchant/billing/gateways/trust_commerce.rb +423 -0
  104. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  105. data/lib/active_merchant/billing/gateways/verifi.rb +233 -0
  106. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  107. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  108. data/lib/active_merchant/billing/gateways/worldpay.rb +280 -0
  109. data/lib/active_merchant/billing/integrations.rb +17 -0
  110. data/lib/active_merchant/billing/integrations/action_view_helper.rb +68 -0
  111. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  112. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  113. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  114. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  115. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  116. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  117. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  118. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  119. data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
  120. data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
  121. data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
  122. data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
  123. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
  124. data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
  125. data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
  126. data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
  127. data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
  128. data/lib/active_merchant/billing/integrations/e_payment_plans.rb +48 -0
  129. data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +34 -0
  130. data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +84 -0
  131. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  132. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  133. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  134. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  135. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  136. data/lib/active_merchant/billing/integrations/helper.rb +96 -0
  137. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  138. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  139. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  140. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  141. data/lib/active_merchant/billing/integrations/moneybookers.rb +26 -0
  142. data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +59 -0
  143. data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -0
  144. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  145. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  146. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  147. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  148. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  149. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  150. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  151. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  152. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  153. data/lib/active_merchant/billing/integrations/quickpay.rb +21 -0
  154. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  155. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  156. data/lib/active_merchant/billing/integrations/return.rb +42 -0
  157. data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
  158. data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
  159. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +111 -0
  160. data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
  161. data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
  162. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  163. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  164. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  165. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  166. data/lib/active_merchant/billing/integrations/valitor.rb +33 -0
  167. data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
  168. data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
  169. data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +97 -0
  170. data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
  171. data/lib/active_merchant/billing/integrations/world_pay.rb +27 -0
  172. data/lib/active_merchant/billing/integrations/world_pay/helper.rb +100 -0
  173. data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
  174. data/lib/active_merchant/billing/response.rb +32 -0
  175. data/lib/active_merchant/common.rb +14 -0
  176. data/lib/active_merchant/common/connection.rb +177 -0
  177. data/lib/active_merchant/common/country.rb +328 -0
  178. data/lib/active_merchant/common/error.rb +26 -0
  179. data/lib/active_merchant/common/post_data.rb +24 -0
  180. data/lib/active_merchant/common/posts_data.rb +63 -0
  181. data/lib/active_merchant/common/requires_parameters.rb +16 -0
  182. data/lib/active_merchant/common/utils.rb +22 -0
  183. data/lib/active_merchant/common/validateable.rb +81 -0
  184. data/lib/active_merchant/version.rb +3 -0
  185. data/lib/activemerchant.rb +1 -0
  186. data/lib/certs/cacert.pem +7815 -0
  187. data/lib/support/gateway_support.rb +58 -0
  188. data/lib/support/outbound_hosts.rb +25 -0
  189. metadata +276 -0
@@ -0,0 +1,194 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+
4
+ class UsaEpayGateway < 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
+ }
17
+
18
+ def initialize(options = {})
19
+ requires!(options, :login)
20
+ @options = options
21
+ super
22
+ end
23
+
24
+ def authorize(money, credit_card, options = {})
25
+ post = {}
26
+
27
+ add_amount(post, money)
28
+ add_invoice(post, options)
29
+ add_credit_card(post, credit_card)
30
+ add_address(post, credit_card, options)
31
+ add_customer_data(post, options)
32
+
33
+ commit(:authorization, post)
34
+ end
35
+
36
+ def purchase(money, credit_card, options = {})
37
+ post = {}
38
+
39
+ add_amount(post, money)
40
+ add_invoice(post, options)
41
+ add_credit_card(post, credit_card)
42
+ add_address(post, credit_card, options)
43
+ add_customer_data(post, options)
44
+
45
+ commit(:purchase, post)
46
+ end
47
+
48
+ def capture(money, authorization, options = {})
49
+ post = {
50
+ :refNum => authorization
51
+ }
52
+
53
+ add_amount(post, money)
54
+ commit(:capture, post)
55
+ end
56
+
57
+ private
58
+
59
+ def add_amount(post, money)
60
+ post[:amount] = amount(money)
61
+ end
62
+
63
+ def expdate(credit_card)
64
+ year = format(credit_card.year, :two_digits)
65
+ month = format(credit_card.month, :two_digits)
66
+
67
+ "#{month}#{year}"
68
+ end
69
+
70
+ def add_customer_data(post, options)
71
+ address = options[:billing_address] || options[:address] || {}
72
+ post[:street] = address[:address1]
73
+ post[:zip] = address[:zip]
74
+
75
+ if options.has_key? :email
76
+ post[:custemail] = options[:email]
77
+ post[:custreceipt] = 'No'
78
+ end
79
+
80
+ if options.has_key? :customer
81
+ post[:custid] = options[:customer]
82
+ end
83
+
84
+ if options.has_key? :ip
85
+ post[:ip] = options[:ip]
86
+ end
87
+ end
88
+
89
+ def add_address(post, credit_card, options)
90
+ billing_address = options[:billing_address] || options[:address]
91
+
92
+ add_address_for_type(:billing, post, credit_card, billing_address) if billing_address
93
+ add_address_for_type(:shipping, post, credit_card, options[:shipping_address]) if options[:shipping_address]
94
+ end
95
+
96
+ def add_address_for_type(type, post, credit_card, address)
97
+ prefix = address_key_prefix(type)
98
+
99
+ post[address_key(prefix, 'fname')] = credit_card.first_name
100
+ post[address_key(prefix, 'lname')] = credit_card.last_name
101
+ post[address_key(prefix, 'company')] = address[:company] unless address[:company].blank?
102
+ post[address_key(prefix, 'street')] = address[:address1] unless address[:address1].blank?
103
+ post[address_key(prefix, 'street2')] = address[:address2] unless address[:address2].blank?
104
+ post[address_key(prefix, 'city')] = address[:city] unless address[:city].blank?
105
+ post[address_key(prefix, 'state')] = address[:state] unless address[:state].blank?
106
+ post[address_key(prefix, 'zip')] = address[:zip] unless address[:zip].blank?
107
+ post[address_key(prefix, 'country')] = address[:country] unless address[:country].blank?
108
+ post[address_key(prefix, 'phone')] = address[:phone] unless address[:phone].blank?
109
+ end
110
+
111
+ def address_key_prefix(type)
112
+ case type
113
+ when :shipping then 'ship'
114
+ when :billing then 'bill'
115
+ end
116
+ end
117
+
118
+ def address_key(prefix, key)
119
+ "#{prefix}#{key}".to_sym
120
+ end
121
+
122
+ def add_invoice(post, options)
123
+ post[:invoice] = options[:order_id]
124
+ end
125
+
126
+ def add_credit_card(post, credit_card)
127
+ post[:card] = credit_card.number
128
+ post[:cvv2] = credit_card.verification_value if credit_card.verification_value?
129
+ post[:expir] = expdate(credit_card)
130
+ post[:name] = credit_card.name
131
+ end
132
+
133
+ def parse(body)
134
+ fields = {}
135
+ for line in body.split('&')
136
+ key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
137
+ fields[key] = CGI.unescape(value.to_s)
138
+ end
139
+
140
+ {
141
+ :status => fields['UMstatus'],
142
+ :auth_code => fields['UMauthCode'],
143
+ :ref_num => fields['UMrefNum'],
144
+ :batch => fields['UMbatch'],
145
+ :avs_result => fields['UMavsResult'],
146
+ :avs_result_code => fields['UMavsResultCode'],
147
+ :cvv2_result => fields['UMcvv2Result'],
148
+ :cvv2_result_code => fields['UMcvv2ResultCode'],
149
+ :vpas_result_code => fields['UMvpasResultCode'],
150
+ :result => fields['UMresult'],
151
+ :error => fields['UMerror'],
152
+ :error_code => fields['UMerrorcode'],
153
+ :acs_url => fields['UMacsurl'],
154
+ :payload => fields['UMpayload']
155
+ }.delete_if{|k, v| v.nil?}
156
+ end
157
+
158
+
159
+ def commit(action, parameters)
160
+ response = parse( ssl_post(URL, post_data(action, parameters)) )
161
+
162
+ Response.new(response[:status] == 'Approved', message_from(response), response,
163
+ :test => @options[:test] || test?,
164
+ :authorization => response[:ref_num],
165
+ :cvv_result => response[:cvv2_result_code],
166
+ :avs_result => {
167
+ :street_match => response[:avs_result_code].to_s[0,1],
168
+ :postal_match => response[:avs_result_code].to_s[1,1],
169
+ :code => response[:avs_result_code].to_s[2,1]
170
+ }
171
+ )
172
+ end
173
+
174
+ def message_from(response)
175
+ if response[:status] == "Approved"
176
+ return 'Success'
177
+ else
178
+ return 'Unspecified error' if response[:error].blank?
179
+ return response[:error]
180
+ end
181
+ end
182
+
183
+ def post_data(action, parameters = {})
184
+ parameters[:command] = TRANSACTIONS[action]
185
+ parameters[:key] = @options[:login]
186
+ parameters[:software] = 'Active Merchant'
187
+ parameters[:testmode] = @options[:test] ? 1 : 0
188
+
189
+ parameters.collect { |key, value| "UM#{key}=#{CGI.escape(value.to_s)}" }.join("&")
190
+ end
191
+ end
192
+ end
193
+ end
194
+
@@ -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,189 @@
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]
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
+ commit(:purchase, money, form)
47
+ end
48
+
49
+ # Make a credit to a card (Void can only be done from the virtual terminal)
50
+ # Viaklix does not support credits by reference. You must pass in the credit card
51
+ def credit(money, creditcard, options = {})
52
+ if creditcard.is_a?(String)
53
+ raise ArgumentError, "Reference credits are not supported. Please supply the original credit card"
54
+ end
55
+
56
+ form = {}
57
+ add_invoice(form, options)
58
+ add_creditcard(form, creditcard)
59
+ add_address(form, options)
60
+ add_customer_data(form, options)
61
+ commit(:credit, money, form)
62
+ end
63
+
64
+ private
65
+ def add_customer_data(form, options)
66
+ form[:email] = options[:email].to_s.slice(0, 100) unless options[:email].blank?
67
+ form[:customer_code] = options[:customer].to_s.slice(0, 10) unless options[:customer].blank?
68
+ end
69
+
70
+ def add_invoice(form,options)
71
+ form[:invoice_number] = (options[:order_id] || options[:invoice]).to_s.slice(0, 10)
72
+ form[:description] = options[:description].to_s.slice(0, 255)
73
+ end
74
+
75
+ def add_address(form,options)
76
+ billing_address = options[:billing_address] || options[:address]
77
+
78
+ if billing_address
79
+ form[:avs_address] = billing_address[:address1].to_s.slice(0, 30)
80
+ form[:address2] = billing_address[:address2].to_s.slice(0, 30)
81
+ form[:avs_zip] = billing_address[:zip].to_s.slice(0, 10)
82
+ form[:city] = billing_address[:city].to_s.slice(0, 30)
83
+ form[:state] = billing_address[:state].to_s.slice(0, 10)
84
+ form[:company] = billing_address[:company].to_s.slice(0, 50)
85
+ form[:phone] = billing_address[:phone].to_s.slice(0, 20)
86
+ form[:country] = billing_address[:country].to_s.slice(0, 50)
87
+ end
88
+
89
+ if shipping_address = options[:shipping_address]
90
+ first_name, last_name = parse_first_and_last_name(shipping_address[:name])
91
+ form[:ship_to_first_name] = first_name.to_s.slice(0, 20)
92
+ form[:ship_to_last_name] = last_name.to_s.slice(0, 30)
93
+ form[:ship_to_address] = shipping_address[:address1].to_s.slice(0, 30)
94
+ form[:ship_to_city] = shipping_address[:city].to_s.slice(0, 30)
95
+ form[:ship_to_state] = shipping_address[:state].to_s.slice(0, 10)
96
+ form[:ship_to_company] = shipping_address[:company].to_s.slice(0, 50)
97
+ form[:ship_to_country] = shipping_address[:country].to_s.slice(0, 50)
98
+ form[:ship_to_zip] = shipping_address[:zip].to_s.slice(0, 10)
99
+ end
100
+ end
101
+
102
+ def parse_first_and_last_name(value)
103
+ name = value.to_s.split(' ')
104
+
105
+ last_name = name.pop || ''
106
+ first_name = name.join(' ')
107
+ [ first_name, last_name ]
108
+ end
109
+
110
+ def add_creditcard(form, creditcard)
111
+ form[:card_number] = creditcard.number
112
+ form[:exp_date] = expdate(creditcard)
113
+
114
+ if creditcard.verification_value?
115
+ add_verification_value(form, creditcard)
116
+ end
117
+
118
+ form[:first_name] = creditcard.first_name.to_s.slice(0, 20)
119
+ form[:last_name] = creditcard.last_name.to_s.slice(0, 30)
120
+ end
121
+
122
+ def add_verification_value(form, creditcard)
123
+ form[:cvv2cvc2] = creditcard.verification_value
124
+ form[:cvv2] = 'present'
125
+ end
126
+
127
+ def preamble
128
+ result = {
129
+ 'merchant_id' => @options[:login],
130
+ 'pin' => @options[:password],
131
+ 'show_form' => 'false',
132
+ 'test_mode' => test? ? 'TRUE' : 'FALSE',
133
+ 'result_format' => 'ASCII',
134
+ }
135
+
136
+ result['user_id'] = @options[:user] unless @options[:user].blank?
137
+ result
138
+ end
139
+
140
+ def test?
141
+ @options[:test] || super
142
+ end
143
+
144
+ def commit(action, money, parameters)
145
+ parameters[:amount] = amount(money)
146
+ parameters[:transaction_type] = self.actions[action]
147
+
148
+ response = parse( ssl_post(test? ? self.test_url : self.live_url, post_data(parameters)) )
149
+
150
+ Response.new(response['result'] == APPROVED, message_from(response), response,
151
+ :test => @options[:test] || test?,
152
+ :authorization => authorization_from(response),
153
+ :avs_result => { :code => response['avs_response'] },
154
+ :cvv_result => response['cvv2_response']
155
+ )
156
+ end
157
+
158
+ def authorization_from(response)
159
+ response['txn_id']
160
+ end
161
+
162
+ def message_from(response)
163
+ response['result_message']
164
+ end
165
+
166
+ def post_data(parameters)
167
+ result = preamble
168
+ result.merge!(parameters)
169
+ result.collect { |key, value| "ssl_#{key}=#{CGI.escape(value.to_s)}" }.join("&")
170
+ end
171
+
172
+ def expdate(creditcard)
173
+ year = sprintf("%.4i", creditcard.year)
174
+ month = sprintf("%.2i", creditcard.month)
175
+ "#{month}#{year[2..3]}"
176
+ end
177
+
178
+ # Parse the response message
179
+ def parse(msg)
180
+ resp = {}
181
+ msg.split(self.delimiter).collect{|li|
182
+ key, value = li.split("=")
183
+ resp[key.strip.gsub(/^ssl_/, '')] = value.to_s.strip
184
+ }
185
+ resp
186
+ end
187
+ end
188
+ end
189
+ end