activemerchant 1.4.2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +78 -0
  3. data/{CONTRIBUTERS → CONTRIBUTORS} +44 -0
  4. data/{README → README.rdoc} +4 -1
  5. data/Rakefile +7 -13
  6. data/lib/active_merchant.rb +11 -21
  7. data/lib/active_merchant/billing/avs_result.rb +13 -10
  8. data/lib/active_merchant/billing/base.rb +2 -2
  9. data/lib/active_merchant/billing/check.rb +1 -1
  10. data/lib/active_merchant/billing/credit_card_methods.rb +2 -2
  11. data/lib/active_merchant/billing/expiry_date.rb +10 -4
  12. data/lib/active_merchant/billing/gateway.rb +7 -6
  13. data/lib/active_merchant/billing/gateways.rb +18 -3
  14. data/lib/active_merchant/billing/gateways/authorize_net.rb +20 -12
  15. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +40 -6
  16. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb.orig +736 -0
  17. data/lib/active_merchant/billing/gateways/braintree.rb +6 -211
  18. data/lib/active_merchant/billing/gateways/data_cash.rb +5 -7
  19. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  20. data/lib/active_merchant/billing/gateways/eway.rb +7 -2
  21. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  22. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  23. data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
  24. data/lib/active_merchant/billing/gateways/linkpoint.rb +65 -12
  25. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  26. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  27. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +12 -6
  28. data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
  29. data/lib/active_merchant/billing/gateways/pay_secure.rb +1 -1
  30. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +1 -1
  31. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +1 -1
  32. data/lib/active_merchant/billing/gateways/payflow_express.rb +1 -1
  33. data/lib/active_merchant/billing/gateways/payment_express.rb +20 -32
  34. data/lib/active_merchant/billing/gateways/paypal.rb +22 -9
  35. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +2 -1
  36. data/lib/active_merchant/billing/gateways/paypal_ca.rb +1 -1
  37. data/lib/active_merchant/billing/gateways/psl_card.rb +4 -6
  38. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +7 -1
  39. data/lib/active_merchant/billing/gateways/{protx.rb → sage_pay.rb} +60 -35
  40. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  41. data/lib/active_merchant/billing/gateways/secure_pay.rb +1 -1
  42. data/lib/active_merchant/billing/gateways/skip_jack.rb +23 -10
  43. data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
  44. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  45. data/lib/active_merchant/billing/gateways/viaklix.rb +38 -14
  46. data/lib/active_merchant/billing/gateways/wirecard.rb +15 -2
  47. data/lib/active_merchant/billing/integrations.rb +18 -11
  48. data/lib/active_merchant/billing/integrations/bogus.rb +4 -3
  49. data/lib/active_merchant/billing/integrations/chronopay.rb +4 -3
  50. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +3 -1
  51. data/lib/active_merchant/billing/integrations/gestpay.rb +4 -5
  52. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +3 -1
  53. data/lib/active_merchant/billing/integrations/hi_trust.rb +4 -3
  54. data/lib/active_merchant/billing/integrations/nochex.rb +4 -3
  55. data/lib/active_merchant/billing/integrations/nochex/notification.rb +1 -1
  56. data/lib/active_merchant/billing/integrations/paypal.rb +3 -4
  57. data/lib/active_merchant/billing/integrations/paypal/helper.rb +9 -8
  58. data/lib/active_merchant/billing/integrations/quickpay.rb +2 -3
  59. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +1 -1
  60. data/lib/active_merchant/billing/integrations/two_checkout.rb +3 -3
  61. data/lib/active_merchant/lib/connection.rb +170 -0
  62. data/lib/active_merchant/lib/country.rb +4 -1
  63. data/lib/active_merchant/lib/posts_data.rb +22 -84
  64. data/test/fixtures.yml +39 -1
  65. data/test/remote/gateways/remote_authorize_net_cim_test.rb +2 -1
  66. data/test/remote/gateways/remote_authorize_net_test.rb +1 -1
  67. data/test/remote/gateways/remote_beanstream_interac_test.rb +1 -1
  68. data/test/remote/gateways/remote_beanstream_test.rb +1 -1
  69. data/test/remote/gateways/remote_braintree_test.rb +2 -9
  70. data/test/remote/gateways/remote_card_stream_test.rb +1 -1
  71. data/test/remote/gateways/remote_cyber_source_test.rb +1 -1
  72. data/test/remote/gateways/remote_data_cash_test.rb +1 -2
  73. data/test/remote/gateways/remote_efsnet_test.rb +1 -1
  74. data/test/remote/gateways/remote_elavon_test.rb +66 -0
  75. data/test/remote/gateways/remote_eway_test.rb +1 -1
  76. data/test/remote/gateways/remote_exact_test.rb +1 -1
  77. data/test/remote/gateways/remote_first_pay_test.rb +87 -0
  78. data/test/remote/gateways/remote_instapay_test.rb +61 -0
  79. data/test/remote/gateways/remote_jetpay_test.rb +103 -0
  80. data/test/remote/gateways/remote_linkpoint_test.rb +11 -2
  81. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
  82. data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
  83. data/test/remote/gateways/remote_modern_payments_cim_test.rb +1 -1
  84. data/test/remote/gateways/remote_modern_payments_test.rb +23 -9
  85. data/test/remote/gateways/remote_moneris_test.rb +1 -1
  86. data/test/remote/gateways/remote_net_registry_test.rb +1 -1
  87. data/test/remote/gateways/remote_netbilling_test.rb +1 -1
  88. data/test/remote/gateways/remote_ogone_test.rb +115 -0
  89. data/test/remote/gateways/remote_pay_junction_test.rb +1 -1
  90. data/test/remote/gateways/remote_pay_secure_test.rb +1 -1
  91. data/test/remote/gateways/remote_payflow_express_test.rb +1 -1
  92. data/test/remote/gateways/remote_payflow_test.rb +1 -1
  93. data/test/remote/gateways/remote_payflow_uk_test.rb +1 -1
  94. data/test/remote/gateways/remote_payment_express_test.rb +17 -7
  95. data/test/remote/gateways/remote_paypal_express_test.rb +1 -1
  96. data/test/remote/gateways/remote_paypal_test.rb +26 -2
  97. data/test/remote/gateways/remote_plugnpay_test.rb +1 -1
  98. data/test/remote/gateways/remote_psigate_test.rb +1 -1
  99. data/test/remote/gateways/remote_psl_card_test.rb +1 -3
  100. data/test/remote/gateways/remote_quickpay_test.rb +1 -1
  101. data/test/remote/gateways/remote_realex_test.rb +1 -1
  102. data/test/remote/gateways/remote_sage_bankcard_test.rb +1 -1
  103. data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
  104. data/test/remote/gateways/remote_sage_test.rb +1 -1
  105. data/test/remote/gateways/remote_sage_virtual_check_test.rb +1 -1
  106. data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
  107. data/test/remote/gateways/remote_secure_pay_au_test.rb +1 -1
  108. data/test/remote/gateways/remote_secure_pay_tech_test.rb +1 -1
  109. data/test/remote/gateways/remote_secure_pay_test.rb +2 -2
  110. data/test/remote/gateways/remote_skipjack_test.rb +1 -1
  111. data/test/remote/gateways/remote_trans_first_test.rb +1 -1
  112. data/test/remote/gateways/remote_transax_test.rb +112 -0
  113. data/test/remote/gateways/remote_trust_commerce_test.rb +1 -1
  114. data/test/remote/gateways/remote_usa_epay_test.rb +1 -1
  115. data/test/remote/gateways/remote_verifi_test.rb +1 -1
  116. data/test/remote/gateways/remote_viaklix_test.rb +1 -1
  117. data/test/remote/gateways/remote_wirecard_test.rb +34 -0
  118. data/test/remote/integrations/remote_gestpay_integration_test.rb +1 -1
  119. data/test/remote/integrations/remote_paypal_integration_test.rb +1 -1
  120. data/test/test_helper.rb +81 -89
  121. data/test/unit/avs_result_test.rb +1 -1
  122. data/test/unit/base_test.rb +1 -2
  123. data/test/unit/check_test.rb +1 -1
  124. data/test/unit/connection_test.rb +129 -0
  125. data/test/unit/country_code_test.rb +1 -1
  126. data/test/unit/country_test.rb +1 -1
  127. data/test/unit/credit_card_formatting_test.rb +1 -1
  128. data/test/unit/credit_card_methods_test.rb +10 -1
  129. data/test/unit/credit_card_test.rb +1 -1
  130. data/test/unit/cvv_result_test.rb +1 -1
  131. data/test/unit/expiry_date_test.rb +13 -2
  132. data/test/unit/gateways/authorize_net_cim_test.rb +39 -1
  133. data/test/unit/gateways/authorize_net_test.rb +1 -1
  134. data/test/unit/gateways/beanstream_interac_test.rb +1 -1
  135. data/test/unit/gateways/beanstream_test.rb +1 -1
  136. data/test/unit/gateways/bogus_test.rb +1 -1
  137. data/test/unit/gateways/braintree_test.rb +16 -14
  138. data/test/unit/gateways/card_stream_test.rb +1 -1
  139. data/test/unit/gateways/cyber_source_test.rb +1 -1
  140. data/test/unit/gateways/data_cash_test.rb +2 -1
  141. data/test/unit/gateways/efsnet_test.rb +1 -1
  142. data/test/unit/gateways/elavon_test.rb +139 -0
  143. data/test/unit/gateways/eway_test.rb +1 -1
  144. data/test/unit/gateways/exact_test.rb +1 -1
  145. data/test/unit/gateways/first_pay_test.rb +125 -0
  146. data/test/unit/gateways/gateway_test.rb +1 -1
  147. data/test/unit/gateways/instapay_test.rb +102 -0
  148. data/test/unit/gateways/jetpay_test.rb +185 -0
  149. data/test/unit/gateways/linkpoint_test.rb +37 -7
  150. data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
  151. data/test/unit/gateways/merchant_ware_test.rb +188 -0
  152. data/test/unit/gateways/modern_payments_cim_test.rb +25 -34
  153. data/test/unit/gateways/moneris_test.rb +1 -1
  154. data/test/unit/gateways/net_registry_test.rb +1 -1
  155. data/test/unit/gateways/netbilling_test.rb +1 -1
  156. data/test/unit/gateways/ogone_test.rb +319 -0
  157. data/test/unit/gateways/pay_junction_test.rb +1 -1
  158. data/test/unit/gateways/pay_secure_test.rb +1 -1
  159. data/test/unit/gateways/payflow_express_test.rb +2 -2
  160. data/test/unit/gateways/payflow_express_uk_test.rb +73 -1
  161. data/test/unit/gateways/payflow_test.rb +1 -1
  162. data/test/unit/gateways/payflow_uk_test.rb +1 -1
  163. data/test/unit/gateways/payment_express_test.rb +3 -3
  164. data/test/unit/gateways/paypal_express_test.rb +1 -1
  165. data/test/unit/gateways/paypal_test.rb +50 -1
  166. data/test/unit/gateways/plugnpay_test.rb +1 -1
  167. data/test/unit/gateways/psigate_test.rb +1 -1
  168. data/test/unit/gateways/psl_card_test.rb +1 -1
  169. data/test/unit/gateways/quickpay_test.rb +1 -1
  170. data/test/unit/gateways/realex_test.rb +1 -1
  171. data/test/unit/gateways/sage_bankcard_test.rb +36 -2
  172. data/test/unit/gateways/{protx_test.rb → sage_pay_test.rb} +49 -32
  173. data/test/unit/gateways/sage_virtual_check_test.rb +1 -1
  174. data/test/unit/gateways/sallie_mae_test.rb +53 -0
  175. data/test/unit/gateways/secure_pay_au_test.rb +1 -1
  176. data/test/unit/gateways/secure_pay_tech_test.rb +1 -1
  177. data/test/unit/gateways/secure_pay_test.rb +24 -10
  178. data/test/unit/gateways/skip_jack_test.rb +81 -1
  179. data/test/unit/gateways/trans_first_test.rb +1 -1
  180. data/test/unit/gateways/trust_commerce_test.rb +1 -1
  181. data/test/unit/gateways/usa_epay_test.rb +1 -1
  182. data/test/unit/gateways/verifi_test.rb +1 -1
  183. data/test/unit/gateways/viaklix_test.rb +1 -1
  184. data/test/unit/gateways/wirecard_test.rb +19 -1
  185. data/test/unit/generators/test_generator_helper.rb +1 -1
  186. data/test/unit/integrations/action_view_helper_test.rb +1 -1
  187. data/test/unit/integrations/bogus_module_test.rb +1 -1
  188. data/test/unit/integrations/chronopay_module_test.rb +1 -1
  189. data/test/unit/integrations/gestpay_module_test.rb +1 -1
  190. data/test/unit/integrations/helpers/bogus_helper_test.rb +1 -1
  191. data/test/unit/integrations/helpers/chronopay_helper_test.rb +1 -1
  192. data/test/unit/integrations/helpers/gestpay_helper_test.rb +1 -1
  193. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +1 -1
  194. data/test/unit/integrations/helpers/nochex_helper_test.rb +1 -1
  195. data/test/unit/integrations/helpers/paypal_helper_test.rb +11 -2
  196. data/test/unit/integrations/helpers/quickpay_helper_test.rb +1 -1
  197. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +1 -1
  198. data/test/unit/integrations/hi_trust_module_test.rb +1 -1
  199. data/test/unit/integrations/nochex_module_test.rb +1 -1
  200. data/test/unit/integrations/notifications/chronopay_notification_test.rb +1 -1
  201. data/test/unit/integrations/notifications/gestpay_notification_test.rb +1 -1
  202. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +1 -1
  203. data/test/unit/integrations/notifications/nochex_notification_test.rb +2 -2
  204. data/test/unit/integrations/notifications/notification_test.rb +1 -1
  205. data/test/unit/integrations/notifications/paypal_notification_test.rb +1 -1
  206. data/test/unit/integrations/notifications/quickpay_notification_test.rb +1 -1
  207. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +1 -1
  208. data/test/unit/integrations/paypal_module_test.rb +1 -1
  209. data/test/unit/integrations/quickpay_module_test.rb +1 -1
  210. data/test/unit/integrations/returns/chronopay_return_test.rb +1 -1
  211. data/test/unit/integrations/returns/gestpay_return_test.rb +1 -1
  212. data/test/unit/integrations/returns/hi_trust_return_test.rb +1 -1
  213. data/test/unit/integrations/returns/nochex_return_test.rb +1 -1
  214. data/test/unit/integrations/returns/paypal_return_test.rb +1 -1
  215. data/test/unit/integrations/returns/return_test.rb +1 -1
  216. data/test/unit/integrations/returns/two_checkout_return_test.rb +1 -1
  217. data/test/unit/integrations/two_checkout_module_test.rb +1 -1
  218. data/test/unit/post_data_test.rb +1 -1
  219. data/test/unit/posts_data_test.rb +14 -66
  220. data/test/unit/response_test.rb +1 -1
  221. data/test/unit/utils_test.rb +1 -1
  222. data/test/unit/validateable_test.rb +1 -1
  223. metadata +41 -45
  224. metadata.gz.sig +0 -0
  225. data/test/extra/binding_of_caller.rb +0 -80
  226. data/test/extra/breakpoint.rb +0 -547
  227. data/test/remote/gateways/remote_protx_test.rb +0 -184
@@ -79,7 +79,7 @@ module ActiveMerchant #:nodoc:
79
79
  #
80
80
  # ==== Parameters
81
81
  #
82
- # * <tt>money</tt> -- The amount to be authorized. Either an Integer value in cents or a Money object.
82
+ # * <tt>money</tt> -- The amount to be authorized as an Integer value in cents.
83
83
  # * <tt>creditcard</tt> -- The CreditCard details for the transaction.
84
84
  # * <tt>options</tt> -- A hash of optional parameters.
85
85
  def authorize(money, creditcard, options = {})
@@ -97,7 +97,7 @@ module ActiveMerchant #:nodoc:
97
97
  #
98
98
  # ==== Parameters
99
99
  #
100
- # * <tt>money</tt> -- The amount to be purchased. Either an Integer value in cents or a Money object.
100
+ # * <tt>money</tt> -- The amount to be purchased as an Integer value in cents.
101
101
  # * <tt>creditcard</tt> -- The CreditCard details for the transaction.
102
102
  # * <tt>options</tt> -- A hash of optional parameters.
103
103
  def purchase(money, creditcard, options = {})
@@ -115,7 +115,7 @@ module ActiveMerchant #:nodoc:
115
115
  #
116
116
  # ==== Parameters
117
117
  #
118
- # * <tt>money</tt> -- The amount to be captured. Either an Integer value in cents or a Money object.
118
+ # * <tt>money</tt> -- The amount to be captured as an Integer value in cents.
119
119
  # * <tt>authorization</tt> -- The authorization returned from the previous authorize request.
120
120
  def capture(money, authorization, options = {})
121
121
  post = {:trans_id => authorization}
@@ -140,7 +140,7 @@ module ActiveMerchant #:nodoc:
140
140
  #
141
141
  # ==== Parameters
142
142
  #
143
- # * <tt>money</tt> -- The amount to be credited to the customer. Either an Integer value in cents or a Money object.
143
+ # * <tt>money</tt> -- The amount to be credited to the customer as an Integer value in cents.
144
144
  # * <tt>identification</tt> -- The ID of the original transaction against which the credit is being issued.
145
145
  # * <tt>options</tt> -- A hash of parameters.
146
146
  #
@@ -164,8 +164,7 @@ module ActiveMerchant #:nodoc:
164
164
  #
165
165
  # ==== Parameters
166
166
  #
167
- # * <tt>money</tt> -- The amount to be charged to the customer at each interval. Either an Integer value in cents or
168
- # a Money object.
167
+ # * <tt>money</tt> -- The amount to be charged to the customer at each interval as an Integer value in cents.
169
168
  # * <tt>creditcard</tt> -- The CreditCard details for the transaction.
170
169
  # * <tt>options</tt> -- A hash of parameters.
171
170
  #
@@ -173,10 +172,10 @@ module ActiveMerchant #:nodoc:
173
172
  #
174
173
  # * <tt>:interval</tt> -- A hash containing information about the interval of time between payments. Must
175
174
  # contain the keys <tt>:length</tt> and <tt>:unit</tt>. <tt>:unit</tt> can be either <tt>:months</tt> or <tt>:days</tt>.
176
- # If <tt>:unit</tt> is <tt>:months</tt> then <tt>:interval</tt> must be an integer between 1 and 12 inclusive.
177
- # If <tt>:unit</tt> is <tt>:days</tt> then <tt>:interval</tt> must be an integer between 7 and 365 inclusive.
175
+ # If <tt>:unit</tt> is <tt>:months</tt> then <tt>:length</tt> must be an integer between 1 and 12 inclusive.
176
+ # If <tt>:unit</tt> is <tt>:days</tt> then <tt>:length</tt> must be an integer between 7 and 365 inclusive.
178
177
  # For example, to charge the customer once every three months the hash would be
179
- # +{ :unit => :months, :interval => 3 }+ (REQUIRED)
178
+ # +:interval => { :unit => :months, :length => 3 }+ (REQUIRED)
180
179
  # * <tt>:duration</tt> -- A hash containing keys for the <tt>:start_date</tt> the subscription begins (also the date the
181
180
  # initial billing occurs) and the total number of billing <tt>:occurences</tt> or payments for the subscription. (REQUIRED)
182
181
  def recurring(money, creditcard, options={})
@@ -334,7 +333,6 @@ module ActiveMerchant #:nodoc:
334
333
  end
335
334
 
336
335
  def add_address(post, options)
337
-
338
336
  if address = options[:billing_address] || options[:address]
339
337
  post[:address] = address[:address1].to_s
340
338
  post[:company] = address[:company].to_s
@@ -344,6 +342,18 @@ module ActiveMerchant #:nodoc:
344
342
  post[:country] = address[:country].to_s
345
343
  post[:state] = address[:state].blank? ? 'n/a' : address[:state]
346
344
  end
345
+
346
+ if address = options[:shipping_address]
347
+ post[:ship_to_first_name] = address[:first_name].to_s
348
+ post[:ship_to_last_name] = address[:last_name].to_s
349
+ post[:ship_to_address] = address[:address1].to_s
350
+ post[:ship_to_company] = address[:company].to_s
351
+ post[:ship_to_phone] = address[:phone].to_s
352
+ post[:ship_to_zip] = address[:zip].to_s
353
+ post[:ship_to_city] = address[:city].to_s
354
+ post[:ship_to_country] = address[:country].to_s
355
+ post[:ship_to_state] = address[:state].blank? ? 'n/a' : address[:state]
356
+ end
347
357
  end
348
358
 
349
359
  # Make a ruby type out of the response string
@@ -640,7 +650,5 @@ module ActiveMerchant #:nodoc:
640
650
  end
641
651
  end
642
652
  end
643
-
644
- AuthorizedNetGateway = AuthorizeNetGateway
645
653
  end
646
654
  end
@@ -458,6 +458,7 @@ module ActiveMerchant #:nodoc:
458
458
 
459
459
  def build_create_customer_profile_transaction_request(xml, options)
460
460
  add_transaction(xml, options[:transaction])
461
+ xml.tag!('extraOptions', "x_test_request=TRUE") if @options[:test]
461
462
 
462
463
  xml.target!
463
464
  end
@@ -583,6 +584,7 @@ module ActiveMerchant #:nodoc:
583
584
  xml.tag!('cardNumber', credit_card.number)
584
585
  # The expiration date of the credit card used for the subscription
585
586
  xml.tag!('expirationDate', expdate(credit_card))
587
+ xml.tag!('cardCode', credit_card.verification_value) if credit_card.verification_value?
586
588
  end
587
589
  end
588
590
 
@@ -652,14 +654,46 @@ module ActiveMerchant #:nodoc:
652
654
 
653
655
  direct_response.merge(
654
656
  {
655
- 'approval_code' => direct_response_fields[4],
657
+ 'response_code' => direct_response_fields[0],
658
+ 'response_subcode' => direct_response_fields[1],
659
+ 'response_reason_code' => direct_response_fields[2],
656
660
  'message' => direct_response_fields[3],
657
- 'transaction_type' => direct_response_fields[11],
658
- 'amount' => direct_response_fields[9],
661
+ 'approval_code' => direct_response_fields[4],
662
+ 'avs_response' => direct_response_fields[5],
663
+ 'transaction_id' => direct_response_fields[6],
659
664
  'invoice_number' => direct_response_fields[7],
660
665
  'order_description' => direct_response_fields[8],
661
- 'purchase_order_number' => direct_response_fields[36]
662
- # TODO fill in other fields
666
+ 'amount' => direct_response_fields[9],
667
+ 'method' => direct_response_fields[10],
668
+ 'transaction_type' => direct_response_fields[11],
669
+ 'customer_id' => direct_response_fields[12],
670
+ 'first_name' => direct_response_fields[13],
671
+ 'last_name' => direct_response_fields[14],
672
+ 'company' => direct_response_fields[15],
673
+ 'address' => direct_response_fields[16],
674
+ 'city' => direct_response_fields[17],
675
+ 'state' => direct_response_fields[18],
676
+ 'zip_code' => direct_response_fields[19],
677
+ 'country' => direct_response_fields[20],
678
+ 'phone' => direct_response_fields[21],
679
+ 'fax' => direct_response_fields[22],
680
+ 'email_address' => direct_response_fields[23],
681
+ 'ship_to_first_name' => direct_response_fields[24],
682
+ 'ship_to_last_name' => direct_response_fields[25],
683
+ 'ship_to_company' => direct_response_fields[26],
684
+ 'ship_to_address' => direct_response_fields[27],
685
+ 'ship_to_city' => direct_response_fields[28],
686
+ 'ship_to_state' => direct_response_fields[29],
687
+ 'ship_to_zip_code' => direct_response_fields[30],
688
+ 'ship_to_country' => direct_response_fields[31],
689
+ 'tax' => direct_response_fields[32],
690
+ 'duty' => direct_response_fields[33],
691
+ 'freight' => direct_response_fields[34],
692
+ 'tax_exempt' => direct_response_fields[35],
693
+ 'purchase_order_number' => direct_response_fields[36],
694
+ 'md5_hash' => direct_response_fields[37],
695
+ 'card_code' => direct_response_fields[38],
696
+ 'cardholder_authentication_verification_response' => direct_response_fields[39]
663
697
  }
664
698
  )
665
699
  end
@@ -699,4 +733,4 @@ module ActiveMerchant #:nodoc:
699
733
  end
700
734
  end
701
735
  end
702
- end
736
+ end
@@ -0,0 +1,736 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ # ==== Customer Information Manager (CIM)
4
+ #
5
+ # The Authorize.Net Customer Information Manager (CIM) is an optional additional service that allows you to store sensitive payment information on
6
+ # Authorize.Net's servers, simplifying payments for returning customers and recurring transactions. It can also help with Payment Card Industry (PCI)
7
+ # Data Security Standard compliance, since customer data is no longer stored locally.
8
+ #
9
+ # To use the AuthorizeNetCimGateway CIM must be enabled for your account.
10
+ #
11
+ # Information about CIM is available on the {Authorize.Net website}[http://www.authorize.net/solutions/merchantsolutions/merchantservices/cim/].
12
+ # Information about the CIM API is available at the {Authorize.Net Integration Center}[http://developer.authorize.net/]
13
+ #
14
+ # ==== Login and Password
15
+ #
16
+ # The login and password are not the username and password you use to
17
+ # login to the Authorize.Net Merchant Interface. Instead, you will
18
+ # use the API Login ID as the login and Transaction Key as the
19
+ # password.
20
+ #
21
+ # ==== How to Get Your API Login ID and Transaction Key
22
+ #
23
+ # 1. Log into the Merchant Interface
24
+ # 2. Select Settings from the Main Menu
25
+ # 3. Click on API Login ID and Transaction Key in the Security section
26
+ # 4. Type in the answer to the secret question configured on setup
27
+ # 5. Click Submit
28
+ class AuthorizeNetCimGateway < Gateway
29
+
30
+ class_inheritable_accessor :test_url, :live_url
31
+
32
+ self.test_url = 'https://apitest.authorize.net/xml/v1/request.api'
33
+ self.live_url = 'https://api.authorize.net/xml/v1/request.api'
34
+
35
+ AUTHORIZE_NET_CIM_NAMESPACE = 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'
36
+
37
+ CIM_ACTIONS = {
38
+ :create_customer_profile => 'createCustomerProfile',
39
+ :create_customer_payment_profile => 'createCustomerPaymentProfile',
40
+ :create_customer_shipping_address => 'createCustomerShippingAddress',
41
+ :get_customer_profile => 'getCustomerProfile',
42
+ :get_customer_payment_profile => 'getCustomerPaymentProfile',
43
+ :get_customer_shipping_address => 'getCustomerShippingAddress',
44
+ :delete_customer_profile => 'deleteCustomerProfile',
45
+ :delete_customer_payment_profile => 'deleteCustomerPaymentProfile',
46
+ :delete_customer_shipping_address => 'deleteCustomerShippingAddress',
47
+ :update_customer_profile => 'updateCustomerProfile',
48
+ :update_customer_payment_profile => 'updateCustomerPaymentProfile',
49
+ :update_customer_shipping_address => 'updateCustomerShippingAddress',
50
+ :create_customer_profile_transaction => 'createCustomerProfileTransaction',
51
+ :validate_customer_payment_profile => 'validateCustomerPaymentProfile'
52
+ }
53
+
54
+ CIM_TRANSACTION_TYPES = {
55
+ :auth_capture => 'profileTransAuthCapture',
56
+ :auth_only => 'profileTransAuthOnly',
57
+ :capture_only => 'profileTransCaptureOnly'
58
+ }
59
+
60
+ CIM_VALIDATION_MODES = {
61
+ :none => 'none',
62
+ :test => 'testMode',
63
+ :live => 'liveMode'
64
+ }
65
+
66
+ BANK_ACCOUNT_TYPES = {
67
+ :checking => 'checking',
68
+ :savings => 'savings',
69
+ :business_checking => 'businessChecking'
70
+ }
71
+
72
+ ECHECK_TYPES = {
73
+ :ccd => 'CCD',
74
+ :ppd => 'PPD'
75
+ }
76
+
77
+ self.homepage_url = 'http://www.authorize.net/'
78
+ self.display_name = 'Authorize.Net CIM'
79
+ self.supported_countries = ['US']
80
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
81
+
82
+ # Creates a new AuthorizeNetCimGateway
83
+ #
84
+ # The gateway requires that a valid API Login ID and Transaction Key be passed
85
+ # in the +options+ hash.
86
+ #
87
+ # ==== Options
88
+ #
89
+ # * <tt>:login</tt> -- The Authorize.Net API Login ID (REQUIRED)
90
+ # * <tt>:password</tt> -- The Authorize.Net Transaction Key. (REQUIRED)
91
+ # * <tt>:test</tt> -- +true+ or +false+. If true, perform transactions against the test server.
92
+ # Otherwise, perform transactions against the production server.
93
+ def initialize(options = {})
94
+ requires!(options, :login, :password)
95
+ @options = options
96
+ super
97
+ end
98
+
99
+ # Creates a new customer profile along with any customer payment profiles and customer shipping addresses
100
+ # for the customer profile.
101
+ #
102
+ # Returns a Response with the Customer Profile ID of the new customer profile in the authorization field.
103
+ # It is *CRITICAL* that you save this ID. There is no way to retrieve this through the API. You will not
104
+ # be able to create another Customer Profile with the same information.
105
+ #
106
+ # ==== Options
107
+ #
108
+ # TODO
109
+ def create_customer_profile(options)
110
+ # TODO Add requires
111
+ request = build_request(:create_customer_profile, options)
112
+ commit(:create_customer_profile, request)
113
+ end
114
+
115
+ # Creates a new customer payment profile for an existing customer profile.
116
+ #
117
+ # ==== Options
118
+ #
119
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer the payment profile will be added to. (REQUIRED)
120
+ # * <tt>:payment_profile</tt> -- A hash containing the elements of the new payment profile (REQUIRED)
121
+ #
122
+ # ==== Payment Profile
123
+ #
124
+ # * <tt>:payment</tt> -- A hash containing information on payment. Either :credit_card or :bank_account (REQUIRED)
125
+ def create_customer_payment_profile(options)
126
+ requires!(options, :customer_profile_id)
127
+ requires!(options, :payment_profile)
128
+ requires!(options[:payment_profile], :payment)
129
+
130
+ request = build_request(:create_customer_payment_profile, options)
131
+ commit(:create_customer_payment_profile, request)
132
+ end
133
+
134
+ # Creates a new customer shipping address for an existing customer profile.
135
+ #
136
+ # ==== Options
137
+ #
138
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer the payment profile will be added to. (REQUIRED)
139
+ # * <tt>:address</tt> -- A hash containing the elements of the shipping address (REQUIRED)
140
+ def create_customer_shipping_address(options)
141
+ requires!(options, :customer_profile_id)
142
+ requires!(options, :address)
143
+
144
+ request = build_request(:create_customer_shipping_address, options)
145
+ commit(:create_customer_shipping_address, request)
146
+ end
147
+
148
+ # Deletes an existing customer profile along with all associated customer payment profiles and customer shipping addresses.
149
+ #
150
+ # ==== Options
151
+ #
152
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer to be deleted. (REQUIRED)
153
+ def delete_customer_profile(options)
154
+ requires!(options, :customer_profile_id)
155
+
156
+ request = build_request(:delete_customer_profile, options)
157
+ commit(:delete_customer_profile, request)
158
+ end
159
+
160
+ # Deletes a customer payment profile from an existing customer profile.
161
+ #
162
+ # ==== Options
163
+ #
164
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be deleted. (REQUIRED)
165
+ # * <tt>:customer_payment_profile_id</tt> -- The Payment Profile ID of the payment profile to be deleted. (REQUIRED)
166
+ def delete_customer_payment_profile(options)
167
+ requires!(options, :customer_profile_id)
168
+ requires!(options, :customer_payment_profile_id)
169
+
170
+ request = build_request(:delete_customer_payment_profile, options)
171
+ commit(:delete_customer_payment_profile, request)
172
+ end
173
+
174
+ # Deletes a customer shipping address from an existing customer profile.
175
+ #
176
+ # ==== Options
177
+ #
178
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be deleted. (REQUIRED)
179
+ # * <tt>:customer_address_id</tt> -- The Shipping Address ID of the shipping address to be deleted. (REQUIRED)
180
+ def delete_customer_shipping_address(options)
181
+ requires!(options, :customer_profile_id)
182
+ requires!(options, :customer_address_id)
183
+
184
+ request = build_request(:delete_customer_shipping_address, options)
185
+ commit(:delete_customer_shipping_address, request)
186
+ end
187
+
188
+ # Retrieves an existing customer profile along with all the associated customer payment profiles and customer shipping addresses.
189
+ #
190
+ # Returns a Response whose params hash contains all the profile information.
191
+ #
192
+ # ==== Options
193
+ #
194
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer to retrieve. (REQUIRED)
195
+ def get_customer_profile(options)
196
+ requires!(options, :customer_profile_id)
197
+
198
+ request = build_request(:get_customer_profile, options)
199
+ commit(:get_customer_profile, request)
200
+ end
201
+
202
+ # Retrieve a customer payment profile for an existing customer profile.
203
+ #
204
+ # Returns a Response whose params hash contains all the payment profile information. Sensitive information such as credit card
205
+ # numbers will be masked.
206
+ #
207
+ # ==== Options
208
+ #
209
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be retrieved. (REQUIRED)
210
+ # * <tt>:customer_payment_profile_id</tt> -- The Payment Profile ID of the payment profile to be retrieved. (REQUIRED)
211
+ def get_customer_payment_profile(options)
212
+ requires!(options, :customer_profile_id)
213
+ requires!(options, :customer_payment_profile_id)
214
+
215
+ request = build_request(:get_customer_payment_profile, options)
216
+ commit(:get_customer_payment_profile, request)
217
+ end
218
+
219
+ # Retrieve a customer shipping address for an existing customer profile.
220
+ #
221
+ # Returns a Response whose params hash contains all the shipping address information.
222
+ #
223
+ # ==== Options
224
+ #
225
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be retrieved. (REQUIRED)
226
+ # * <tt>:customer_address_id</tt> -- The Shipping Address ID of the shipping address to be retrieved. (REQUIRED)
227
+ def get_customer_shipping_address(options)
228
+ requires!(options, :customer_profile_id)
229
+ requires!(options, :customer_address_id)
230
+
231
+ request = build_request(:get_customer_shipping_address, options)
232
+ commit(:get_customer_shipping_address, request)
233
+ end
234
+
235
+ # Updates an existing customer profile.
236
+ #
237
+ # Warning: if you do not provide a parameter in the <tt>:payment_profile</tt> hash, it is automatically set to nil at
238
+ # Authorize.Net. You will most likely want to first get the profile hash using get_customer_profile and then only change the
239
+ # elements you wish to change.
240
+ #
241
+ # ==== Options
242
+ #
243
+ # * <tt>:profile</tt> -- A hash containing the values the Customer Profile should be updated to. (REQUIRED)
244
+ #
245
+ # ==== Profile
246
+ #
247
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer profile to update. (REQUIRED)
248
+ def update_customer_profile(options)
249
+ requires!(options, :profile)
250
+ requires!(options[:profile], :customer_profile_id)
251
+
252
+ request = build_request(:update_customer_profile, options)
253
+ commit(:update_customer_profile, request)
254
+ end
255
+
256
+ # Updates a customer payment profile for an existing customer profile.
257
+ #
258
+ # Warning: if you do not provide a parameter in the <tt>:payment_profile</tt> hash, it is automatically set to nil at
259
+ # Authorize.Net. You will most likely want to first get the profile hash using get_customer_payment_profile and then only
260
+ # change the elements you wish to change.
261
+ #
262
+ # ==== Options
263
+ #
264
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be updated. (REQUIRED)
265
+ # * <tt>:payment_profile</tt> -- A hash containing the values the Customer Payment Profile should be updated to. (REQUIRED)
266
+ #
267
+ # ==== Payment Profile
268
+ #
269
+ # * <tt>:customer_payment_profile_id</tt> -- The Customer Payment Profile ID of the Customer Payment Profile to update. (REQUIRED)
270
+ def update_customer_payment_profile(options)
271
+ requires!(options, :customer_profile_id, :payment_profile)
272
+ requires!(options[:payment_profile], :customer_payment_profile_id)
273
+
274
+ request = build_request(:update_customer_payment_profile, options)
275
+ commit(:update_customer_payment_profile, request)
276
+ end
277
+
278
+ # Updates a customer shipping address for an existing customer profile.
279
+ #
280
+ # Warning: if you do not provide a parameter in the <tt>:address</tt> hash, it is automatically set to nil at
281
+ # Authorize.Net. You will most likely want to first get the profile hash using get_customer_shipping_address and then only
282
+ # change the elements you wish to change.
283
+ #
284
+ # ==== Options
285
+ #
286
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer with the payment profile to be updated. (REQUIRED)
287
+ # * <tt>:address</tt> -- A hash containing the values the Customer Shipping Address should be updated to. (REQUIRED)
288
+ #
289
+ # ==== Address
290
+ #
291
+ # * <tt>:customer_address_id</tt> -- The Customer Address ID of the Customer Payment Profile to update. (REQUIRED)
292
+ def update_customer_shipping_address(options)
293
+ requires!(options, :customer_profile_id, :address)
294
+ requires!(options[:address], :customer_address_id)
295
+
296
+ request = build_request(:update_customer_shipping_address, options)
297
+ commit(:update_customer_shipping_address, request)
298
+ end
299
+
300
+ # Creates a new payment transaction from an existing customer profile
301
+ #
302
+ # This is what is used to charge a customer whose information you have stored in a Customer Profile.
303
+ #
304
+ # Returns a Response object that contains the result of the transaction in <tt>params['direct_response']</tt>
305
+ #
306
+ # ==== Options
307
+ #
308
+ # * <tt>:transaction</tt> -- A hash containing information on the transaction that is being requested. (REQUIRED)
309
+ #
310
+ # ==== Transaction
311
+ #
312
+ # * <tt>:type</tt> -- The type of transaction. Can be either <tt>:auth_only</tt>, <tt>:capture_only</tt>, or <tt>:auth_capture</tt>. (REQUIRED)
313
+ # * <tt>:amount</tt> -- The amount for the tranaction. Formatted with a decimal. For example "4.95" (REQUIRED)
314
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer to use in this transaction. (REQUIRED)
315
+ # * <tt>:customer_payment_profile_id</tt> -- The Customer Payment Profile ID of the Customer Payment Profile to use in this transaction. (REQUIRED)
316
+ def create_customer_profile_transaction(options)
317
+ requires!(options, :transaction)
318
+ requires!(options[:transaction], :type, :amount, :customer_profile_id, :customer_payment_profile_id)
319
+
320
+ request = build_request(:create_customer_profile_transaction, options)
321
+ commit(:create_customer_profile_transaction, request)
322
+ end
323
+
324
+ # Verifies an existing customer payment profile by generating a test transaction
325
+ #
326
+ # Returns a Response object that contains the result of the transaction in <tt>params['direct_response']</tt>
327
+ #
328
+ # ==== Options
329
+ #
330
+ # * <tt>:customer_profile_id</tt> -- The Customer Profile ID of the customer to use in this transaction. (REQUIRED)
331
+ # * <tt>:customer_payment_profile_id</tt> -- The Customer Payment Profile ID of the Customer Payment Profile to be verified. (REQUIRED)
332
+ # * <tt>:customer_address_id</tt> -- The Customer Address ID of the Customer Shipping Address to be verified.
333
+ # * <tt>:validation_mode</tt> -- <tt>:live</tt> or <tt>:test</tt> In Test Mode, only field validation is performed.
334
+ # In Live Mode, a transaction is generated and submitted to the processor with the amount of $0.01. If successful, the transaction is immediately voided. (REQUIRED)
335
+ def validate_customer_payment_profile(options)
336
+ requires!(options, :customer_profile_id, :customer_payment_profile_id, :validation_mode)
337
+
338
+ request = build_request(:validate_customer_payment_profile, options)
339
+ commit(:validate_customer_payment_profile, request)
340
+ end
341
+
342
+ private
343
+
344
+ def expdate(credit_card)
345
+ sprintf('%04d-%02d', credit_card.year, credit_card.month)
346
+ end
347
+
348
+ def build_request(action, options = {})
349
+ unless CIM_ACTIONS.include?(action)
350
+ raise StandardError, "Invalid Customer Information Manager Action: #{action}"
351
+ end
352
+
353
+ xml = Builder::XmlMarkup.new(:indent => 2)
354
+ xml.instruct!(:xml, :version => '1.0', :encoding => 'utf-8')
355
+ xml.tag!("#{CIM_ACTIONS[action]}Request", :xmlns => AUTHORIZE_NET_CIM_NAMESPACE) do
356
+ add_merchant_authentication(xml)
357
+ # Merchant-assigned reference ID for the request
358
+ xml.tag!('refId', options[:ref_id]) if options[:ref_id]
359
+ send("build_#{action}_request", xml, options)
360
+ end
361
+ end
362
+
363
+ # Contains the merchant’s payment gateway account authentication information
364
+ def add_merchant_authentication(xml)
365
+ xml.tag!('merchantAuthentication') do
366
+ xml.tag!('name', @options[:login])
367
+ xml.tag!('transactionKey', @options[:password])
368
+ end
369
+ end
370
+
371
+ def build_create_customer_profile_request(xml, options)
372
+ add_profile(xml, options[:profile])
373
+
374
+ xml.target!
375
+ end
376
+
377
+ def build_create_customer_payment_profile_request(xml, options)
378
+ xml.tag!('customerProfileId', options[:customer_profile_id])
379
+
380
+ xml.tag!('paymentProfile') do
381
+ add_payment_profile(xml, options[:payment_profile])
382
+ end
383
+
384
+ xml.tag!('validationMode', CIM_VALIDATION_MODES[options[:validation_mode]]) if options[:validation_mode]
385
+
386
+ xml.target!
387
+ end
388
+
389
+ def build_create_customer_shipping_address_request(xml, options)
390
+ xml.tag!('customerProfileId', options[:customer_profile_id])
391
+
392
+ xml.tag!('address') do
393
+ add_address(xml, options[:address])
394
+ end
395
+
396
+ xml.target!
397
+ end
398
+
399
+ def build_delete_customer_profile_request(xml, options)
400
+ xml.tag!('customerProfileId', options[:customer_profile_id])
401
+ xml.target!
402
+ end
403
+
404
+ def build_delete_customer_payment_profile_request(xml, options)
405
+ xml.tag!('customerProfileId', options[:customer_profile_id])
406
+ xml.tag!('customerPaymentProfileId', options[:customer_payment_profile_id])
407
+ xml.target!
408
+ end
409
+
410
+ def build_delete_customer_shipping_address_request(xml, options)
411
+ xml.tag!('customerProfileId', options[:customer_profile_id])
412
+ xml.tag!('customerAddressId', options[:customer_address_id])
413
+ xml.target!
414
+ end
415
+
416
+ def build_get_customer_profile_request(xml, options)
417
+ xml.tag!('customerProfileId', options[:customer_profile_id])
418
+ xml.target!
419
+ end
420
+
421
+ def build_get_customer_payment_profile_request(xml, options)
422
+ xml.tag!('customerProfileId', options[:customer_profile_id])
423
+ xml.tag!('customerPaymentProfileId', options[:customer_payment_profile_id])
424
+ xml.target!
425
+ end
426
+
427
+ def build_get_customer_shipping_address_request(xml, options)
428
+ xml.tag!('customerProfileId', options[:customer_profile_id])
429
+ xml.tag!('customerAddressId', options[:customer_address_id])
430
+ xml.target!
431
+ end
432
+
433
+ def build_update_customer_profile_request(xml, options)
434
+ add_profile(xml, options[:profile], true)
435
+
436
+ xml.target!
437
+ end
438
+
439
+ def build_update_customer_payment_profile_request(xml, options)
440
+ xml.tag!('customerProfileId', options[:customer_profile_id])
441
+
442
+ xml.tag!('paymentProfile') do
443
+ add_payment_profile(xml, options[:payment_profile])
444
+ end
445
+
446
+ xml.target!
447
+ end
448
+
449
+ def build_update_customer_shipping_address_request(xml, options)
450
+ xml.tag!('customerProfileId', options[:customer_profile_id])
451
+
452
+ xml.tag!('address') do
453
+ add_address(xml, options[:address])
454
+ end
455
+
456
+ xml.target!
457
+ end
458
+
459
+ def build_create_customer_profile_transaction_request(xml, options)
460
+ add_transaction(xml, options[:transaction])
461
+ xml.tag!('extraOptions', "x_test_request=TRUE") if @options[:test]
462
+
463
+ xml.target!
464
+ end
465
+
466
+ def build_validate_customer_payment_profile_request(xml, options)
467
+ xml.tag!('customerProfileId', options[:customer_profile_id])
468
+ xml.tag!('customerPaymentProfileId', options[:customer_payment_profile_id])
469
+ xml.tag!('customerShippingAddressId', options[:customer_address_id]) if options[:customer_address_id]
470
+ xml.tag!('validationMode', CIM_VALIDATION_MODES[options[:validation_mode]]) if options[:validation_mode]
471
+
472
+ xml.target!
473
+ end
474
+
475
+ # :merchant_customer_id (Optional)
476
+ # :description (Optional)
477
+ # :email (Optional)
478
+ # :payment_profiles (Optional)
479
+ def add_profile(xml, profile, update = false)
480
+ xml.tag!('profile') do
481
+ # Merchant assigned ID for the customer. Up to 20 characters. (optional)
482
+ xml.tag!('merchantCustomerId', profile[:merchant_customer_id]) if profile[:merchant_customer_id]
483
+ # Description of the customer. Up to 255 Characters (optional)
484
+ xml.tag!('description', profile[:description]) if profile[:description]
485
+ # Email Address for the customer. Up to 255 Characters (optional)
486
+ xml.tag!('email', profile[:email]) if profile[:email]
487
+
488
+ if update
489
+ xml.tag!('customerProfileId', profile[:customer_profile_id])
490
+ else
491
+ add_payment_profiles(xml, profile[:payment_profiles]) if profile[:payment_profiles]
492
+ add_ship_to_list(xml, profile[:ship_to_list]) if profile[:ship_to_list]
493
+ end
494
+ end
495
+ end
496
+
497
+ def add_transaction(xml, transaction)
498
+ unless CIM_TRANSACTION_TYPES.include?(transaction[:type])
499
+ raise StandardError, "Invalid Customer Information Manager Transaction Type: #{transaction[:type]}"
500
+ end
501
+
502
+ xml.tag!('transaction') do
503
+ xml.tag!(CIM_TRANSACTION_TYPES[transaction[:type]]) do
504
+ # The amount to be billed to the customer
505
+ xml.tag!('amount', transaction[:amount])
506
+ xml.tag!('customerProfileId', transaction[:customer_profile_id])
507
+ xml.tag!('customerPaymentProfileId', transaction[:customer_payment_profile_id])
508
+ xml.tag!('approvalCode', transaction[:approval_code]) if transaction[:type] == :capture_only
509
+ add_order(xml, transaction[:order]) if transaction[:order]
510
+ end
511
+ end
512
+ end
513
+
514
+ def add_order(xml, order)
515
+ xml.tag!('order') do
516
+ xml.tag!('invoiceNumber', order[:invoice_number]) if order[:invoice_number]
517
+ xml.tag!('description', order[:description]) if order[:description]
518
+ xml.tag!('purchaseOrderNumber', order[:purchase_order_number]) if order[:purchase_order_number]
519
+ end
520
+ end
521
+
522
+ def add_payment_profiles(xml, payment_profiles)
523
+ xml.tag!('paymentProfiles') do
524
+ add_payment_profile(xml, payment_profiles)
525
+ end
526
+ end
527
+
528
+ # :customer_type => 'individual or business', # Optional
529
+ # :bill_to => @address,
530
+ # :payment => @payment
531
+ def add_payment_profile(xml, payment_profile)
532
+ # 'individual' or 'business' (optional)
533
+ xml.tag!('customerType', payment_profile[:customer_type]) if payment_profile[:customer_type]
534
+
535
+ if payment_profile[:bill_to]
536
+ xml.tag!('billTo') do
537
+ add_address(xml, payment_profile[:bill_to])
538
+ end
539
+ end
540
+
541
+ if payment_profile[:payment]
542
+ xml.tag!('payment') do
543
+ add_credit_card(xml, payment_profile[:payment][:credit_card]) if payment_profile[:payment].has_key?(:credit_card)
544
+ add_bank_account(xml, payment_profile[:payment][:bank_account]) if payment_profile[:payment].has_key?(:bank_account)
545
+ add_drivers_license(xml, payment_profile[:payment][:drivers_license]) if payment_profile[:payment].has_key?(:drivers_license)
546
+ # This element is only required for Wells Fargo SecureSource eCheck.Net merchants
547
+ # The customer's Social Security Number or Tax ID
548
+ xml.tag!('taxId', payment_profile[:payment]) if payment_profile[:payment].has_key?(:tax_id)
549
+ end
550
+ end
551
+
552
+ xml.tag!('customerPaymentProfileId', payment_profile[:customer_payment_profile_id]) if payment_profile[:customer_payment_profile_id]
553
+ end
554
+
555
+ def add_ship_to_list(xml, ship_to_list)
556
+ xml.tag!('shipToList') do
557
+ add_address(xml, ship_to_list)
558
+ end
559
+ end
560
+
561
+ def add_address(xml, address)
562
+ xml.tag!('firstName', address[:first_name])
563
+ xml.tag!('lastName', address[:last_name])
564
+ xml.tag!('company', address[:company])
565
+ xml.tag!('address', address[:address1]) if address[:address1]
566
+ xml.tag!('address', address[:address]) if address[:address]
567
+ xml.tag!('city', address[:city])
568
+ xml.tag!('state', address[:state])
569
+ xml.tag!('zip', address[:zip])
570
+ xml.tag!('country', address[:country])
571
+ xml.tag!('phoneNumber', address[:phone_number]) if address[:phone_number]
572
+ xml.tag!('faxNumber', address[:fax_number]) if address[:fax_number]
573
+
574
+ xml.tag!('customerAddressId', address[:customer_address_id]) if address[:customer_address_id]
575
+ end
576
+
577
+ # Adds customer’s credit card information
578
+ # Note: This element should only be included
579
+ # when the payment method is credit card.
580
+ def add_credit_card(xml, credit_card)
581
+ return unless credit_card
582
+ xml.tag!('creditCard') do
583
+ # The credit card number used for payment of the subscription
584
+ xml.tag!('cardNumber', credit_card.number)
585
+ # The expiration date of the credit card used for the subscription
586
+ xml.tag!('expirationDate', expdate(credit_card))
587
+ xml.tag!('cardCode', credit_card.verification_value) if credit_card.verification_value?
588
+ end
589
+ end
590
+
591
+ # Adds customer’s bank account information
592
+ # Note: This element should only be included
593
+ # when the payment method is bank account.
594
+ def add_bank_account(xml, bank_account)
595
+ raise StandardError, "Invalid Bank Account Type: #{bank_account[:account_type]}" unless BANK_ACCOUNT_TYPES.include?(bank_account[:account_type])
596
+ raise StandardError, "Invalid eCheck Type: #{bank_account[:echeck_type]}" unless ECHECK_TYPES.include?(bank_account[:echeck_type])
597
+
598
+ xml.tag!('bankAccount') do
599
+ # The type of bank account
600
+ xml.tag!('accountType', BANK_ACCOUNT_TYPES[bank_account[:account_type]])
601
+ # The routing number of the customer’s bank
602
+ xml.tag!('routingNumber', bank_account[:routing_number])
603
+ # The bank account number
604
+ xml.tag!('accountNumber', bank_account[:account_number])
605
+ # The full name of the individual associated
606
+ # with the bank account number
607
+ xml.tag!('nameOnAccount', bank_account[:name_on_account])
608
+ # The type of electronic check transaction
609
+ xml.tag!('echeckType', ECHECK_TYPES[bank_account[:echeck_type]])
610
+ # The full name of the individual associated
611
+ # with the bank account number (optional)
612
+ xml.tag!('bankName', bank_account[:bank_name]) if bank_account[:bank_name]
613
+ end
614
+ end
615
+
616
+ # Adds customer’s driver's license information
617
+ # Note: This element is only required for
618
+ # Wells Fargo SecureSource eCheck.Net merchants
619
+ def add_drivers_license(xml, drivers_license)
620
+ xml.tag!('driversLicense') do
621
+ # The state of the customer's driver's license
622
+ # A valid two character state code
623
+ xml.tag!('state', drivers_license[:state])
624
+ # The customer’s driver's license number
625
+ xml.tag!('number', drivers_license[:number])
626
+ # The date of birth listed on the customer's driver's license
627
+ # YYYY-MM-DD
628
+ xml.tag!('dateOfBirth', drivers_license[:date_of_birth])
629
+ end
630
+ end
631
+
632
+ def commit(action, request)
633
+ url = test? ? test_url : live_url
634
+ xml = ssl_post(url, request, "Content-Type" => "text/xml")
635
+
636
+ response_params = parse(action, xml)
637
+
638
+ message = response_params['messages']['message']['text']
639
+ test_mode = test? || message =~ /Test Mode/
640
+ success = response_params['messages']['result_code'] == 'Ok'
641
+
642
+ response = Response.new(success, message, response_params,
643
+ :test => test_mode,
644
+ :authorization => response_params['customer_profile_id'] || (response_params['profile'] ? response_params['profile']['customer_profile_id'] : nil)
645
+ )
646
+
647
+ response.params['direct_response'] = parse_direct_response(response) if response.params['direct_response']
648
+ response
649
+ end
650
+
651
+ def parse_direct_response(response)
652
+ direct_response = {'raw' => response.params['direct_response']}
653
+ direct_response_fields = response.params['direct_response'].split(',')
654
+
655
+ direct_response.merge(
656
+ {
657
+ 'response_code' => direct_response_fields[0],
658
+ 'response_subcode' => direct_response_fields[1],
659
+ 'response_reason_code' => direct_response_fields[2],
660
+ 'message' => direct_response_fields[3],
661
+ 'approval_code' => direct_response_fields[4],
662
+ 'avs_response' => direct_response_fields[5],
663
+ 'transaction_id' => direct_response_fields[6],
664
+ 'invoice_number' => direct_response_fields[7],
665
+ 'order_description' => direct_response_fields[8],
666
+ 'amount' => direct_response_fields[9],
667
+ 'method' => direct_response_fields[10],
668
+ 'transaction_type' => direct_response_fields[11],
669
+ 'customer_id' => direct_response_fields[12],
670
+ 'first_name' => direct_response_fields[13],
671
+ 'last_name' => direct_response_fields[14],
672
+ 'company' => direct_response_fields[15],
673
+ 'address' => direct_response_fields[16],
674
+ 'city' => direct_response_fields[17],
675
+ 'state' => direct_response_fields[18],
676
+ 'zip_code' => direct_response_fields[19],
677
+ 'country' => direct_response_fields[20],
678
+ 'phone' => direct_response_fields[21],
679
+ 'fax' => direct_response_fields[22],
680
+ 'email_address' => direct_response_fields[23],
681
+ 'ship_to_first_name' => direct_response_fields[24],
682
+ 'ship_to_last_name' => direct_response_fields[25],
683
+ 'ship_to_company' => direct_response_fields[26],
684
+ 'ship_to_address' => direct_response_fields[27],
685
+ 'ship_to_city' => direct_response_fields[28],
686
+ 'ship_to_state' => direct_response_fields[29],
687
+ 'ship_to_zip_code' => direct_response_fields[30],
688
+ 'ship_to_country' => direct_response_fields[31],
689
+ 'tax' => direct_response_fields[32],
690
+ 'duty' => direct_response_fields[33],
691
+ 'freight' => direct_response_fields[34],
692
+ 'tax_exempt' => direct_response_fields[35],
693
+ 'purchase_order_number' => direct_response_fields[36],
694
+ 'md5_hash' => direct_response_fields[37],
695
+ 'card_code' => direct_response_fields[38],
696
+ 'cardholder_authentication_verification_response' => direct_response_fields[39]
697
+ }
698
+ )
699
+ end
700
+
701
+ def parse(action, xml)
702
+ xml = REXML::Document.new(xml)
703
+ root = REXML::XPath.first(xml, "//#{CIM_ACTIONS[action]}Response") ||
704
+ REXML::XPath.first(xml, "//ErrorResponse")
705
+ if root
706
+ response = parse_element(root)
707
+ end
708
+
709
+ response
710
+ end
711
+
712
+ def parse_element(node)
713
+ if node.has_elements?
714
+ response = {}
715
+ node.elements.each{ |e|
716
+ key = e.name.underscore
717
+ value = parse_element(e)
718
+ if response.has_key?(key)
719
+ if response[key].is_a?(Array)
720
+ response[key].push(value)
721
+ else
722
+ response[key] = [response[key], value]
723
+ end
724
+ else
725
+ response[key] = parse_element(e)
726
+ end
727
+ }
728
+ else
729
+ response = node.text
730
+ end
731
+
732
+ response
733
+ end
734
+ end
735
+ end
736
+ end