activemerchant-kiddy 1.15.0.kiddy

Sign up to get free protection for your applications and to get access to all the features.
Files changed (184) hide show
  1. data/CHANGELOG +688 -0
  2. data/CONTRIBUTORS +233 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +164 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant/billing/avs_result.rb +98 -0
  7. data/lib/active_merchant/billing/base.rb +57 -0
  8. data/lib/active_merchant/billing/check.rb +68 -0
  9. data/lib/active_merchant/billing/credit_card.rb +172 -0
  10. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  11. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  12. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  13. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  14. data/lib/active_merchant/billing/gateway.rb +170 -0
  15. data/lib/active_merchant/billing/gateways/authorize_net.rb +671 -0
  16. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +858 -0
  17. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +309 -0
  18. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +282 -0
  19. data/lib/active_merchant/billing/gateways/beanstream.rb +139 -0
  20. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  21. data/lib/active_merchant/billing/gateways/blue_pay.rb +11 -0
  22. data/lib/active_merchant/billing/gateways/bogus.rb +132 -0
  23. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
  24. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  25. data/lib/active_merchant/billing/gateways/braintree_blue.rb +293 -0
  26. data/lib/active_merchant/billing/gateways/braintree_orange.rb +17 -0
  27. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  28. data/lib/active_merchant/billing/gateways/cyber_source.rb +410 -0
  29. data/lib/active_merchant/billing/gateways/data_cash.rb +597 -0
  30. data/lib/active_merchant/billing/gateways/efsnet.rb +235 -0
  31. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  32. data/lib/active_merchant/billing/gateways/epay.rb +268 -0
  33. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  34. data/lib/active_merchant/billing/gateways/eway_managed.rb +231 -0
  35. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  36. data/lib/active_merchant/billing/gateways/federated_canada.rb +168 -0
  37. data/lib/active_merchant/billing/gateways/first_pay.rb +177 -0
  38. data/lib/active_merchant/billing/gateways/garanti.rb +262 -0
  39. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +250 -0
  40. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
  41. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
  42. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +55 -0
  43. data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
  44. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  45. data/lib/active_merchant/billing/gateways/iridium.rb +258 -0
  46. data/lib/active_merchant/billing/gateways/jetpay.rb +276 -0
  47. data/lib/active_merchant/billing/gateways/linkpoint.rb +454 -0
  48. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +156 -0
  49. data/lib/active_merchant/billing/gateways/merchant_ware.rb +289 -0
  50. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  51. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  52. data/lib/active_merchant/billing/gateways/moneris.rb +209 -0
  53. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  54. data/lib/active_merchant/billing/gateways/netaxept.rb +239 -0
  55. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  56. data/lib/active_merchant/billing/gateways/nmi.rb +13 -0
  57. data/lib/active_merchant/billing/gateways/ogone.rb +292 -0
  58. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
  59. data/lib/active_merchant/billing/gateways/orbital.rb +317 -0
  60. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  61. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  62. data/lib/active_merchant/billing/gateways/paybox_direct.rb +207 -0
  63. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  64. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  65. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  66. data/lib/active_merchant/billing/gateways/payflow.rb +253 -0
  67. data/lib/active_merchant/billing/gateways/payflow_express.rb +222 -0
  68. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  69. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  70. data/lib/active_merchant/billing/gateways/payment_express.rb +235 -0
  71. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +351 -0
  72. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +49 -0
  73. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  74. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  75. data/lib/active_merchant/billing/gateways/paypal_express.rb +177 -0
  76. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +25 -0
  77. data/lib/active_merchant/billing/gateways/plugnpay.rb +298 -0
  78. data/lib/active_merchant/billing/gateways/psigate.rb +219 -0
  79. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  80. data/lib/active_merchant/billing/gateways/qbms.rb +295 -0
  81. data/lib/active_merchant/billing/gateways/quantum.rb +282 -0
  82. data/lib/active_merchant/billing/gateways/quickpay.rb +218 -0
  83. data/lib/active_merchant/billing/gateways/realex.rb +311 -0
  84. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  85. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  86. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  87. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  88. data/lib/active_merchant/billing/gateways/sage_pay.rb +320 -0
  89. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  90. data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
  91. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  92. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +193 -0
  93. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  94. data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
  95. data/lib/active_merchant/billing/gateways/smart_ps.rb +271 -0
  96. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  97. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  98. data/lib/active_merchant/billing/gateways/trust_commerce.rb +423 -0
  99. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  100. data/lib/active_merchant/billing/gateways/verifi.rb +233 -0
  101. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  102. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  103. data/lib/active_merchant/billing/gateways/worldpay.rb +280 -0
  104. data/lib/active_merchant/billing/gateways.rb +18 -0
  105. data/lib/active_merchant/billing/integrations/action_view_helper.rb +68 -0
  106. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  107. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  108. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  109. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  110. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  111. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  112. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  113. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  114. data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
  115. data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
  116. data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
  117. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
  118. data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
  119. data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
  120. data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
  121. data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
  122. data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
  123. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  124. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  125. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  126. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  127. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  128. data/lib/active_merchant/billing/integrations/helper.rb +96 -0
  129. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  130. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  131. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  132. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  133. data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +48 -0
  134. data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -0
  135. data/lib/active_merchant/billing/integrations/moneybookers.rb +26 -0
  136. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  137. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  138. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  139. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  140. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  141. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  142. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  143. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  144. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  145. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  146. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  147. data/lib/active_merchant/billing/integrations/quickpay.rb +21 -0
  148. data/lib/active_merchant/billing/integrations/return.rb +42 -0
  149. data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
  150. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +111 -0
  151. data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
  152. data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
  153. data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
  154. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  155. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  156. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  157. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  158. data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
  159. data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
  160. data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +88 -0
  161. data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
  162. data/lib/active_merchant/billing/integrations/valitor.rb +33 -0
  163. data/lib/active_merchant/billing/integrations/world_pay/helper.rb +100 -0
  164. data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
  165. data/lib/active_merchant/billing/integrations/world_pay.rb +38 -0
  166. data/lib/active_merchant/billing/integrations.rb +17 -0
  167. data/lib/active_merchant/billing/response.rb +32 -0
  168. data/lib/active_merchant/billing.rb +9 -0
  169. data/lib/active_merchant/common/connection.rb +177 -0
  170. data/lib/active_merchant/common/country.rb +328 -0
  171. data/lib/active_merchant/common/error.rb +26 -0
  172. data/lib/active_merchant/common/post_data.rb +24 -0
  173. data/lib/active_merchant/common/posts_data.rb +63 -0
  174. data/lib/active_merchant/common/requires_parameters.rb +16 -0
  175. data/lib/active_merchant/common/utils.rb +22 -0
  176. data/lib/active_merchant/common/validateable.rb +81 -0
  177. data/lib/active_merchant/common.rb +14 -0
  178. data/lib/active_merchant/version.rb +3 -0
  179. data/lib/active_merchant.rb +50 -0
  180. data/lib/activemerchant.rb +1 -0
  181. data/lib/certs/cacert.pem +7815 -0
  182. data/lib/support/gateway_support.rb +58 -0
  183. data/lib/support/outbound_hosts.rb +25 -0
  184. metadata +273 -0
@@ -0,0 +1,207 @@
1
+ require 'iconv'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class PayboxDirectGateway < Gateway
6
+ TEST_URL = 'https://preprod-ppps.paybox.com/PPPS.php'
7
+ LIVE_URL = 'https://ppps.paybox.com/PPPS.php'
8
+ LIVE_URL_BACKUP = 'https://ppps1.paybox.com/PPPS.php'
9
+
10
+ # Payment API Version
11
+ API_VERSION = '00103'
12
+
13
+ # Transactions hash
14
+ TRANSACTIONS = {
15
+ :authorization => '00001',
16
+ :capture => '00002',
17
+ :purchase => '00003',
18
+ :unreferenced_credit => '00004',
19
+ :void => '00005',
20
+ :refund => '00014'
21
+ }
22
+
23
+ CURRENCY_CODES = {
24
+ "AUD"=> '036',
25
+ "CAD"=> '124',
26
+ "CZK"=> '203',
27
+ "DKK"=> '208',
28
+ "HKD"=> '344',
29
+ "ICK"=> '352',
30
+ "JPY"=> '392',
31
+ "NOK"=> '578',
32
+ "SGD"=> '702',
33
+ "SEK"=> '752',
34
+ "CHF"=> '756',
35
+ "GBP"=> '826',
36
+ "USD"=> '840',
37
+ "EUR"=> '978'
38
+ }
39
+
40
+ SUCCESS_CODES = ['00000']
41
+ UNAVAILABILITY_CODES = ['00001', '00097', '00098']
42
+ FRAUD_CODES = ['00102','00104','00105','00134','00138','00141','00143','00156','00157','00159']
43
+ SUCCESS_MESSAGE = 'The transaction was approved'
44
+ FAILURE_MESSAGE = 'The transaction failed'
45
+
46
+ # Money is referenced in cents
47
+ self.money_format = :cents
48
+ self.default_currency = 'EUR'
49
+
50
+ # The countries the gateway supports merchants from as 2 digit ISO country codes
51
+ self.supported_countries = ['FR']
52
+
53
+ # The card types supported by the payment gateway
54
+ self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :jcb]
55
+
56
+ # The homepage URL of the gateway
57
+ self.homepage_url = 'http://www.paybox.com/'
58
+
59
+ # The name of the gateway
60
+ self.display_name = 'Paybox Direct'
61
+
62
+ def initialize(options = {})
63
+ requires!(options, :login, :password)
64
+ @options = options
65
+ super
66
+ end
67
+
68
+ def authorize(money, creditcard, options = {})
69
+ post = {}
70
+ add_invoice(post, options)
71
+ add_creditcard(post, creditcard)
72
+ commit('authorization', money, post)
73
+ end
74
+
75
+ def purchase(money, creditcard, options = {})
76
+ post = {}
77
+ add_invoice(post, options)
78
+ add_creditcard(post, creditcard)
79
+ commit('purchase', money, post)
80
+ end
81
+
82
+ def capture(money, authorization, options = {})
83
+ requires!(options, :order_id)
84
+ post = {}
85
+ add_invoice(post, options)
86
+ post[:numappel] = authorization[0,10]
87
+ post[:numtrans] = authorization[10,10]
88
+ commit('capture', money, post)
89
+ end
90
+
91
+ def void(identification, options = {})
92
+ requires!(options, :order_id, :amount)
93
+ post ={}
94
+ add_invoice(post, options)
95
+ add_reference(post, identification)
96
+ post[:porteur] = '000000000000000'
97
+ post[:dateval] = '0000'
98
+ commit('void', options[:amount], post)
99
+ end
100
+
101
+ def credit(money, identification, options = {})
102
+ deprecated CREDIT_DEPRECATION_MESSAGE
103
+ refund(money, identification, options)
104
+ end
105
+
106
+ def refund(money, identification, options = {})
107
+ post = {}
108
+ add_invoice(post, options)
109
+ add_reference(post, identification)
110
+ commit('refund', money, post)
111
+ end
112
+
113
+ def test?
114
+ @options[:test] || Base.gateway_mode == :test
115
+ end
116
+
117
+ private
118
+
119
+ def add_invoice(post, options)
120
+ post[:reference] = options[:order_id]
121
+ end
122
+
123
+ def add_creditcard(post, creditcard)
124
+ post[:porteur] = creditcard.number
125
+ post[:dateval] = expdate(creditcard)
126
+ post[:cvv] = creditcard.verification_value if creditcard.verification_value?
127
+ end
128
+
129
+ def add_reference(post, identification)
130
+ post[:numappel] = identification[0,10]
131
+ post[:numtrans] = identification[10,10]
132
+ end
133
+
134
+ def parse(body)
135
+ body = Iconv.iconv("UTF-8","LATIN1", body.to_s).join
136
+ results = {}
137
+ body.split(/&/).each do |pair|
138
+ key,val = pair.split(/\=/)
139
+ results[key.downcase.to_sym] = CGI.unescape(val) if val
140
+ end
141
+ results
142
+ end
143
+
144
+ def commit(action, money = nil, parameters = nil)
145
+ parameters[:montant] = ('0000000000' + (money ? amount(money) : ''))[-10..-1]
146
+ parameters[:devise] = CURRENCY_CODES[options[:currency] || currency(money)]
147
+ request_data = post_data(action,parameters)
148
+ response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, request_data))
149
+ response = parse(ssl_post(LIVE_URL_BACKUP, request_data)) if service_unavailable?(response) && !test?
150
+ Response.new(success?(response), message_from(response), response.merge(
151
+ :timestamp => parameters[:dateq]),
152
+ :test => test?,
153
+ :authorization => response[:numappel].to_s + response[:numtrans].to_s,
154
+ :fraud_review => fraud_review?(response),
155
+ :sent_params => parameters.delete_if{|key,value| ['porteur','dateval','cvv'].include?(key.to_s)}
156
+ )
157
+ end
158
+
159
+ def success?(response)
160
+ SUCCESS_CODES.include?(response[:codereponse])
161
+ end
162
+
163
+ def fraud_review?(response)
164
+ FRAUD_CODES.include?(response[:codereponse])
165
+ end
166
+
167
+ def service_unavailable?(response)
168
+ UNAVAILABILITY_CODES.include?(response[:codereponse])
169
+ end
170
+
171
+ def message_from(response)
172
+ success?(response) ? SUCCESS_MESSAGE : (response[:commentaire] || FAILURE_MESSAGE)
173
+ end
174
+
175
+ def post_data(action, parameters = {})
176
+
177
+ parameters.update(
178
+ :version => API_VERSION,
179
+ :type => TRANSACTIONS[action.to_sym],
180
+ :dateq => Time.now.strftime('%d%m%Y%H%M%S'),
181
+ :numquestion => unique_id(parameters[:order_id]),
182
+ :site => @options[:login].to_s[0,7],
183
+ :rang => @options[:login].to_s[7..-1],
184
+ :cle => @options[:password],
185
+ :pays => '',
186
+ :archivage => parameters[:order_id]
187
+ )
188
+
189
+ parameters.collect { |key, value| "#{key.to_s.upcase}=#{CGI.escape(value.to_s)}" }.join("&")
190
+ end
191
+
192
+ def unique_id(seed = 0)
193
+ randkey = "#{seed}#{Time.now.usec}".to_i % 2147483647 # Max paybox value for the question number
194
+
195
+ "0000000000#{randkey}"[-10..-1]
196
+ end
197
+
198
+ def expdate(credit_card)
199
+ year = sprintf("%.4i", credit_card.year)
200
+ month = sprintf("%.2i", credit_card.month)
201
+
202
+ "#{month}#{year[-2..-1]}"
203
+ end
204
+
205
+ end
206
+ end
207
+ end
@@ -0,0 +1,207 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module PayflowCommonAPI
4
+ def self.included(base)
5
+ base.default_currency = 'USD'
6
+
7
+ base.class_attribute :partner
8
+
9
+ # Set the default partner to PayPal
10
+ base.partner = 'PayPal'
11
+
12
+ base.supported_countries = ['US', 'CA', 'SG', 'AU']
13
+
14
+ base.class_attribute :timeout
15
+ base.timeout = 60
16
+
17
+ # Enable safe retry of failed connections
18
+ # Payflow is safe to retry because retried transactions use the same
19
+ # X-VPS-Request-ID header. If a transaction is detected as a duplicate
20
+ # only the original transaction data will be used by Payflow, and the
21
+ # subsequent Responses will have a :duplicate parameter set in the params
22
+ # hash.
23
+ base.retry_safe = true
24
+ end
25
+
26
+ XMLNS = 'http://www.paypal.com/XMLPay'
27
+ TEST_URL = 'https://pilot-payflowpro.paypal.com'
28
+ LIVE_URL = 'https://payflowpro.paypal.com'
29
+
30
+ CARD_MAPPING = {
31
+ :visa => 'Visa',
32
+ :master => 'MasterCard',
33
+ :discover => 'Discover',
34
+ :american_express => 'Amex',
35
+ :jcb => 'JCB',
36
+ :diners_club => 'DinersClub',
37
+ :switch => 'Switch',
38
+ :solo => 'Solo'
39
+ }
40
+
41
+ TRANSACTIONS = {
42
+ :purchase => "Sale",
43
+ :authorization => "Authorization",
44
+ :capture => "Capture",
45
+ :void => "Void",
46
+ :credit => "Credit"
47
+ }
48
+
49
+ CVV_CODE = {
50
+ 'Match' => 'M',
51
+ 'No Match' => 'N',
52
+ 'Service Not Available' => 'U',
53
+ 'Service not Requested' => 'P'
54
+ }
55
+
56
+ def initialize(options = {})
57
+ requires!(options, :login, :password)
58
+
59
+ @options = options
60
+ @options[:partner] = partner if @options[:partner].blank?
61
+ super
62
+ end
63
+
64
+ def test?
65
+ @options[:test] || super
66
+ end
67
+
68
+ def capture(money, authorization, options = {})
69
+ request = build_reference_request(:capture, money, authorization, options)
70
+ commit(request, options)
71
+ end
72
+
73
+ def void(authorization, options = {})
74
+ request = build_reference_request(:void, nil, authorization, options)
75
+ commit(request, options)
76
+ end
77
+
78
+ private
79
+ def build_request(body, options = {})
80
+ xml = Builder::XmlMarkup.new
81
+ xml.instruct!
82
+ xml.tag! 'XMLPayRequest', 'Timeout' => timeout.to_s, 'version' => "2.1", "xmlns" => XMLNS do
83
+ xml.tag! 'RequestData' do
84
+ xml.tag! 'Vendor', @options[:login]
85
+ xml.tag! 'Partner', @options[:partner]
86
+ if options[:request_type] == :recurring
87
+ xml << body
88
+ else
89
+ xml.tag! 'Transactions' do
90
+ xml.tag! 'Transaction', 'CustRef' => options[:customer] do
91
+ xml.tag! 'Verbosity', 'MEDIUM'
92
+ xml << body
93
+ end
94
+ end
95
+ end
96
+ end
97
+ xml.tag! 'RequestAuth' do
98
+ xml.tag! 'UserPass' do
99
+ xml.tag! 'User', !@options[:user].blank? ? @options[:user] : @options[:login]
100
+ xml.tag! 'Password', @options[:password]
101
+ end
102
+ end
103
+ end
104
+ xml.target!
105
+ end
106
+
107
+ def build_reference_request(action, money, authorization, options)
108
+ xml = Builder::XmlMarkup.new
109
+ xml.tag! TRANSACTIONS[action] do
110
+ xml.tag! 'PNRef', authorization
111
+
112
+ unless money.nil?
113
+ xml.tag! 'Invoice' do
114
+ xml.tag! 'TotalAmt', amount(money), 'Currency' => options[:currency] || currency(money)
115
+ end
116
+ end
117
+ end
118
+
119
+ xml.target!
120
+ end
121
+
122
+ def add_address(xml, tag, address, options)
123
+ return if address.nil?
124
+ xml.tag! tag do
125
+ xml.tag! 'Name', address[:name] unless address[:name].blank?
126
+ xml.tag! 'EMail', options[:email] unless options[:email].blank?
127
+ xml.tag! 'Phone', address[:phone] unless address[:phone].blank?
128
+ xml.tag! 'CustCode', options[:customer] if !options[:customer].blank? && tag == 'BillTo'
129
+
130
+ xml.tag! 'Address' do
131
+ xml.tag! 'Street', address[:address1] unless address[:address1].blank?
132
+ xml.tag! 'City', address[:city] unless address[:city].blank?
133
+ xml.tag! 'State', address[:state].blank? ? "N/A" : address[:state]
134
+ xml.tag! 'Country', address[:country] unless address[:country].blank?
135
+ xml.tag! 'Zip', address[:zip] unless address[:zip].blank?
136
+ end
137
+ end
138
+ end
139
+
140
+ def parse(data)
141
+ response = {}
142
+ xml = REXML::Document.new(data)
143
+ root = REXML::XPath.first(xml, "//ResponseData")
144
+
145
+ # REXML::XPath in Ruby 1.8.6 is now unable to match nodes based on their attributes
146
+ tx_result = REXML::XPath.first(root, "//TransactionResult")
147
+
148
+ if tx_result && tx_result.attributes['Duplicate'] == "true"
149
+ response[:duplicate] = true
150
+ end
151
+
152
+ root.elements.to_a.each do |node|
153
+ parse_element(response, node)
154
+ end
155
+
156
+ response
157
+ end
158
+
159
+ def parse_element(response, node)
160
+ node_name = node.name.underscore.to_sym
161
+ case
162
+ when node_name == :rp_payment_result
163
+ # Since we'll have multiple history items, we can't just flatten everything
164
+ # down as we do everywhere else. RPPaymentResult elements are not contained
165
+ # in an RPPaymentResults element so we'll come here multiple times
166
+ response[node_name] ||= []
167
+ response[node_name] << ( payment_result_response = {} )
168
+ node.elements.each{ |e| parse_element(payment_result_response, e) }
169
+ when node.has_elements?
170
+ node.elements.each{|e| parse_element(response, e) }
171
+ when node_name.to_s =~ /amt$/
172
+ # *Amt elements don't put the value in the #text - instead they use a Currency attribute
173
+ response[node_name] = node.attributes['Currency']
174
+ when node_name == :ext_data
175
+ response[node.attributes['Name'].underscore.to_sym] = node.attributes['Value']
176
+ else
177
+ response[node_name] = node.text
178
+ end
179
+ end
180
+
181
+ def build_headers(content_length)
182
+ {
183
+ "Content-Type" => "text/xml",
184
+ "Content-Length" => content_length.to_s,
185
+ "X-VPS-Client-Timeout" => timeout.to_s,
186
+ "X-VPS-VIT-Integration-Product" => "ActiveMerchant",
187
+ "X-VPS-VIT-Runtime-Version" => RUBY_VERSION,
188
+ "X-VPS-Request-ID" => Utils.generate_unique_id
189
+ }
190
+ end
191
+
192
+ def commit(request_body, options = {})
193
+ request = build_request(request_body, options)
194
+ headers = build_headers(request.size)
195
+
196
+ response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, request, headers))
197
+
198
+ build_response(response[:result] == "0", response[:message], response,
199
+ :test => test?,
200
+ :authorization => response[:pn_ref] || response[:rp_ref],
201
+ :cvv_result => CVV_CODE[response[:cv_result]],
202
+ :avs_result => { :code => response[:avs_result] }
203
+ )
204
+ end
205
+ end
206
+ end
207
+ end
@@ -0,0 +1,39 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class PayflowExpressResponse < Response
4
+ def email
5
+ @params['e_mail']
6
+ end
7
+
8
+ def full_name
9
+ "#{@params['name']} #{@params['lastname']}"
10
+ end
11
+
12
+ def token
13
+ @params['token']
14
+ end
15
+
16
+ def payer_id
17
+ @params['payer_id']
18
+ end
19
+
20
+ # Really the shipping country, but it is all the information provided
21
+ def payer_country
22
+ address['country']
23
+ end
24
+
25
+ def address
26
+ { 'name' => full_name,
27
+ 'company' => nil,
28
+ 'address1' => @params['street'],
29
+ 'address2' => @params['shiptostreet2'],
30
+ 'city' => @params['city'],
31
+ 'state' => @params['state'],
32
+ 'country' => @params['country'],
33
+ 'zip' => @params['zip'],
34
+ 'phone' => nil
35
+ }
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,13 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class PayflowResponse < Response
4
+ def profile_id
5
+ @params['profile_id']
6
+ end
7
+
8
+ def payment_history
9
+ @payment_history ||= @params['rp_payment_result'].collect{ |result| result.stringify_keys } rescue []
10
+ end
11
+ end
12
+ end
13
+ end