start_activemerchant 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +1769 -0
- data/CONTRIBUTORS +540 -0
- data/MIT-LICENSE +20 -0
- data/README.md +226 -0
- data/lib/active_merchant.rb +67 -0
- data/lib/active_merchant/billing.rb +15 -0
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +72 -0
- data/lib/active_merchant/billing/check.rb +76 -0
- data/lib/active_merchant/billing/compatibility.rb +120 -0
- data/lib/active_merchant/billing/credit_card.rb +404 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +195 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/gateway.rb +291 -0
- data/lib/active_merchant/billing/gateways.rb +14 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +203 -0
- data/lib/active_merchant/billing/gateways/app55.rb +176 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +510 -0
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +976 -0
- data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +256 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +105 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +314 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
- data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +192 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +389 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +58 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +506 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +140 -0
- data/lib/active_merchant/billing/gateways/borgun.rb +211 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +574 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +20 -0
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +189 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +238 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +202 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +201 -0
- data/lib/active_merchant/billing/gateways/cecabank.rb +229 -0
- data/lib/active_merchant/billing/gateways/cenpos.rb +262 -0
- data/lib/active_merchant/billing/gateways/certo_direct.rb +278 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +216 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +200 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +143 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +210 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +720 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +600 -0
- data/lib/active_merchant/billing/gateways/dibs.rb +206 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +219 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +348 -0
- data/lib/active_merchant/billing/gateways/epay.rb +274 -0
- data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
- data/lib/active_merchant/billing/gateways/eway.rb +214 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +291 -0
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +522 -0
- data/lib/active_merchant/billing/gateways/exact.rb +227 -0
- data/lib/active_merchant/billing/gateways/ezic.rb +206 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +213 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +160 -0
- data/lib/active_merchant/billing/gateways/finansbank.rb +23 -0
- data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +160 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +413 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +261 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +179 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +207 -0
- data/lib/active_merchant/billing/gateways/hps.rb +287 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +277 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +246 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
- data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +66 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +219 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +163 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +175 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +457 -0
- data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +275 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +438 -0
- data/lib/active_merchant/billing/gateways/litle.rb +345 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +197 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +170 -0
- data/lib/active_merchant/billing/gateways/merchant_one.rb +114 -0
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +319 -0
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +268 -0
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +195 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +326 -0
- data/lib/active_merchant/billing/gateways/metrics_global.rb +303 -0
- data/lib/active_merchant/billing/gateways/migs.rb +280 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +219 -0
- data/lib/active_merchant/billing/gateways/monei.rb +307 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +309 -0
- data/lib/active_merchant/billing/gateways/moneris_us.rb +298 -0
- data/lib/active_merchant/billing/gateways/money_movers.rb +152 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +290 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +181 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +224 -0
- data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
- data/lib/active_merchant/billing/gateways/network_merchants.rb +242 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +256 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +435 -0
- data/lib/active_merchant/billing/gateways/omise.rb +319 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +194 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +314 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +834 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +47 -0
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +207 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +246 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +112 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +188 -0
- data/lib/active_merchant/billing/gateways/payex.rb +412 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +308 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +220 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +224 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +353 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +282 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +129 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +679 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +65 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +264 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +162 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +199 -0
- data/lib/active_merchant/billing/gateways/payu_in.rb +247 -0
- data/lib/active_merchant/billing/gateways/payway.rb +207 -0
- data/lib/active_merchant/billing/gateways/pin.rb +207 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +216 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +303 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +292 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +276 -0
- data/lib/active_merchant/billing/gateways/quickbooks.rb +280 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +26 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +188 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +240 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +227 -0
- data/lib/active_merchant/billing/gateways/qvalent.rb +179 -0
- data/lib/active_merchant/billing/gateways/realex.rb +298 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +406 -0
- data/lib/active_merchant/billing/gateways/s5.rb +226 -0
- data/lib/active_merchant/billing/gateways/sage.rb +173 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +89 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +115 -0
- data/lib/active_merchant/billing/gateways/sage/sage_vault.rb +149 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +399 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +143 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +263 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +201 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +281 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +105 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +451 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +283 -0
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +247 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +489 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +157 -0
- data/lib/active_merchant/billing/gateways/tns.rb +227 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +126 -0
- data/lib/active_merchant/billing/gateways/transax.rb +23 -0
- data/lib/active_merchant/billing/gateways/transnational.rb +10 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +416 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1516 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +259 -0
- data/lib/active_merchant/billing/gateways/vanco.rb +280 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +225 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +183 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
- data/lib/active_merchant/billing/gateways/wepay.rb +205 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +420 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +331 -0
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +204 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +181 -0
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +24 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +92 -0
- data/lib/active_merchant/connection.rb +172 -0
- data/lib/active_merchant/country.rb +332 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +35 -0
- data/lib/active_merchant/network_connection_retries.rb +79 -0
- data/lib/active_merchant/post_data.rb +24 -0
- data/lib/active_merchant/posts_data.rb +84 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +3866 -0
- data/lib/support/gateway_support.rb +71 -0
- data/lib/support/outbound_hosts.rb +28 -0
- data/lib/support/ssl_verify.rb +93 -0
- metadata +387 -0
@@ -0,0 +1,175 @@
|
|
1
|
+
require "nokogiri"
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class IppGateway < Gateway
|
6
|
+
self.live_url = 'https://www.ippayments.com.au/interface/api/dts.asmx'
|
7
|
+
self.test_url = 'https://demo.ippayments.com.au/interface/api/dts.asmx'
|
8
|
+
|
9
|
+
self.supported_countries = ['AU']
|
10
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :jcb]
|
11
|
+
|
12
|
+
self.homepage_url = 'http://www.ippayments.com.au/'
|
13
|
+
self.display_name = 'IPP'
|
14
|
+
|
15
|
+
self.money_format = :cents
|
16
|
+
|
17
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
18
|
+
"05" => STANDARD_ERROR_CODE[:card_declined],
|
19
|
+
"06" => STANDARD_ERROR_CODE[:processing_error],
|
20
|
+
"14" => STANDARD_ERROR_CODE[:invalid_number],
|
21
|
+
"54" => STANDARD_ERROR_CODE[:expired_card],
|
22
|
+
}
|
23
|
+
|
24
|
+
def initialize(options={})
|
25
|
+
requires!(options, :username, :password)
|
26
|
+
super
|
27
|
+
end
|
28
|
+
|
29
|
+
def purchase(money, payment, options={})
|
30
|
+
commit("SubmitSinglePayment") do |xml|
|
31
|
+
xml.Transaction do
|
32
|
+
xml.CustRef options[:order_id]
|
33
|
+
add_amount(xml, money)
|
34
|
+
xml.TrnType "1"
|
35
|
+
add_credit_card(xml, payment)
|
36
|
+
add_credentials(xml)
|
37
|
+
xml.TrnSource options[:ip]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def authorize(money, payment, options={})
|
43
|
+
commit("SubmitSinglePayment") do |xml|
|
44
|
+
xml.Transaction do
|
45
|
+
xml.CustRef options[:order_id]
|
46
|
+
add_amount(xml, money)
|
47
|
+
xml.TrnType "2"
|
48
|
+
add_credit_card(xml, payment)
|
49
|
+
add_credentials(xml)
|
50
|
+
xml.TrnSource options[:ip]
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def capture(money, authorization, options={})
|
56
|
+
commit("SubmitSingleCapture") do |xml|
|
57
|
+
xml.Capture do
|
58
|
+
xml.Receipt authorization
|
59
|
+
add_amount(xml, money)
|
60
|
+
add_credentials(xml)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def refund(money, authorization, options={})
|
66
|
+
commit("SubmitSingleRefund") do |xml|
|
67
|
+
xml.Refund do
|
68
|
+
xml.Receipt authorization
|
69
|
+
add_amount(xml, money)
|
70
|
+
add_credentials(xml)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def supports_scrubbing?
|
76
|
+
true
|
77
|
+
end
|
78
|
+
|
79
|
+
def scrub(transcript)
|
80
|
+
transcript.
|
81
|
+
gsub(%r((<CardNumber>)[^<]+(<))i, '\1[FILTERED]\2').
|
82
|
+
gsub(%r((<CVN>)[^<]+(<))i, '\1[FILTERED]\2').
|
83
|
+
gsub(%r((<Password>)[^<]+(<))i, '\1[FILTERED]\2')
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
def add_credentials(xml)
|
89
|
+
xml.Security do
|
90
|
+
xml.UserName @options[:username]
|
91
|
+
xml.Password @options[:password]
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def add_amount(xml, money)
|
96
|
+
xml.Amount amount(money)
|
97
|
+
end
|
98
|
+
|
99
|
+
def add_credit_card(xml, payment)
|
100
|
+
xml.CreditCard :Registered => "False" do
|
101
|
+
xml.CardNumber payment.number
|
102
|
+
xml.ExpM format(payment.month, :two_digits)
|
103
|
+
xml.ExpY format(payment.year, :four_digits)
|
104
|
+
xml.CVN payment.verification_value
|
105
|
+
xml.CardHolderName payment.name
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def parse(body)
|
110
|
+
element = Nokogiri::XML(body).root.first_element_child.first_element_child
|
111
|
+
|
112
|
+
response = {}
|
113
|
+
doc = Nokogiri::XML(element)
|
114
|
+
doc.root.elements.each do |e|
|
115
|
+
response[e.name.underscore.to_sym] = e.inner_text
|
116
|
+
end
|
117
|
+
response
|
118
|
+
end
|
119
|
+
|
120
|
+
def commit(action, &block)
|
121
|
+
headers = {
|
122
|
+
"Content-Type" => "text/xml; charset=utf-8",
|
123
|
+
"SOAPAction" => "http://www.ippayments.com.au/interface/api/dts/#{action}",
|
124
|
+
}
|
125
|
+
response = parse(ssl_post(commit_url, new_submit_xml(action, &block), headers))
|
126
|
+
|
127
|
+
Response.new(
|
128
|
+
success_from(response),
|
129
|
+
message_from(response),
|
130
|
+
response,
|
131
|
+
authorization: authorization_from(response),
|
132
|
+
error_code: error_code_from(response),
|
133
|
+
test: test?,
|
134
|
+
)
|
135
|
+
end
|
136
|
+
|
137
|
+
def new_submit_xml(action)
|
138
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
139
|
+
xml.instruct!
|
140
|
+
xml.soap :Envelope, "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance", "xmlns:xsd" => "http://www.w3.org/2001/XMLSchema", "xmlns:soap" => "http://schemas.xmlsoap.org/soap/envelope/" do
|
141
|
+
xml.soap :Body do
|
142
|
+
xml.__send__(action, "xmlns" => "http://www.ippayments.com.au/interface/api/dts") do
|
143
|
+
xml.trnXML do
|
144
|
+
inner_xml = Builder::XmlMarkup.new(indent: 2)
|
145
|
+
yield(inner_xml)
|
146
|
+
xml.cdata!(inner_xml.target!)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
xml.target!
|
152
|
+
end
|
153
|
+
|
154
|
+
def commit_url
|
155
|
+
(test? ? test_url : live_url)
|
156
|
+
end
|
157
|
+
|
158
|
+
def success_from(response)
|
159
|
+
(response[:response_code] == "0")
|
160
|
+
end
|
161
|
+
|
162
|
+
def error_code_from(response)
|
163
|
+
STANDARD_ERROR_CODE_MAPPING[response[:declined_code]]
|
164
|
+
end
|
165
|
+
|
166
|
+
def message_from(response)
|
167
|
+
response[:declined_message]
|
168
|
+
end
|
169
|
+
|
170
|
+
def authorization_from(response)
|
171
|
+
response[:receipt]
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
@@ -0,0 +1,457 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
# For more information on the Iridium Gateway please download the
|
4
|
+
# documentation from their Merchant Management System.
|
5
|
+
#
|
6
|
+
# The login and password are not the username and password you use to
|
7
|
+
# login to the Iridium Merchant Management System. Instead, you will
|
8
|
+
# use the API username and password you were issued separately.
|
9
|
+
class IridiumGateway < Gateway
|
10
|
+
self.live_url = self.test_url = 'https://gw1.iridiumcorp.net/'
|
11
|
+
|
12
|
+
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
13
|
+
self.supported_countries = ['GB', 'ES']
|
14
|
+
self.default_currency = 'EUR'
|
15
|
+
self.money_format = :cents
|
16
|
+
|
17
|
+
# The card types supported by the payment gateway
|
18
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :maestro, :jcb, :solo, :diners_club]
|
19
|
+
|
20
|
+
# The homepage URL of the gateway
|
21
|
+
self.homepage_url = 'http://www.iridiumcorp.co.uk/'
|
22
|
+
|
23
|
+
# The name of the gateway
|
24
|
+
self.display_name = 'Iridium'
|
25
|
+
|
26
|
+
CURRENCY_CODES = {
|
27
|
+
"AED" => '784',
|
28
|
+
"AFN" => '971',
|
29
|
+
"ALL" => '008',
|
30
|
+
"AMD" => '051',
|
31
|
+
"ANG" => '532',
|
32
|
+
"AOA" => '973',
|
33
|
+
"ARS" => '032',
|
34
|
+
"AUD" => '036',
|
35
|
+
"AWG" => '533',
|
36
|
+
"AZN" => '944',
|
37
|
+
"BAM" => '977',
|
38
|
+
"BBD" => '052',
|
39
|
+
"BDT" => '050',
|
40
|
+
"BGN" => '975',
|
41
|
+
"BHD" => '048',
|
42
|
+
"BIF" => '108',
|
43
|
+
"BMD" => '060',
|
44
|
+
"BND" => '096',
|
45
|
+
"BOB" => '068',
|
46
|
+
"BOV" => '984',
|
47
|
+
"BRL" => '986',
|
48
|
+
"BSD" => '044',
|
49
|
+
"BTN" => '064',
|
50
|
+
"BWP" => '072',
|
51
|
+
"BYR" => '974',
|
52
|
+
"BZD" => '084',
|
53
|
+
"CAD" => '124',
|
54
|
+
"CDF" => '976',
|
55
|
+
"CHE" => '947',
|
56
|
+
"CHF" => '756',
|
57
|
+
"CHW" => '948',
|
58
|
+
"CLF" => '990',
|
59
|
+
"CLP" => '152',
|
60
|
+
"CNY" => '156',
|
61
|
+
"COP" => '170',
|
62
|
+
"COU" => '970',
|
63
|
+
"CRC" => '188',
|
64
|
+
"CUP" => '192',
|
65
|
+
"CVE" => '132',
|
66
|
+
"CYP" => '196',
|
67
|
+
"CZK" => '203',
|
68
|
+
"DJF" => '262',
|
69
|
+
"DKK" => '208',
|
70
|
+
"DOP" => '214',
|
71
|
+
"DZD" => '012',
|
72
|
+
"EEK" => '233',
|
73
|
+
"EGP" => '818',
|
74
|
+
"ERN" => '232',
|
75
|
+
"ETB" => '230',
|
76
|
+
"EUR" => '978',
|
77
|
+
"FJD" => '242',
|
78
|
+
"FKP" => '238',
|
79
|
+
"GBP" => '826',
|
80
|
+
"GEL" => '981',
|
81
|
+
"GHS" => '288',
|
82
|
+
"GIP" => '292',
|
83
|
+
"GMD" => '270',
|
84
|
+
"GNF" => '324',
|
85
|
+
"GTQ" => '320',
|
86
|
+
"GYD" => '328',
|
87
|
+
"HKD" => '344',
|
88
|
+
"HNL" => '340',
|
89
|
+
"HRK" => '191',
|
90
|
+
"HTG" => '332',
|
91
|
+
"HUF" => '348',
|
92
|
+
"IDR" => '360',
|
93
|
+
"ILS" => '376',
|
94
|
+
"INR" => '356',
|
95
|
+
"IQD" => '368',
|
96
|
+
"IRR" => '364',
|
97
|
+
"ISK" => '352',
|
98
|
+
"JMD" => '388',
|
99
|
+
"JOD" => '400',
|
100
|
+
"JPY" => '392',
|
101
|
+
"KES" => '404',
|
102
|
+
"KGS" => '417',
|
103
|
+
"KHR" => '116',
|
104
|
+
"KMF" => '174',
|
105
|
+
"KPW" => '408',
|
106
|
+
"KRW" => '410',
|
107
|
+
"KWD" => '414',
|
108
|
+
"KYD" => '136',
|
109
|
+
"KZT" => '398',
|
110
|
+
"LAK" => '418',
|
111
|
+
"LBP" => '422',
|
112
|
+
"LKR" => '144',
|
113
|
+
"LRD" => '430',
|
114
|
+
"LSL" => '426',
|
115
|
+
"LTL" => '440',
|
116
|
+
"LVL" => '428',
|
117
|
+
"LYD" => '434',
|
118
|
+
"MAD" => '504',
|
119
|
+
"MDL" => '498',
|
120
|
+
"MGA" => '969',
|
121
|
+
"MKD" => '807',
|
122
|
+
"MMK" => '104',
|
123
|
+
"MNT" => '496',
|
124
|
+
"MOP" => '446',
|
125
|
+
"MRO" => '478',
|
126
|
+
"MTL" => '470',
|
127
|
+
"MUR" => '480',
|
128
|
+
"MVR" => '462',
|
129
|
+
"MWK" => '454',
|
130
|
+
"MXN" => '484',
|
131
|
+
"MXV" => '979',
|
132
|
+
"MYR" => '458',
|
133
|
+
"MZN" => '943',
|
134
|
+
"NAD" => '516',
|
135
|
+
"NGN" => '566',
|
136
|
+
"NIO" => '558',
|
137
|
+
"NOK" => '578',
|
138
|
+
"NPR" => '524',
|
139
|
+
"NZD" => '554',
|
140
|
+
"OMR" => '512',
|
141
|
+
"PAB" => '590',
|
142
|
+
"PEN" => '604',
|
143
|
+
"PGK" => '598',
|
144
|
+
"PHP" => '608',
|
145
|
+
"PKR" => '586',
|
146
|
+
"PLN" => '985',
|
147
|
+
"PYG" => '600',
|
148
|
+
"QAR" => '634',
|
149
|
+
"ROL" => '642',
|
150
|
+
"RON" => '946',
|
151
|
+
"RSD" => '941',
|
152
|
+
"RUB" => '643',
|
153
|
+
"RWF" => '646',
|
154
|
+
"SAR" => '682',
|
155
|
+
"SBD" => '090',
|
156
|
+
"SCR" => '690',
|
157
|
+
"SDG" => '938',
|
158
|
+
"SEK" => '752',
|
159
|
+
"SGD" => '702',
|
160
|
+
"SHP" => '654',
|
161
|
+
"SKK" => '703',
|
162
|
+
"SLL" => '694',
|
163
|
+
"SOS" => '706',
|
164
|
+
"SRD" => '968',
|
165
|
+
"STD" => '678',
|
166
|
+
"SYP" => '760',
|
167
|
+
"SZL" => '748',
|
168
|
+
"THB" => '764',
|
169
|
+
"TJS" => '972',
|
170
|
+
"TMM" => '795',
|
171
|
+
"TND" => '788',
|
172
|
+
"TOP" => '776',
|
173
|
+
"TRY" => '949',
|
174
|
+
"TTD" => '780',
|
175
|
+
"TWD" => '901',
|
176
|
+
"TZS" => '834',
|
177
|
+
"UAH" => '980',
|
178
|
+
"UGX" => '800',
|
179
|
+
"USD" => '840',
|
180
|
+
"USN" => '997',
|
181
|
+
"USS" => '998',
|
182
|
+
"UYU" => '858',
|
183
|
+
"UZS" => '860',
|
184
|
+
"VEB" => '862',
|
185
|
+
"VND" => '704',
|
186
|
+
"VUV" => '548',
|
187
|
+
"WST" => '882',
|
188
|
+
"XAF" => '950',
|
189
|
+
"XAG" => '961',
|
190
|
+
"XAU" => '959',
|
191
|
+
"XBA" => '955',
|
192
|
+
"XBB" => '956',
|
193
|
+
"XBC" => '957',
|
194
|
+
"XBD" => '958',
|
195
|
+
"XCD" => '951',
|
196
|
+
"XDR" => '960',
|
197
|
+
"XOF" => '952',
|
198
|
+
"XPD" => '964',
|
199
|
+
"XPF" => '953',
|
200
|
+
"XPT" => '962',
|
201
|
+
"XTS" => '963',
|
202
|
+
"XXX" => '999',
|
203
|
+
"YER" => '886',
|
204
|
+
"ZAR" => '710',
|
205
|
+
"ZMK" => '894',
|
206
|
+
"ZWD" => '716',
|
207
|
+
}
|
208
|
+
|
209
|
+
AVS_CODE = {
|
210
|
+
"PASSED" => "Y",
|
211
|
+
"FAILED" => "N",
|
212
|
+
"PARTIAL" => "X",
|
213
|
+
"NOT_CHECKED" => "X",
|
214
|
+
"UNKNOWN" => "X"
|
215
|
+
}
|
216
|
+
|
217
|
+
CVV_CODE = {
|
218
|
+
"PASSED" => "M",
|
219
|
+
"FAILED" => "N",
|
220
|
+
"PARTIAL" => "I",
|
221
|
+
"NOT_CHECKED" => "P",
|
222
|
+
"UNKNOWN" => "U"
|
223
|
+
}
|
224
|
+
|
225
|
+
def initialize(options = {})
|
226
|
+
requires!(options, :login, :password)
|
227
|
+
super
|
228
|
+
end
|
229
|
+
|
230
|
+
def authorize(money, payment_source, options = {})
|
231
|
+
setup_address_hash(options)
|
232
|
+
|
233
|
+
if payment_source.respond_to?(:number)
|
234
|
+
commit(build_purchase_request('PREAUTH', money, payment_source, options), options)
|
235
|
+
else
|
236
|
+
commit(build_reference_request('PREAUTH', money, payment_source, options), options)
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
def purchase(money, payment_source, options = {})
|
241
|
+
setup_address_hash(options)
|
242
|
+
|
243
|
+
if payment_source.respond_to?(:number)
|
244
|
+
commit(build_purchase_request('SALE', money, payment_source, options), options)
|
245
|
+
else
|
246
|
+
commit(build_reference_request('SALE', money, payment_source, options), options)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def capture(money, authorization, options = {})
|
251
|
+
commit(build_reference_request('COLLECTION', money, authorization, options), options)
|
252
|
+
end
|
253
|
+
|
254
|
+
def credit(money, authorization, options={})
|
255
|
+
ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE
|
256
|
+
refund(money, authorization, options)
|
257
|
+
end
|
258
|
+
|
259
|
+
def refund(money, authorization, options={})
|
260
|
+
commit(build_reference_request('REFUND', money, authorization, options), options)
|
261
|
+
end
|
262
|
+
|
263
|
+
def void(authorization, options={})
|
264
|
+
commit(build_reference_request('VOID', nil, authorization, options), options)
|
265
|
+
end
|
266
|
+
|
267
|
+
private
|
268
|
+
|
269
|
+
def build_purchase_request(type, money, creditcard, options)
|
270
|
+
options.merge!(:action => 'CardDetailsTransaction')
|
271
|
+
build_request(options) do |xml|
|
272
|
+
add_purchase_data(xml, type, money, options)
|
273
|
+
add_creditcard(xml, creditcard)
|
274
|
+
add_customerdetails(xml, creditcard, options[:billing_address], options)
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
def build_reference_request(type, money, authorization, options)
|
279
|
+
options.merge!(:action => 'CrossReferenceTransaction')
|
280
|
+
order_id, cross_reference, _ = authorization.split(";")
|
281
|
+
build_request(options) do |xml|
|
282
|
+
if money
|
283
|
+
details = {'CurrencyCode' => currency_code(options[:currency] || default_currency), 'Amount' => amount(money)}
|
284
|
+
else
|
285
|
+
details = {'CurrencyCode' => currency_code(default_currency), 'Amount' => '0'}
|
286
|
+
end
|
287
|
+
xml.tag! 'TransactionDetails', details do
|
288
|
+
xml.tag! 'MessageDetails', {'TransactionType' => type, 'CrossReference' => cross_reference}
|
289
|
+
xml.tag! 'OrderID', (options[:order_id] || order_id)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
def build_request(options)
|
295
|
+
requires!(options, :action)
|
296
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
297
|
+
xml.instruct!(:xml, :version => '1.0', :encoding => 'utf-8')
|
298
|
+
xml.tag! 'soap:Envelope', { 'xmlns:soap' => 'http://schemas.xmlsoap.org/soap/envelope/',
|
299
|
+
'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
|
300
|
+
'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema'} do
|
301
|
+
xml.tag! 'soap:Body' do
|
302
|
+
xml.tag! options[:action], {'xmlns' => "https://www.thepaymentgateway.net/"} do
|
303
|
+
xml.tag! 'PaymentMessage' do
|
304
|
+
add_merchant_data(xml, options)
|
305
|
+
yield(xml)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
end
|
309
|
+
end
|
310
|
+
xml.target!
|
311
|
+
end
|
312
|
+
|
313
|
+
def setup_address_hash(options)
|
314
|
+
options[:billing_address] = options[:billing_address] || options[:address] || {}
|
315
|
+
options[:shipping_address] = options[:shipping_address] || {}
|
316
|
+
end
|
317
|
+
|
318
|
+
def add_purchase_data(xml, type, money, options)
|
319
|
+
requires!(options, :order_id)
|
320
|
+
xml.tag! 'TransactionDetails', {'Amount' => amount(money), 'CurrencyCode' => currency_code(options[:currency] || currency(money))} do
|
321
|
+
xml.tag! 'MessageDetails', {'TransactionType' => type}
|
322
|
+
xml.tag! 'OrderID', options[:order_id]
|
323
|
+
xml.tag! 'TransactionControl' do
|
324
|
+
xml.tag! 'ThreeDSecureOverridePolicy', 'FALSE'
|
325
|
+
xml.tag! 'EchoAVSCheckResult', 'TRUE'
|
326
|
+
xml.tag! 'EchoCV2CheckResult', 'TRUE'
|
327
|
+
end
|
328
|
+
end
|
329
|
+
end
|
330
|
+
|
331
|
+
def add_customerdetails(xml, creditcard, address, options, shipTo = false)
|
332
|
+
xml.tag! 'CustomerDetails' do
|
333
|
+
if address
|
334
|
+
unless address[:country].blank?
|
335
|
+
country_code = Country.find(address[:country]).code(:numeric)
|
336
|
+
end
|
337
|
+
xml.tag! 'BillingAddress' do
|
338
|
+
xml.tag! 'Address1', address[:address1]
|
339
|
+
xml.tag! 'Address2', address[:address2]
|
340
|
+
xml.tag! 'City', address[:city]
|
341
|
+
xml.tag! 'State', address[:state]
|
342
|
+
xml.tag! 'PostCode', address[:zip]
|
343
|
+
xml.tag! 'CountryCode', country_code if country_code
|
344
|
+
end
|
345
|
+
xml.tag! 'PhoneNumber', address[:phone]
|
346
|
+
end
|
347
|
+
|
348
|
+
xml.tag! 'EmailAddress', options[:email]
|
349
|
+
xml.tag! 'CustomerIPAddress', options[:ip] || "127.0.0.1"
|
350
|
+
end
|
351
|
+
end
|
352
|
+
|
353
|
+
def add_creditcard(xml, creditcard)
|
354
|
+
xml.tag! 'CardDetails' do
|
355
|
+
xml.tag! 'CardName', creditcard.name
|
356
|
+
xml.tag! 'CV2', creditcard.verification_value if creditcard.verification_value
|
357
|
+
xml.tag! 'CardNumber', creditcard.number
|
358
|
+
xml.tag! 'ExpiryDate', { 'Month' => creditcard.month.to_s.rjust(2, "0"), 'Year' => creditcard.year.to_s[/\d\d$/] }
|
359
|
+
end
|
360
|
+
end
|
361
|
+
|
362
|
+
def add_merchant_data(xml, options)
|
363
|
+
xml.tag! 'MerchantAuthentication', {"MerchantID" => @options[:login], "Password" => @options[:password]}
|
364
|
+
end
|
365
|
+
|
366
|
+
def commit(request, options)
|
367
|
+
requires!(options, :action)
|
368
|
+
response = parse(ssl_post(test? ? self.test_url : self.live_url, request,
|
369
|
+
{"SOAPAction" => "https://www.thepaymentgateway.net/" + options[:action],
|
370
|
+
"Content-Type" => "text/xml; charset=utf-8" }))
|
371
|
+
|
372
|
+
success = response[:transaction_result][:status_code] == "0"
|
373
|
+
message = response[:transaction_result][:message]
|
374
|
+
authorization = success ? [ options[:order_id], response[:transaction_output_data][:cross_reference], response[:transaction_output_data][:auth_code] ].compact.join(";") : nil
|
375
|
+
|
376
|
+
Response.new(success, message, response,
|
377
|
+
:test => test?,
|
378
|
+
:authorization => authorization,
|
379
|
+
:avs_result => {
|
380
|
+
:street_match => AVS_CODE[ response[:transaction_output_data][:address_numeric_check_result] ],
|
381
|
+
:postal_match => AVS_CODE[ response[:transaction_output_data][:post_code_check_result] ],
|
382
|
+
},
|
383
|
+
:cvv_result => CVV_CODE[ response[:transaction_output_data][:cv2_check_result] ]
|
384
|
+
)
|
385
|
+
end
|
386
|
+
|
387
|
+
def parse(xml)
|
388
|
+
reply = {}
|
389
|
+
xml = REXML::Document.new(xml)
|
390
|
+
if (root = REXML::XPath.first(xml, "//CardDetailsTransactionResponse")) or
|
391
|
+
(root = REXML::XPath.first(xml, "//CrossReferenceTransactionResponse"))
|
392
|
+
root.elements.to_a.each do |node|
|
393
|
+
case node.name
|
394
|
+
when 'Message'
|
395
|
+
reply[:message] = reply(node.text)
|
396
|
+
else
|
397
|
+
parse_element(reply, node)
|
398
|
+
end
|
399
|
+
end
|
400
|
+
elsif root = REXML::XPath.first(xml, "//soap:Fault")
|
401
|
+
parse_element(reply, root)
|
402
|
+
reply[:message] = "#{reply[:faultcode]}: #{reply[:faultstring]}"
|
403
|
+
end
|
404
|
+
reply
|
405
|
+
end
|
406
|
+
|
407
|
+
def parse_element(reply, node)
|
408
|
+
case node.name
|
409
|
+
when "CrossReferenceTransactionResult"
|
410
|
+
reply[:transaction_result] = {}
|
411
|
+
node.attributes.each do |a,b|
|
412
|
+
reply[:transaction_result][a.underscore.to_sym] = b
|
413
|
+
end
|
414
|
+
node.elements.each{|e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
415
|
+
|
416
|
+
when "CardDetailsTransactionResult"
|
417
|
+
reply[:transaction_result] = {}
|
418
|
+
node.attributes.each do |a,b|
|
419
|
+
reply[:transaction_result][a.underscore.to_sym] = b
|
420
|
+
end
|
421
|
+
node.elements.each{|e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
422
|
+
|
423
|
+
when "TransactionOutputData"
|
424
|
+
reply[:transaction_output_data] = {}
|
425
|
+
node.attributes.each{|a,b| reply[:transaction_output_data][a.underscore.to_sym] = b }
|
426
|
+
node.elements.each{|e| parse_element(reply[:transaction_output_data], e) } if node.has_elements?
|
427
|
+
when "CustomVariables"
|
428
|
+
reply[:custom_variables] = {}
|
429
|
+
node.attributes.each{|a,b| reply[:custom_variables][a.underscore.to_sym] = b }
|
430
|
+
node.elements.each{|e| parse_element(reply[:custom_variables], e) } if node.has_elements?
|
431
|
+
when "GatewayEntryPoints"
|
432
|
+
reply[:gateway_entry_points] = {}
|
433
|
+
node.attributes.each{|a,b| reply[:gateway_entry_points][a.underscore.to_sym] = b }
|
434
|
+
node.elements.each{|e| parse_element(reply[:gateway_entry_points], e) } if node.has_elements?
|
435
|
+
else
|
436
|
+
k = node.name.underscore.to_sym
|
437
|
+
if node.has_elements?
|
438
|
+
reply[k] = {}
|
439
|
+
node.elements.each{|e| parse_element(reply[k], e) }
|
440
|
+
else
|
441
|
+
if node.has_attributes?
|
442
|
+
reply[k] = {}
|
443
|
+
node.attributes.each{|a,b| reply[k][a.underscore.to_sym] = b }
|
444
|
+
else
|
445
|
+
reply[k] = node.text
|
446
|
+
end
|
447
|
+
end
|
448
|
+
end
|
449
|
+
reply
|
450
|
+
end
|
451
|
+
|
452
|
+
def currency_code(currency)
|
453
|
+
CURRENCY_CODES[currency]
|
454
|
+
end
|
455
|
+
end
|
456
|
+
end
|
457
|
+
end
|