abtain_billing 1.0 → 1.02

Sign up to get free protection for your applications and to get access to all the features.
Files changed (237) hide show
  1. data/CHANGELOG +2 -472
  2. data/CONTRIBUTORS +0 -126
  3. data/MIT-LICENSE +2 -2
  4. data/Rakefile +3 -3
  5. data/init.rb +3 -3
  6. data/lib/{active_merchant.rb → abtain_billing.rb} +18 -18
  7. data/lib/{active_merchant → abtain_billing}/billing/avs_result.rb +1 -1
  8. data/lib/{active_merchant → abtain_billing}/billing/base.rb +7 -7
  9. data/lib/{active_merchant → abtain_billing}/billing/check.rb +1 -1
  10. data/lib/{active_merchant → abtain_billing}/billing/credit_card.rb +2 -2
  11. data/lib/{active_merchant → abtain_billing}/billing/credit_card_formatting.rb +1 -1
  12. data/lib/{active_merchant → abtain_billing}/billing/credit_card_methods.rb +2 -2
  13. data/lib/{active_merchant → abtain_billing}/billing/cvv_result.rb +1 -1
  14. data/lib/{active_merchant → abtain_billing}/billing/expiry_date.rb +1 -1
  15. data/lib/{active_merchant → abtain_billing}/billing/gateway.rb +5 -5
  16. data/lib/{active_merchant → abtain_billing}/billing/gateways.rb +1 -1
  17. data/lib/{active_merchant → abtain_billing}/billing/gateways/authorize_net.rb +3 -1
  18. data/lib/{active_merchant → abtain_billing}/billing/gateways/authorize_net_cim.rb +2 -1
  19. data/lib/{active_merchant → abtain_billing}/billing/gateways/bogus.rb +1 -1
  20. data/lib/{active_merchant → abtain_billing}/billing/gateways/cyber_source.rb +1 -1
  21. data/lib/abtain_billing/billing/integrations.rb +22 -0
  22. data/lib/{active_merchant → abtain_billing}/billing/integrations/action_view_helper.rb +2 -2
  23. data/lib/{active_merchant → abtain_billing}/billing/integrations/bogus.rb +4 -4
  24. data/lib/{active_merchant → abtain_billing}/billing/integrations/bogus/helper.rb +2 -2
  25. data/lib/{active_merchant → abtain_billing}/billing/integrations/bogus/notification.rb +2 -2
  26. data/lib/{active_merchant → abtain_billing}/billing/integrations/bogus/return.rb +2 -2
  27. data/lib/{active_merchant → abtain_billing}/billing/integrations/chronopay.rb +4 -4
  28. data/lib/{active_merchant → abtain_billing}/billing/integrations/chronopay/helper.rb +2 -2
  29. data/lib/{active_merchant → abtain_billing}/billing/integrations/chronopay/notification.rb +2 -2
  30. data/lib/{active_merchant → abtain_billing}/billing/integrations/chronopay/return.rb +2 -2
  31. data/lib/{active_merchant → abtain_billing}/billing/integrations/gestpay.rb +1 -1
  32. data/lib/{active_merchant → abtain_billing}/billing/integrations/gestpay/common.rb +1 -1
  33. data/lib/{active_merchant → abtain_billing}/billing/integrations/gestpay/helper.rb +2 -2
  34. data/lib/{active_merchant → abtain_billing}/billing/integrations/gestpay/notification.rb +2 -2
  35. data/lib/{active_merchant → abtain_billing}/billing/integrations/gestpay/return.rb +2 -2
  36. data/lib/{active_merchant → abtain_billing}/billing/integrations/helper.rb +2 -2
  37. data/lib/{active_merchant → abtain_billing}/billing/integrations/hi_trust.rb +2 -2
  38. data/lib/{active_merchant → abtain_billing}/billing/integrations/hi_trust/helper.rb +2 -2
  39. data/lib/{active_merchant → abtain_billing}/billing/integrations/hi_trust/notification.rb +3 -3
  40. data/lib/{active_merchant → abtain_billing}/billing/integrations/hi_trust/return.rb +2 -2
  41. data/lib/{active_merchant → abtain_billing}/billing/integrations/nochex.rb +5 -5
  42. data/lib/{active_merchant → abtain_billing}/billing/integrations/nochex/helper.rb +2 -2
  43. data/lib/{active_merchant → abtain_billing}/billing/integrations/nochex/notification.rb +3 -3
  44. data/lib/{active_merchant → abtain_billing}/billing/integrations/nochex/return.rb +2 -2
  45. data/lib/{active_merchant → abtain_billing}/billing/integrations/notification.rb +2 -2
  46. data/lib/{active_merchant → abtain_billing}/billing/integrations/paypal.rb +5 -5
  47. data/lib/{active_merchant → abtain_billing}/billing/integrations/paypal/helper.rb +2 -2
  48. data/lib/{active_merchant → abtain_billing}/billing/integrations/paypal/notification.rb +3 -3
  49. data/lib/{active_merchant → abtain_billing}/billing/integrations/paypal/return.rb +2 -2
  50. data/lib/{active_merchant → abtain_billing}/billing/integrations/quickpay.rb +1 -1
  51. data/lib/{active_merchant → abtain_billing}/billing/integrations/quickpay/helper.rb +2 -2
  52. data/lib/{active_merchant → abtain_billing}/billing/integrations/quickpay/notification.rb +2 -2
  53. data/lib/{active_merchant → abtain_billing}/billing/integrations/return.rb +1 -1
  54. data/lib/{active_merchant → abtain_billing}/billing/integrations/two_checkout.rb +1 -1
  55. data/lib/{active_merchant → abtain_billing}/billing/integrations/two_checkout/helper.rb +3 -3
  56. data/lib/{active_merchant → abtain_billing}/billing/integrations/two_checkout/notification.rb +2 -2
  57. data/lib/{active_merchant → abtain_billing}/billing/integrations/two_checkout/return.rb +2 -2
  58. data/lib/{active_merchant → abtain_billing}/billing/response.rb +2 -2
  59. data/lib/{active_merchant → abtain_billing}/lib/connection.rb +3 -3
  60. data/lib/{active_merchant → abtain_billing}/lib/country.rb +1 -1
  61. data/lib/abtain_billing/lib/error.rb +4 -0
  62. data/lib/{active_merchant → abtain_billing}/lib/post_data.rb +0 -0
  63. data/lib/{active_merchant → abtain_billing}/lib/posts_data.rb +1 -1
  64. data/lib/{active_merchant → abtain_billing}/lib/requires_parameters.rb +1 -1
  65. data/lib/{active_merchant → abtain_billing}/lib/utils.rb +1 -1
  66. data/lib/{active_merchant → abtain_billing}/lib/validateable.rb +1 -1
  67. data/lib/support/gateway_support.rb +3 -3
  68. data/test/fixtures.yml +2 -2
  69. data/test/remote/integrations/remote_gestpay_integration_test.rb +1 -1
  70. data/test/remote/integrations/remote_paypal_integration_test.rb +3 -3
  71. data/test/test_helper.rb +10 -10
  72. data/test/unit/base_test.rb +2 -2
  73. data/test/unit/connection_test.rb +11 -11
  74. data/test/unit/country_code_test.rb +1 -1
  75. data/test/unit/country_test.rb +1 -1
  76. data/test/unit/credit_card_formatting_test.rb +1 -1
  77. data/test/unit/credit_card_methods_test.rb +2 -2
  78. data/test/unit/gateways/authorize_net_test.rb +2 -2
  79. data/test/unit/gateways/bogus_test.rb +1 -1
  80. data/test/unit/gateways/data_cash_test.rb +1 -1
  81. data/test/unit/gateways/jetpay_test.rb +1 -1
  82. data/test/unit/gateways/merchant_ware_test.rb +1 -1
  83. data/test/unit/gateways/payflow_express_test.rb +1 -1
  84. data/test/unit/gateways/payflow_test.rb +5 -5
  85. data/test/unit/gateways/paypal_express_test.rb +2 -2
  86. data/test/unit/gateways/paypal_test.rb +2 -2
  87. data/test/unit/gateways/realex_test.rb +1 -1
  88. data/test/unit/gateways/verifi_test.rb +1 -1
  89. data/test/unit/integrations/action_view_helper_test.rb +1 -1
  90. data/test/unit/integrations/bogus_module_test.rb +1 -1
  91. data/test/unit/integrations/chronopay_module_test.rb +1 -1
  92. data/test/unit/integrations/gestpay_module_test.rb +1 -1
  93. data/test/unit/integrations/helpers/bogus_helper_test.rb +1 -1
  94. data/test/unit/integrations/helpers/chronopay_helper_test.rb +1 -1
  95. data/test/unit/integrations/helpers/gestpay_helper_test.rb +1 -1
  96. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +1 -1
  97. data/test/unit/integrations/helpers/nochex_helper_test.rb +1 -1
  98. data/test/unit/integrations/helpers/paypal_helper_test.rb +2 -2
  99. data/test/unit/integrations/helpers/quickpay_helper_test.rb +1 -1
  100. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +4 -4
  101. data/test/unit/integrations/hi_trust_module_test.rb +1 -1
  102. data/test/unit/integrations/nochex_module_test.rb +1 -1
  103. data/test/unit/integrations/notifications/chronopay_notification_test.rb +1 -1
  104. data/test/unit/integrations/notifications/gestpay_notification_test.rb +1 -1
  105. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +4 -4
  106. data/test/unit/integrations/notifications/nochex_notification_test.rb +1 -1
  107. data/test/unit/integrations/notifications/notification_test.rb +4 -4
  108. data/test/unit/integrations/notifications/paypal_notification_test.rb +1 -1
  109. data/test/unit/integrations/notifications/quickpay_notification_test.rb +1 -1
  110. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +1 -1
  111. data/test/unit/integrations/paypal_module_test.rb +4 -4
  112. data/test/unit/integrations/quickpay_module_test.rb +1 -1
  113. data/test/unit/integrations/returns/chronopay_return_test.rb +1 -1
  114. data/test/unit/integrations/returns/gestpay_return_test.rb +1 -1
  115. data/test/unit/integrations/returns/hi_trust_return_test.rb +1 -1
  116. data/test/unit/integrations/returns/nochex_return_test.rb +1 -1
  117. data/test/unit/integrations/returns/paypal_return_test.rb +1 -1
  118. data/test/unit/integrations/returns/return_test.rb +1 -1
  119. data/test/unit/integrations/returns/two_checkout_return_test.rb +1 -1
  120. data/test/unit/integrations/two_checkout_module_test.rb +1 -1
  121. data/test/unit/posts_data_test.rb +5 -5
  122. data/test/unit/utils_test.rb +1 -1
  123. data/test/unit/validateable_test.rb +2 -2
  124. metadata +63 -174
  125. data/lib/active_merchant/billing/gateways/beanstream.rb +0 -102
  126. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +0 -233
  127. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +0 -54
  128. data/lib/active_merchant/billing/gateways/braintree.rb +0 -17
  129. data/lib/active_merchant/billing/gateways/card_stream.rb +0 -230
  130. data/lib/active_merchant/billing/gateways/data_cash.rb +0 -595
  131. data/lib/active_merchant/billing/gateways/efsnet.rb +0 -229
  132. data/lib/active_merchant/billing/gateways/elavon.rb +0 -106
  133. data/lib/active_merchant/billing/gateways/eway.rb +0 -277
  134. data/lib/active_merchant/billing/gateways/exact.rb +0 -222
  135. data/lib/active_merchant/billing/gateways/first_pay.rb +0 -172
  136. data/lib/active_merchant/billing/gateways/instapay.rb +0 -164
  137. data/lib/active_merchant/billing/gateways/jetpay.rb +0 -270
  138. data/lib/active_merchant/billing/gateways/linkpoint.rb +0 -449
  139. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +0 -154
  140. data/lib/active_merchant/billing/gateways/merchant_ware.rb +0 -283
  141. data/lib/active_merchant/billing/gateways/modern_payments.rb +0 -36
  142. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +0 -214
  143. data/lib/active_merchant/billing/gateways/moneris.rb +0 -205
  144. data/lib/active_merchant/billing/gateways/net_registry.rb +0 -189
  145. data/lib/active_merchant/billing/gateways/netbilling.rb +0 -168
  146. data/lib/active_merchant/billing/gateways/ogone.rb +0 -279
  147. data/lib/active_merchant/billing/gateways/pay_junction.rb +0 -392
  148. data/lib/active_merchant/billing/gateways/pay_secure.rb +0 -120
  149. data/lib/active_merchant/billing/gateways/payflow.rb +0 -236
  150. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +0 -207
  151. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +0 -39
  152. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +0 -13
  153. data/lib/active_merchant/billing/gateways/payflow_express.rb +0 -138
  154. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +0 -15
  155. data/lib/active_merchant/billing/gateways/payflow_uk.rb +0 -21
  156. data/lib/active_merchant/billing/gateways/payment_express.rb +0 -230
  157. data/lib/active_merchant/billing/gateways/paypal.rb +0 -121
  158. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +0 -326
  159. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +0 -38
  160. data/lib/active_merchant/billing/gateways/paypal_ca.rb +0 -13
  161. data/lib/active_merchant/billing/gateways/paypal_express.rb +0 -130
  162. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +0 -20
  163. data/lib/active_merchant/billing/gateways/plugnpay.rb +0 -292
  164. data/lib/active_merchant/billing/gateways/psigate.rb +0 -214
  165. data/lib/active_merchant/billing/gateways/psl_card.rb +0 -306
  166. data/lib/active_merchant/billing/gateways/quickpay.rb +0 -213
  167. data/lib/active_merchant/billing/gateways/realex.rb +0 -200
  168. data/lib/active_merchant/billing/gateways/sage.rb +0 -146
  169. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -88
  170. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -116
  171. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -97
  172. data/lib/active_merchant/billing/gateways/sage_pay.rb +0 -308
  173. data/lib/active_merchant/billing/gateways/sallie_mae.rb +0 -144
  174. data/lib/active_merchant/billing/gateways/secure_pay.rb +0 -31
  175. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +0 -157
  176. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +0 -113
  177. data/lib/active_merchant/billing/gateways/skip_jack.rb +0 -452
  178. data/lib/active_merchant/billing/gateways/smart_ps.rb +0 -254
  179. data/lib/active_merchant/billing/gateways/trans_first.rb +0 -127
  180. data/lib/active_merchant/billing/gateways/transax.rb +0 -26
  181. data/lib/active_merchant/billing/gateways/trust_commerce.rb +0 -418
  182. data/lib/active_merchant/billing/gateways/usa_epay.rb +0 -194
  183. data/lib/active_merchant/billing/gateways/verifi.rb +0 -228
  184. data/lib/active_merchant/billing/gateways/viaklix.rb +0 -189
  185. data/lib/active_merchant/billing/gateways/wirecard.rb +0 -318
  186. data/lib/active_merchant/billing/integrations.rb +0 -22
  187. data/lib/active_merchant/lib/error.rb +0 -4
  188. data/test/remote/gateways/remote_beanstream_interac_test.rb +0 -53
  189. data/test/remote/gateways/remote_beanstream_test.rb +0 -150
  190. data/test/remote/gateways/remote_braintree_test.rb +0 -154
  191. data/test/remote/gateways/remote_card_stream_test.rb +0 -148
  192. data/test/remote/gateways/remote_data_cash_test.rb +0 -357
  193. data/test/remote/gateways/remote_efsnet_test.rb +0 -81
  194. data/test/remote/gateways/remote_elavon_test.rb +0 -66
  195. data/test/remote/gateways/remote_eway_test.rb +0 -74
  196. data/test/remote/gateways/remote_exact_test.rb +0 -60
  197. data/test/remote/gateways/remote_first_pay_test.rb +0 -87
  198. data/test/remote/gateways/remote_instapay_test.rb +0 -61
  199. data/test/remote/gateways/remote_jetpay_test.rb +0 -103
  200. data/test/remote/gateways/remote_linkpoint_test.rb +0 -121
  201. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +0 -173
  202. data/test/remote/gateways/remote_merchant_ware_test.rb +0 -113
  203. data/test/remote/gateways/remote_modern_payments_cim_test.rb +0 -58
  204. data/test/remote/gateways/remote_modern_payments_test.rb +0 -43
  205. data/test/remote/gateways/remote_moneris_test.rb +0 -82
  206. data/test/remote/gateways/remote_net_registry_test.rb +0 -85
  207. data/test/remote/gateways/remote_netbilling_test.rb +0 -70
  208. data/test/remote/gateways/remote_ogone_test.rb +0 -115
  209. data/test/remote/gateways/remote_pay_junction_test.rb +0 -143
  210. data/test/remote/gateways/remote_pay_secure_test.rb +0 -39
  211. data/test/remote/gateways/remote_payflow_express_test.rb +0 -50
  212. data/test/remote/gateways/remote_payflow_test.rb +0 -237
  213. data/test/remote/gateways/remote_payflow_uk_test.rb +0 -173
  214. data/test/remote/gateways/remote_payment_express_test.rb +0 -136
  215. data/test/remote/gateways/remote_paypal_express_test.rb +0 -49
  216. data/test/remote/gateways/remote_paypal_test.rb +0 -191
  217. data/test/remote/gateways/remote_plugnpay_test.rb +0 -72
  218. data/test/remote/gateways/remote_psigate_test.rb +0 -50
  219. data/test/remote/gateways/remote_psl_card_test.rb +0 -125
  220. data/test/remote/gateways/remote_quickpay_test.rb +0 -190
  221. data/test/remote/gateways/remote_realex_test.rb +0 -224
  222. data/test/remote/gateways/remote_sage_bankcard_test.rb +0 -109
  223. data/test/remote/gateways/remote_sage_pay_test.rb +0 -219
  224. data/test/remote/gateways/remote_sage_test.rb +0 -87
  225. data/test/remote/gateways/remote_sage_virtual_check_test.rb +0 -62
  226. data/test/remote/gateways/remote_sallie_mae_test.rb +0 -51
  227. data/test/remote/gateways/remote_secure_pay_au_test.rb +0 -40
  228. data/test/remote/gateways/remote_secure_pay_tech_test.rb +0 -37
  229. data/test/remote/gateways/remote_secure_pay_test.rb +0 -28
  230. data/test/remote/gateways/remote_skipjack_test.rb +0 -105
  231. data/test/remote/gateways/remote_trans_first_test.rb +0 -34
  232. data/test/remote/gateways/remote_transax_test.rb +0 -112
  233. data/test/remote/gateways/remote_trust_commerce_test.rb +0 -152
  234. data/test/remote/gateways/remote_usa_epay_test.rb +0 -46
  235. data/test/remote/gateways/remote_verifi_test.rb +0 -107
  236. data/test/remote/gateways/remote_viaklix_test.rb +0 -43
  237. data/test/remote/gateways/remote_wirecard_test.rb +0 -111
@@ -1,318 +0,0 @@
1
- require 'base64'
2
-
3
- module ActiveMerchant #:nodoc:
4
- module Billing #:nodoc:
5
- class WirecardGateway < Gateway
6
- # Test server location
7
- TEST_URL = 'https://c3-test.wirecard.com/secure/ssl-gateway'
8
-
9
- # Live server location
10
- LIVE_URL = 'https://c3.wirecard.com/secure/ssl-gateway'
11
-
12
- # The Namespaces are not really needed, because it just tells the System, that there's actually no namespace used.
13
- # It's just specified here for completeness.
14
- ENVELOPE_NAMESPACES = {
15
- 'xmlns:xsi' => 'http://www.w3.org/1999/XMLSchema-instance',
16
- 'xsi:noNamespaceSchemaLocation' => 'wirecard.xsd'
17
- }
18
-
19
- PERMITTED_TRANSACTIONS = %w[ AUTHORIZATION CAPTURE_AUTHORIZATION PURCHASE ]
20
-
21
- RETURN_CODES = %w[ ACK NOK ]
22
-
23
- # Wirecard only allows phone numbers with a format like this: +xxx(yyy)zzz-zzzz-ppp, where:
24
- # xxx = Country code
25
- # yyy = Area or city code
26
- # zzz-zzzz = Local number
27
- # ppp = PBX extension
28
- # For example, a typical U.S. or Canadian number would be "+1(202)555-1234-739" indicating PBX extension 739 at phone
29
- # number 5551234 within area code 202 (country code 1).
30
- VALID_PHONE_FORMAT = /\+\d{1,3}(\(?\d{3}\)?)?\d{3}-\d{4}-\d{3}/
31
-
32
- # The countries the gateway supports merchants from as 2 digit ISO country codes
33
- # TODO: Check supported countries
34
- self.supported_countries = ['DE']
35
-
36
- # Wirecard supports all major credit and debit cards:
37
- # Visa, Mastercard, American Express, Diners Club,
38
- # JCB, Switch, VISA Carte Bancaire, Visa Electron and UATP cards.
39
- # They also support the latest anti-fraud systems such as Verified by Visa or Master Secure Code.
40
- self.supported_cardtypes = [
41
- :visa, :master, :american_express, :diners_club, :jcb, :switch
42
- ]
43
-
44
- # The homepage URL of the gateway
45
- self.homepage_url = 'http://www.wirecard.com'
46
-
47
- # The name of the gateway
48
- self.display_name = 'Wirecard'
49
-
50
- # The currency should normally be EUROs
51
- self.default_currency = 'EUR'
52
-
53
- # 100 is 1.00 Euro
54
- self.money_format = :cents
55
-
56
- def initialize(options = {})
57
- # verify that username and password are supplied
58
- requires!(options, :login, :password)
59
- # unfortunately Wirecard also requires a BusinessCaseSignature in the XML request
60
- requires!(options, :signature)
61
- @options = options
62
- super
63
- end
64
-
65
- # Should run against the test servers or not?
66
- def test?
67
- @options[:test] || super
68
- end
69
-
70
- # Authorization
71
- def authorize(money, creditcard, options = {})
72
- prepare_options_hash(options)
73
- @options[:credit_card] = creditcard
74
- request = build_request(:authorization, money, @options)
75
- commit(request)
76
- end
77
-
78
-
79
- # Capture Authorization
80
- def capture(money, authorization, options = {})
81
- prepare_options_hash(options)
82
- @options[:authorization] = authorization
83
- request = build_request(:capture_authorization, money, @options)
84
- commit(request)
85
- end
86
-
87
-
88
- # Purchase
89
- def purchase(money, creditcard, options = {})
90
- prepare_options_hash(options)
91
- @options[:credit_card] = creditcard
92
- request = build_request(:purchase, money, @options)
93
- commit(request)
94
- end
95
-
96
- private
97
-
98
- def prepare_options_hash(options)
99
- @options.update(options)
100
- setup_address_hash!(options)
101
- end
102
-
103
- # Create all address hash key value pairs so that
104
- # it still works if only provided with one or two of them
105
- def setup_address_hash!(options)
106
- options[:billing_address] = options[:billing_address] || options[:address] || {}
107
- options[:shipping_address] = options[:shipping_address] || {}
108
- # Include Email in address-hash from options-hash
109
- options[:billing_address][:email] = options[:email] if options[:email]
110
- end
111
-
112
- # Contact WireCard, make the XML request, and parse the
113
- # reply into a Response object
114
- def commit(request)
115
- headers = { 'Content-Type' => 'text/xml',
116
- 'Authorization' => encoded_credentials }
117
-
118
- response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, request, headers))
119
- # Pending Status also means Acknowledged (as stated in their specification)
120
- success = response[:FunctionResult] == "ACK" || response[:FunctionResult] == "PENDING"
121
- message = response[:Message]
122
- authorization = (success && @options[:action] == :authorization) ? response[:GuWID] : nil
123
-
124
- Response.new(success, message, response,
125
- :test => test?,
126
- :authorization => authorization,
127
- :avs_result => { :code => response[:avsCode] },
128
- :cvv_result => response[:cvCode]
129
- )
130
- end
131
-
132
- # Generates the complete xml-message, that gets sent to the gateway
133
- def build_request(action, money, options = {})
134
- xml = Builder::XmlMarkup.new :indent => 2
135
- xml.instruct!
136
- xml.tag! 'WIRECARD_BXML' do
137
- xml.tag! 'W_REQUEST' do
138
- xml.tag! 'W_JOB' do
139
- # TODO: OPTIONAL, check what value needs to be insert here
140
- xml.tag! 'JobID', 'test dummy data'
141
- # UserID for this transaction
142
- xml.tag! 'BusinessCaseSignature', options[:signature] || options[:login]
143
- # Create the whole rest of the message
144
- add_transaction_data(xml, action, money, options)
145
- end
146
- end
147
- end
148
- xml.target!
149
- end
150
-
151
- # Includes the whole transaction data (payment, creditcard, address)
152
- def add_transaction_data(xml, action, money, options = {})
153
- options[:action] = action
154
- # TODO: require order_id instead of auto-generating it if not supplied
155
- options[:order_id] ||= generate_unique_id
156
- transaction_type = action.to_s.upcase
157
-
158
- xml.tag! "FNC_CC_#{transaction_type}" do
159
- # TODO: OPTIONAL, check which param should be used here
160
- xml.tag! 'FunctionID', options[:description] || 'Test dummy FunctionID'
161
-
162
- xml.tag! 'CC_TRANSACTION' do
163
- xml.tag! 'TransactionID', options[:order_id]
164
- if [:authorization, :purchase].include?(action)
165
- add_invoice(xml, money, options)
166
- add_creditcard(xml, options[:credit_card])
167
- add_address(xml, options[:billing_address])
168
- elsif action == :capture_authorization
169
- xml.tag! 'GuWID', options[:authorization] if options[:authorization]
170
- end
171
- end
172
- end
173
- end
174
-
175
- # Includes the payment (amount, currency, country) to the transaction-xml
176
- def add_invoice(xml, money, options)
177
- xml.tag! 'Amount', amount(money)
178
- xml.tag! 'Currency', options[:currency] || currency(money)
179
- xml.tag! 'CountryCode', options[:billing_address][:country]
180
- xml.tag! 'RECURRING_TRANSACTION' do
181
- xml.tag! 'Type', options[:recurring] || 'Single'
182
- end
183
- end
184
-
185
- # Includes the credit-card data to the transaction-xml
186
- def add_creditcard(xml, creditcard)
187
- raise "Creditcard must be supplied!" if creditcard.nil?
188
- xml.tag! 'CREDIT_CARD_DATA' do
189
- xml.tag! 'CreditCardNumber', creditcard.number
190
- xml.tag! 'CVC2', creditcard.verification_value
191
- xml.tag! 'ExpirationYear', creditcard.year
192
- xml.tag! 'ExpirationMonth', format(creditcard.month, :two_digits)
193
- xml.tag! 'CardHolderName', [creditcard.first_name, creditcard.last_name].join(' ')
194
- end
195
- end
196
-
197
- # Includes the IP address of the customer to the transaction-xml
198
- def add_customer_data(xml, options)
199
- return unless options[:ip]
200
- xml.tag! 'CONTACT_DATA' do
201
- xml.tag! 'IPAddress', options[:ip]
202
- end
203
- end
204
-
205
- # Includes the address to the transaction-xml
206
- def add_address(xml, address)
207
- return if address.nil?
208
- xml.tag! 'CORPTRUSTCENTER_DATA' do
209
- xml.tag! 'ADDRESS' do
210
- xml.tag! 'Address1', address[:address1]
211
- xml.tag! 'Address2', address[:address2] if address[:address2]
212
- xml.tag! 'City', address[:city]
213
- xml.tag! 'ZipCode', address[:zip]
214
-
215
- if address[:state] =~ /[A-Za-z]{2}/ && address[:country] =~ /^(us|ca)$/i
216
- xml.tag! 'State', address[:state].upcase
217
- end
218
-
219
- xml.tag! 'Country', address[:country]
220
- xml.tag! 'Phone', address[:phone] if address[:phone] =~ VALID_PHONE_FORMAT
221
- xml.tag! 'Email', address[:email]
222
- end
223
- end
224
- end
225
-
226
-
227
- # Read the XML message from the gateway and check if it was successful,
228
- # and also extract required return values from the response.
229
- def parse(xml)
230
- basepath = '/WIRECARD_BXML/W_RESPONSE'
231
- response = {}
232
-
233
- xml = REXML::Document.new(xml)
234
- if root = REXML::XPath.first(xml, "#{basepath}/W_JOB")
235
- parse_response(response, root)
236
- elsif root = REXML::XPath.first(xml, "//ERROR")
237
- parse_error(response, root)
238
- else
239
- response[:Message] = "No valid XML response message received. \
240
- Propably wrong credentials supplied with HTTP header."
241
- end
242
-
243
- response
244
- end
245
-
246
- # Parse the <ProcessingStatus> Element which containts all important information
247
- def parse_response(response, root)
248
- status = nil
249
- # get the root element for this Transaction
250
- root.elements.to_a.each do |node|
251
- if node.name =~ /FNC_CC_/
252
- status = REXML::XPath.first(node, "CC_TRANSACTION/PROCESSING_STATUS")
253
- end
254
- end
255
- message = ""
256
- if status
257
- if info = status.elements['Info']
258
- message << info.text
259
- end
260
- # Get basic response information
261
- status.elements.to_a.each do |node|
262
- response[node.name.to_sym] = (node.text || '').strip
263
- end
264
- end
265
- parse_error(root, message)
266
- response[:Message] = message
267
- end
268
-
269
- # Parse a generic error response from the gateway
270
- def parse_error(root, message = "")
271
- # Get errors if available and append them to the message
272
- errors = errors_to_string(root)
273
- unless errors.strip.blank?
274
- message << ' - ' unless message.strip.blank?
275
- message << errors
276
- end
277
- message
278
- end
279
-
280
- # Parses all <ERROR> elements in the response and converts the information
281
- # to a single string
282
- def errors_to_string(root)
283
- # Get context error messages (can be 0..*)
284
- errors = []
285
- REXML::XPath.each(root, "//ERROR") do |error_elem|
286
- error = {}
287
- error[:Advice] = []
288
- error[:Message] = error_elem.elements['Message'].text
289
- error_elem.elements.each('Advice') do |advice|
290
- error[:Advice] << advice.text
291
- end
292
- errors << error
293
- end
294
- # Convert all messages to a single string
295
- string = ''
296
- errors.each do |error|
297
- string << error[:Message]
298
- error[:Advice].each_with_index do |advice, index|
299
- string << ' (' if index == 0
300
- string << "#{index+1}. #{advice}"
301
- string << ' and ' if index < error[:Advice].size - 1
302
- string << ')' if index == error[:Advice].size - 1
303
- end
304
- end
305
- string
306
- end
307
-
308
- # Encode login and password in Base64 to supply as HTTP header
309
- # (for http basic authentication)
310
- def encoded_credentials
311
- credentials = [@options[:login], @options[:password]].join(':')
312
- "Basic " << Base64.encode64(credentials).strip
313
- end
314
-
315
- end
316
- end
317
- end
318
-
@@ -1,22 +0,0 @@
1
- require 'active_merchant/billing/integrations/notification'
2
- require 'active_merchant/billing/integrations/helper'
3
- require 'active_merchant/billing/integrations/return'
4
- require 'active_merchant/billing/integrations/bogus'
5
- require 'active_merchant/billing/integrations/chronopay'
6
- require 'active_merchant/billing/integrations/paypal'
7
- require 'active_merchant/billing/integrations/nochex'
8
- require 'active_merchant/billing/integrations/gestpay'
9
- require 'active_merchant/billing/integrations/two_checkout'
10
- require 'active_merchant/billing/integrations/hi_trust'
11
- require 'active_merchant/billing/integrations/quickpay'
12
-
13
- # make the bogus gateway be classified correctly by the inflector
14
- if defined?(ActiveSupport::Inflector)
15
- ActiveSupport::Inflector.inflections do |inflect|
16
- inflect.uncountable 'bogus'
17
- end
18
- else
19
- Inflector.inflections do |inflect|
20
- inflect.uncountable 'bogus'
21
- end
22
- end
@@ -1,4 +0,0 @@
1
- module ActiveMerchant #:nodoc:
2
- class ActiveMerchantError < StandardError #:nodoc:
3
- end
4
- end
@@ -1,53 +0,0 @@
1
- require 'test_helper'
2
-
3
- class RemoteBeanstreamInteracTest < Test::Unit::TestCase
4
-
5
- def setup
6
- @gateway = BeanstreamInteracGateway.new(fixtures(:beanstream_interac))
7
-
8
- @amount = 100
9
-
10
- @options = {
11
- :order_id => generate_unique_id,
12
- :billing_address => {
13
- :name => 'xiaobo zzz',
14
- :phone => '555-555-5555',
15
- :address1 => '1234 Levesque St.',
16
- :address2 => 'Apt B',
17
- :city => 'Montreal',
18
- :state => 'QC',
19
- :country => 'CA',
20
- :zip => 'H2C1X8'
21
- },
22
- :email => 'xiaobozzz@example.com',
23
- :subtotal => 800,
24
- :shipping => 100,
25
- :tax1 => 100,
26
- :tax2 => 100,
27
- :custom => 'reference one'
28
- }
29
- end
30
-
31
- def test_successful_purchase
32
- assert response = @gateway.purchase(@amount, @options)
33
- assert_success response
34
- assert_equal "R", response.params["responseType"]
35
- assert_false response.redirect.blank?
36
- end
37
-
38
- def test_failed_confirmation
39
- assert response = @gateway.confirm("")
40
- assert_failure response
41
- end
42
-
43
- def test_invalid_login
44
- gateway = BeanstreamInteracGateway.new(
45
- :merchant_id => '',
46
- :login => '',
47
- :password => ''
48
- )
49
- assert response = gateway.purchase(@amount, @options)
50
- assert_failure response
51
- assert_equal 'Invalid merchant id (merchant_id = 0)', response.message
52
- end
53
- end
@@ -1,150 +0,0 @@
1
- require 'test_helper'
2
-
3
- # This test suite assumes that you have enabled username/password transaction validation in your Beanstream account.
4
- # You will experience some test failures if username/password validation transaction validation is not enabled.
5
- class RemoteBeanstreamTest < Test::Unit::TestCase
6
-
7
- def setup
8
- @gateway = BeanstreamGateway.new(fixtures(:beanstream))
9
-
10
- # Beanstream test cards. Cards require a CVV of 123, which is the default of the credit card helper
11
- @visa = credit_card('4030000010001234')
12
- @declined_visa = credit_card('4003050500040005')
13
-
14
- @mastercard = credit_card('5100000010001004')
15
- @declined_mastercard = credit_card('5100000020002000')
16
-
17
- @amex = credit_card('371100001000131')
18
- @declined_amex = credit_card('342400001000180')
19
-
20
- # Canadian EFT
21
- @check = check(
22
- :institution_number => '001',
23
- :transit_number => '26729'
24
- )
25
-
26
- @amount = 1500
27
-
28
- @options = {
29
- :order_id => generate_unique_id,
30
- :billing_address => {
31
- :name => 'xiaobo zzz',
32
- :phone => '555-555-5555',
33
- :address1 => '1234 Levesque St.',
34
- :address2 => 'Apt B',
35
- :city => 'Montreal',
36
- :state => 'QC',
37
- :country => 'CA',
38
- :zip => 'H2C1X8'
39
- },
40
- :email => 'xiaobozzz@example.com',
41
- :subtotal => 800,
42
- :shipping => 100,
43
- :tax1 => 100,
44
- :tax2 => 100,
45
- :custom => 'reference one'
46
- }
47
- end
48
-
49
- def test_successful_visa_purchase
50
- assert response = @gateway.purchase(@amount, @visa, @options)
51
- assert_success response
52
- assert_false response.authorization.blank?
53
- assert_equal "Approved", response.message
54
- end
55
-
56
- def test_unsuccessful_visa_purchase
57
- assert response = @gateway.purchase(@amount, @declined_visa, @options)
58
- assert_failure response
59
- assert_equal 'DECLINE', response.message
60
- end
61
-
62
- def test_successful_mastercard_purchase
63
- assert response = @gateway.purchase(@amount, @mastercard, @options)
64
- assert_success response
65
- assert_false response.authorization.blank?
66
- assert_equal "Approved", response.message
67
- end
68
-
69
- def test_unsuccessful_mastercard_purchase
70
- assert response = @gateway.purchase(@amount, @declined_mastercard, @options)
71
- assert_failure response
72
- assert_equal 'DECLINE', response.message
73
- end
74
-
75
- def test_successful_amex_purchase
76
- assert response = @gateway.purchase(@amount, @amex, @options)
77
- assert_success response
78
- assert_false response.authorization.blank?
79
- assert_equal "Approved", response.message
80
- end
81
-
82
- def test_unsuccessful_amex_purchase
83
- assert response = @gateway.purchase(@amount, @declined_amex, @options)
84
- assert_failure response
85
- assert_equal 'DECLINE', response.message
86
- end
87
-
88
- def test_authorize_and_capture
89
- assert auth = @gateway.authorize(@amount, @visa, @options)
90
- assert_success auth
91
- assert_equal "Approved", auth.message
92
- assert_false auth.authorization.blank?
93
-
94
- assert capture = @gateway.capture(@amount, auth.authorization)
95
- assert_success capture
96
- assert_false capture.authorization.blank?
97
- end
98
-
99
- def test_failed_capture
100
- assert response = @gateway.capture(@amount, '')
101
- assert_failure response
102
- assert_no_match %r{You are not authorized}, response.message, "You need to enable username/password validation"
103
- assert_match %r{Missing or invalid adjustment id.}, response.message
104
- end
105
-
106
- def test_successful_purchase_and_void
107
- assert purchase = @gateway.purchase(@amount, @visa, @options)
108
- assert_success purchase
109
-
110
- assert void = @gateway.void(purchase.authorization)
111
- assert_success void
112
- end
113
-
114
- def test_successful_purchase_and_credit_and_void_credit
115
- assert purchase = @gateway.purchase(@amount, @visa, @options)
116
- assert_success purchase
117
-
118
- assert credit = @gateway.credit(@amount, purchase.authorization)
119
- assert_success purchase
120
-
121
- assert void = @gateway.void(credit.authorization)
122
- assert_success void
123
- end
124
-
125
- def test_successful_check_purchase
126
- assert response = @gateway.purchase(@amount, @check, @options)
127
- assert_success response
128
- assert response.test?
129
- assert_false response.authorization.blank?
130
- end
131
-
132
- def test_successful_check_purchase_and_credit
133
- assert purchase = @gateway.purchase(@amount, @check, @options)
134
- assert_success purchase
135
-
136
- assert credit = @gateway.credit(@amount, purchase.authorization)
137
- assert_success credit
138
- end
139
-
140
- def test_invalid_login
141
- gateway = BeanstreamGateway.new(
142
- :merchant_id => '',
143
- :login => '',
144
- :password => ''
145
- )
146
- assert response = gateway.purchase(@amount, @visa, @options)
147
- assert_failure response
148
- assert_equal 'Invalid merchant id (merchant_id = 0)', response.message
149
- end
150
- end