inital checking of OpenECHO module
[Business-OnlinePayment-OpenECHO.git] / blib / lib / Business / OnlinePayment / OpenECHO.pm
1 ##############################################################################\r
2 # Business::OnlinePayment::OpenECHO\r
3 #\r
4 # Credit card transactions via SSL to\r
5 # Electronic Clearing House (ECHO) Systems\r
6 #\r
7 # Refer to ECHO's documentation for more info\r
8 # http://www.openecho.com/echo_gateway_guide.html\r
9 #\r
10 # AUTHOR\r
11 # Michael Lehmkuhl <michael@electricpulp.com>\r
12 #\r
13 # SPECIAL THANKS\r
14 # Jim Darden <jdarden@echo-inc.com>\r
15 # Dan Browning <db@kavod.com>\r
16 #\r
17 # BUSINESS::ONLINEPAYMENT IMPLEMENTATION\r
18 # Ivan Kohler <ivan-openecho@420.am>\r
19 #\r
20 # VERSION HISTORY\r
21 # + v1.2        08/17/2002 Corrected problem with certain string comparisons.\r
22 # + v1.3        08/23/2002 Converted Interchange GlobalSub to Vend::Payment module.\r
23 # + v1.3.1      11/12/2002 Updated the OpenECHO_example.perl test script.\r
24 # + v1.4        11/18/2002 Corrected a problem with Submit method when using LWP.\r
25 # + v1.5        03/29/2003 Updated for additional status and avs_result codes.\r
26 # + v1.6        08/26/2003 Cleaned up code (salim qadeer sqadeer@echo-inc.com)\r
27 # + v1.6.2      09/23/2003 Added DH transaction type (salim qadeer sqadeer@echo-inc.com)\r
28 # --------\r
29 # + v0.1        08/26/2004 Business::OnlinePayment implementation\r
30 #\r
31 # Copyright (C) 2002 Electric Pulp. <info@electricpulp.com>\r
32 # Copyright (C) 2004 Ivan Kohler\r
33 #\r
34 # This program is free software; you can redistribute it and/or modify\r
35 # it under the terms of the GNU General Public License as published by\r
36 # the Free Software Foundation; either version 2 of the License, or\r
37 # (at your option) any later version.\r
38 #\r
39 # This program is distributed in the hope that it will be useful,\r
40 # but WITHOUT ANY WARRANTY; without even the implied warranty of\r
41 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
42 # GNU General Public License for more details.\r
43 #\r
44 # You should have received a copy of the GNU General Public\r
45 # License along with this program; if not, write to the Free\r
46 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,\r
47 # MA  02111-1307  USA.\r
48 #\r
49 ################################################################################\r
50 \r
51 package Business::OnlinePayment::OpenECHO;\r
52 \r
53 use strict;\r
54 use Carp;\r
55 use Business::OnlinePayment 3;\r
56 use Business::OnlinePayment::HTTPS;\r
57 use vars qw($VERSION @ISA);\r
58 \r
59 @ISA = qw(Business::OnlinePayment::HTTPS);\r
60 $VERSION = '0.01';\r
61 \r
62 sub set_defaults {\r
63         my $self = shift;\r
64 \r
65         $self->server('wwws.echo-inc.com');\r
66         $self->port('443');\r
67         $self->path('/scripts/INR200.EXE');\r
68 \r
69         $self->build_subs(qw(\r
70           order_number avs_code\r
71                          ));\r
72         # order_type\r
73         # md5 cvv2_response cavv_response\r
74 \r
75 }\r
76 \r
77 #map_fileds originally from AuthorizeNet.pm\r
78 \r
79 sub map_fields {\r
80     my($self) = @_;\r
81 \r
82     ##AD (Address Verification)  - 0.18 cents\r
83     #AS (Authorization) - 0.18 cents\r
84     #AV (Authorization with Address Verification) - 0.18 cents\r
85     #CR (Credit) - 0.18 cents + 0.12 cents (discount fee returned to merchant)\r
86     #DS (Deposit) - 0.18 cents + 0.12 cents\r
87     #ES (Authorization and Deposit) - 0.18 cents + 0.12 cents + an extra 0.17%\r
88     #EV (Authorization and Deposit with Address Verification) - 0.18 cents + 0.12 cents\r
89     ##CK (System check) - 0.18 cents\r
90     #DV (Electronic Check Verification) - check your contract\r
91     #DD (Electronic Check Debit with Verification) - check your contract\r
92     #DH (Electronic Check Debit ACH Only) - check your contract\r
93     #DC (Electronic Check Credit) - check your contract\r
94 \r
95     my %content = $self->content();\r
96 \r
97     my $avs = $self->require_avs;\r
98     $avs = 1 unless defined($avs) && length($avs); #default AVS on unless explicitly turned off\r
99 \r
100     my %map;\r
101     if (\r
102       $content{'type'} =~ /^(cc|visa|mastercard|american express|discover)$/i\r
103     ) {\r
104       if ( $avs ) {\r
105         %map = ( 'normal authorization' => 'EV',\r
106                  'authorization only'   => 'AV',\r
107                  'credit'               => 'CR',\r
108                  'post authorization'   => 'DS',\r
109                  #'void'                 => 'VOID',\r
110                );\r
111       } else {\r
112         %map = ( 'normal authorization' => 'ES',\r
113                  'authorization only'   => 'AS',\r
114                  'credit'               => 'CR',\r
115                  'post authorization'   => 'DS',\r
116                  #'void'                 => 'VOID',\r
117                );\r
118       }\r
119     } elsif ( $content{'type'} =~ /^check$/i ) {\r
120       %map = ( 'normal authorization' => 'DD',\r
121                'authorization only'   => 'DV',\r
122                'credit'               => 'DC',\r
123                'post authorization'   => 'DH',\r
124                #'void'                 => 'VOID',\r
125              );\r
126     } else {\r
127       croak 'Unknown type: '. $content{'type'};\r
128     }\r
129 \r
130     $content{'type'} = $map{lc($content{'action'})}\r
131       or croak 'Unknown action: '. $content{'action'};\r
132 \r
133     $self->transaction_type($content{'type'});\r
134 \r
135     # stuff it back into %content\r
136     $self->content(%content);\r
137 \r
138 }\r
139 \r
140 sub submit {\r
141     my($self) = @_;\r
142 \r
143     $self->map_fields();\r
144     $self->remap_fields(\r
145         #                => 'order_type',\r
146         type             => 'transaction_type',\r
147         #action          =>\r
148         login            => 'merchant_echo_id',\r
149         password         => 'merchant_pin',\r
150         #                => 'isp_echo_id',\r
151         #                => 'isp_pin',\r
152         #transaction_key =>\r
153         authorization    => 'authorization', # auth_code => 'authorization',\r
154         customer_ip      => 'billing_ip_address',\r
155         #                   'billing_prefix',\r
156         name             => 'billing_name',\r
157         first_name       => 'billing_first_name',\r
158         last_name        => 'billing_last_name',\r
159         company          => 'billing_company_name',\r
160         address          => 'billing_address_1',\r
161         #                => 'billing_address_2',\r
162         city             => 'billing_city',\r
163         state            => 'billing_state',\r
164         zip              => 'billing_zip',\r
165         country          => 'billing_country',\r
166         phone            => 'billing_phone',\r
167         fax              => 'billing_fax',\r
168         email            => 'billing_email',\r
169         card_number      => 'cc_number',\r
170         #                => 'ccexp_month',\r
171         #                => 'ccexp_year',\r
172         #                => 'counter',\r
173         #                => 'debug',\r
174 \r
175         #XXX#            => 'ec_*',\r
176 \r
177         'amount'         => 'grand_total',\r
178         #                => 'merchant_email',\r
179         #invoice_number  =>\r
180         #customer_id     =>\r
181         #                => 'merchant_trace_nbr',\r
182         #                => 'original_amount',\r
183         #                => 'original_trandate_mm',\r
184         #                => 'original_trandate_dd',\r
185         #                => 'original_trandate_yyyy',\r
186         #                => 'original_reference',\r
187         order_number     => 'order_number',\r
188         #                => 'shipping_flag',\r
189 \r
190         #description       =>\r
191         #currency          =>\r
192 \r
193         #ship_last_name    =>\r
194         #ship_first_name   =>\r
195         #ship_company      =>\r
196         #ship_address      =>\r
197         #ship_city         =>\r
198         #ship_state        =>\r
199         #ship_zip          =>\r
200         #ship_country      =>\r
201 \r
202         #expiration        =>\r
203         cvv2              => 'cnp_security',\r
204 \r
205         #check_type        =>\r
206         #account_name      => 'ec_last_name' & 'ec_first_name',\r
207         account_number    => 'ec_account',\r
208         #account_type      =>\r
209         bank_name         => 'ec_bank_name',\r
210         routing_code      => 'ec_rt',\r
211         #customer_org      =>\r
212         #customer_ssn      =>\r
213         license_num       => 'ec_id_number',\r
214         license_state     => 'ec_id_state',\r
215         #license_dob       =>\r
216 \r
217         #recurring_billing => 'cnp_recurring',\r
218     );\r
219 \r
220     #XXX hosted order_type?\r
221     $self->{_content}{order_type} = 'S';\r
222 \r
223     #XXX counter field shouldn't be just a random integer (but it does need a\r
224     #default this way i guess...\r
225     $self->{_content}{counter} = int(rand(2**31));\r
226 \r
227     #ccexp_month & ccexp_year\r
228     $self->{_content}{'expiration'} =~ /^(\d+)\D+\d*(\d{2})$/\r
229       or croak "unparsable expiration ". $self->{_content}{expiration};\r
230     my( $month, $year ) = ( $1, $2 );\r
231     $month = '0'. $month if $month =~ /^\d$/;\r
232     $self->{_content}{ccexp_month} = $month;\r
233     $self->{_content}{ccexp_year} = $year;\r
234 \r
235     $self->{_content}{cnp_recurring} = 'Y'\r
236       if exists($self->{_content}{recurring_billing})\r
237       && $self->{_content}{recurring_billing} =~ /^y/i;\r
238 \r
239     #XXX echeck use customer_org and account_type to generate ec_account_type\r
240 \r
241     #XXX set required fields\r
242     # https://wwws.echo-inc.com/ISPGuide-Fields2.asp\r
243     $self->required_fields();\r
244 \r
245     my( $page, $response, %reply_headers) =\r
246       $self->https_get( $self->get_fields( $self->fields ) );\r
247 \r
248     #XXX check $response and die if not 200?\r
249 \r
250     my $echotype1 = $self->GetEchoReturn($page, 1);\r
251     my $echotype2 = $self->GetEchoReturn($page, 2);\r
252     my $echotype3 = $self->GetEchoReturn($page, 3);\r
253     my $openecho  = $self->GetEchoReturn($page, 'OPEN');\r
254 \r
255     #   server_response\r
256     #   avs_code\r
257     #   order_number\r
258     #   is_success\r
259     #   result_code\r
260     #   authorization\r
261     #md5 cvv2_response cavv_response ...?\r
262 \r
263     # Get all the metadata.\r
264     $self->server_response($page);\r
265     $self->authorization( $self->GetEchoProp($echotype3, 'auth_code') );\r
266     $self->order_number(  $self->GetEchoProp($echotype3, 'order_number') );\r
267 \r
268     #XXX ???\r
269     #$self->reference(     $this->GetEchoProp($echotype3, "echo_reference");\r
270 \r
271     $self->result_code(   $self->GetEchoProp($echotype3, 'status') );\r
272     $self->avs_code(      $self->GetEchoProp($echotype3, 'avs_result') );\r
273 \r
274     #XXX ???\r
275     #$self->security_result( $self->GetEchoProp($echotype3, 'security_result');\r
276     #$self->mac( $self->GetEchoProp($echotype3, 'mac') );\r
277     #$self->decline_code( $self->GetEchoProp($echotype3, 'decline_code') );\r
278 \r
279     if ($self->result_code =~ /^[GR]$/ ) { #success\r
280 \r
281       #XXX special case for AVS-only transactions we don't handle yet\r
282       #if ($self->transaction_type eq "AD") {\r
283       #  if ($self->avs_code =~ /^[XYDM]$/ ) {\r
284       #    $self->is_success(1);\r
285       #  } else {\r
286       #    $self->is_success(0);\r
287       #  }\r
288       #} else { \r
289         $self->is_success(1);\r
290       #}\r
291 \r
292     } else {\r
293       $self->is_success(0);\r
294 \r
295       my $decline_code = $self->GetEchoProp($echotype3, 'decline_code');\r
296       my $error_message = $self->error($decline_code);\r
297       if ( $decline_code =~ /^(00)?30$/ ) {\r
298         $echotype2 =~ s/<br>/\n/ig;\r
299         $echotype2 =~ s'</?(b|pre)>''ig;\r
300         $error_message .= ": $echotype2";\r
301       }\r
302       $self->error_message( $error_message );\r
303 \r
304     }\r
305 \r
306     $self->is_success(0) if $page eq '';\r
307 \r
308 }\r
309 \r
310 \r
311 sub fields {\r
312         my $self = shift;\r
313 \r
314         my @fields = qw(\r
315           order_type\r
316           transaction_type\r
317           merchant_echo_id\r
318           merchant_pin\r
319           isp_echo_id\r
320           isp_pin\r
321           authorization\r
322           billing_ip_address\r
323           billing_prefix\r
324           billing_name\r
325           billing_first_name\r
326           billing_last_name\r
327           billing_company_name\r
328           billing_address1\r
329           billing_address2\r
330           billing_city\r
331           billing_state\r
332           billing_zip\r
333           billing_country\r
334           billing_phone\r
335           billing_fax\r
336           billing_email\r
337           cc_number\r
338           ccexp_month\r
339           ccexp_year\r
340           counter\r
341           debug\r
342         );\r
343 \r
344         if ($self->transaction_type =~ /^D[DCVH]$/) {\r
345           push @fields, qw(\r
346             ec_account\r
347             ec_account_type\r
348             ec_payment_type\r
349             ec_address1\r
350             ec_address2\r
351             ec_bank_name\r
352             ec_business_acct\r
353             ec_city\r
354             ec_email\r
355             ec_first_name\r
356             ec_id_country\r
357             ec_id_exp_mm\r
358             ec_id_exp_dd\r
359             ec_id_exp_yy\r
360             ec_id_number\r
361             ec_id_state\r
362             ec_id_type\r
363             ec_last_name\r
364             ec_merchant_ref\r
365             ec_nbds_code\r
366             ec_other_name\r
367             ec_payee\r
368             ec_rt\r
369             ec_serial_number\r
370             ec_state\r
371             ec_transaction_dt\r
372             ec_zip\r
373           );\r
374         }\r
375 \r
376         push @fields, qw(\r
377           grand_total\r
378           merchant_email\r
379           merchant_trace_nbr\r
380           original_amount\r
381           original_trandate_mm\r
382           original_trandate_dd\r
383           original_trandate_yyyy\r
384           original_reference\r
385           order_number\r
386           shipping_flag\r
387           shipping_prefix\r
388           shipping_name\r
389           shipping_address1\r
390           shipping_address2\r
391           shipping_city\r
392           shipping_state\r
393           shipping_zip\r
394           shipping_comments\r
395           shipping_country\r
396           shipping_phone\r
397           shipping_fax\r
398           shipper\r
399           shipper_tracking_nbr\r
400           track1\r
401           track2\r
402           cnp_security\r
403           cnp_recurring\r
404         );\r
405 \r
406         return @fields;\r
407 }\r
408 \r
409 sub GetEchoProp {\r
410         my( $self, $raw, $prop ) = @_;\r
411         local $^W=0;\r
412 \r
413         my $data;\r
414         ($data) = $raw =~ m"<$prop>(.*?)</$prop>"gsi;\r
415         $data =~ s/<.*?>/ /gs;\r
416         chomp $data;\r
417         return $data;\r
418 }\r
419 \r
420 # Get's a given Echo return type and strips all HTML style tags from it.\r
421 # It also strips any new line characters from the returned string.\r
422 #\r
423 # This function based on Ben Reser's <breser@vecdev.com> Echo::Process\r
424 # module.\r
425 sub GetEchoReturn {\r
426         my( $self, $page, $type ) = @_;\r
427         local $^W=0;\r
428 \r
429         my $data;\r
430         if ($type eq 'OPEN') {\r
431                 ($data) = $page =~ m"<OPENECHO>(.*?)</OPENECHO>"gsi;\r
432         }\r
433         else {\r
434                 ($data) = $page =~ m"<ECHOTYPE$type>(.*?)</ECHOTYPE$type>"gsi;\r
435         }\r
436 #       $data =~ s"<.*?>" "g;\r
437 \r
438         #unless (length($data)) {\r
439         #  warn "$self $page $type";\r
440         #}\r
441 \r
442         chomp $data;\r
443         return $data;\r
444 }\r
445 \r
446 use vars qw(%error);\r
447 %error = (\r
448   "01" => [ "Refer to card issuer", "The merchant must call the issuer before the transaction can be approved." ],\r
449   "02" => [ "Refer to card issuer, special condition", "The merchant must call the issuer before the transaction can be approved." ],\r
450   "03" => [ "Invalid merchant number", "The merchant ID is not valid." ],\r
451   "04" => [ "Pick-up card. Capture for reward", "The card is listed on the Warning Bulletin.  Merchant may receive reward money by capturing the card." ],\r
452   "05" => [ "Do not honor. The transaction was declined by the issuer without definition or reason", "The transaction was declined without explanation by the card issuer." ],\r
453   "06" => [ "Error", "The card issuer returned an error without further explanation." ],\r
454   "07" => [ "Pick-up card, special condition", "The card is listed on the Warning Bulletin.  Merchant may receive reward money by capturing the card." ],\r
455   "08" => [ "Honor with identification", "Honor with identification." ],\r
456   "09" => [ "Request in progress", "Request in progress." ],\r
457   "10" => [ "Approved for partial amount", "Approved for partial amount." ],\r
458   "11" => [ "Approved, VIP", "Approved, VIP program." ],\r
459   "12" => [ "Invalid transaction", "The requested transaction is not supported or is not valid for the card number presented." ],\r
460   "13" => [ "Invalid amount", "The amount exceeds the limits established by the issuer for this type of transaction." ],\r
461   "14" => [ "Invalid card #", "The issuer indicates that this card is not valid." ],\r
462   "15" => [ "No such issuer", "The card issuer number is not valid." ],\r
463   "16" => [ "Approved, update track 3", "Approved, update track 3." ],\r
464   "17" => [ "Customer cancellation", "Customer cancellation." ],\r
465   "18" => [ "Customer dispute", "Customer dispute." ],\r
466   "19" => [ "Re enter transaction", "Customer should resubmit transaction." ],\r
467   "20" => [ "Invalid response", "Invalid response." ],\r
468   "21" => [ "No action taken", "No action taken. The issuer declined with no other explanation." ],\r
469   "22" => [ "Suspected malfunction", "Suspected malfunction." ],\r
470   "23" => [ "Unacceptable transaction fee", "Unacceptable transaction fee." ],\r
471   "24" => [ "File update not supported", "File update not supported." ],\r
472   "25" => [ "Unable to locate record", "Unable to locate record." ],\r
473   "26" => [ "Duplicate record", "Duplicate record." ],\r
474   "27" => [ "File update edit error", "File update edit error." ],\r
475   "28" => [ "File update file locked", "File update file locked." ],\r
476   "30" => [ "Format error, call ECHO", "The host reported that the transaction was not formatted properly." ],\r
477   "31" => [ "Bank not supported", "Bank not supported by switch." ],\r
478   "32" => [ "Completed partially", "Completed partially." ],\r
479   "33" => [ "Expired card, pick-up", "The card is expired.  Merchant may receive reward money by capturing the card." ],\r
480   "34" => [ "Issuer suspects fraud, pick-up card", "The card issuer suspects fraud.  Merchant may receive reward money by capturing the card." ],\r
481   "35" => [ "Contact acquirer, pick-up", "Contact card issuer.  Merchant may receive reward money by capturing the card." ],\r
482   "36" => [ "Restricted card, pick-up", "The card is restricted by the issuer.  Merchant may receive reward money by capturing the card." ],\r
483   "37" => [ "Call ECHO security, pick-up", "Contact ECHO security.  Merchant may receive reward money by capturing the card." ],\r
484   "38" => [ "PIN tries exceeded, pick-up", "PIN attempts exceed issuer limits.  Merchant may receive reward money by capturing the card." ],\r
485   "39" => [ "No credit account", "No credit account." ],\r
486   "40" => [ "Function not supported", "Requested function not supported." ],\r
487   "41" => [ "Lost Card, capture for reward", "The card has been reported lost." ],\r
488   "42" => [ "No universal account", "No universal account." ],\r
489   "43" => [ "Stolen Card, capture for reward", "The card has been reported stolen." ],\r
490   "44" => [ "No investment account", "No investment account." ],\r
491   "51" => [ "Not sufficient funds", "The credit limit for this account has been exceeded." ],\r
492   "54" => [ "Expired card", "The card is expired." ],\r
493   "55" => [ "Incorrect PIN", "The cardholder PIN is incorrect." ],\r
494   "56" => [ "No card record", "No card record." ],\r
495   "57" => [ "Transaction not permitted to cardholder", "The card is not allowed the type of transaction requested." ],\r
496   "58" => [ "Transaction not permitted on terminal", "The Merchant is not allowed this type of transaction." ],\r
497   "59" => [ "Suspected fraud", "Suspected fraud." ],\r
498   "60" => [ "Contact ECHO", "Contact ECHO." ],\r
499   "61" => [ "Exceeds withdrawal limit", "The amount exceeds the allowed daily maximum." ],\r
500   "62" => [ "Restricted card", "The card has been restricted." ],\r
501   "63" => [ "Security violation.", "The card has been restricted." ],\r
502   "64" => [ "Original amount incorrect", "Original amount incorrect." ],\r
503   "65" => [ "Exceeds withdrawal frequency", "The allowable number of daily transactions has been exceeded." ],\r
504   "66" => [ "Call acquirer security, call ECHO", "Call acquirer security, call ECHO." ],\r
505   "68" => [ "Response received too late", "Response received too late." ],\r
506   "75" => [ "PIN tries exceeded", "The allowed number of PIN retries has been exceeded." ],\r
507   "76" => [ "Invalid \"to\" account", "The debit account does not exist." ],\r
508   "77" => [ "Invalid \"from\" account", "The credit account does not exist." ],\r
509   "78" => [ "Invalid account specified (general)", "The associated card number account is invalid or does not exist." ],\r
510   "79" => [ "Already reversed", "Already reversed." ],\r
511   "84" => [ "Invalid authorization life cycle", "The authorization life cycle is invalid." ],\r
512   "86" => [ "Cannot verify PIN", "Cannot verify PIN." ],\r
513   "87" => [ "Network Unavailable", "Network Unavailable." ],\r
514   "89" => [ "Ineligible to receive financial position information", "Ineligible to receive financial position information." ],\r
515   "90" => [ "Cut-off in progress", "Cut-off in progress." ],\r
516   "91" => [ "Issuer or switch inoperative", "The bank is not available to authorize this transaction." ],\r
517   "92" => [ "Routing error", "The transaction cannot be routed to the authorizing agency." ],\r
518   "93" => [ "Violation of law", "Violation of law." ],\r
519   "94" => [ "Duplicate transaction", "Duplicate transaction." ],\r
520   "95" => [ "Reconcile error", "Reconcile error." ],\r
521   "96" => [ "System malfunction", "A system error has occurred." ],\r
522   "98" => [ "Exceeds cash limit", "Exceeds cash limit." ],\r
523   "1000" => [ "Unrecoverable error.", "An unrecoverable error has occurred in the ECHONLINE processing." ],\r
524   "1001" => [ "Account closed", "The merchant account has been closed." ],\r
525   "1002" => [ "System closed", "Services for this system are not available. (Not used by ECHONLINE)" ],\r
526   "1003" => [ "E-Mail Down", "The e-mail function is not available. (Not used by ECHONLINE)" ],\r
527   "1012" => [ "Invalid trans code", "The host computer received an invalid transaction code." ],\r
528   "1013" => [ "Invalid term id", "The ECHO-ID is invalid." ],\r
529   "1015" => [ "Invalid card number", "The credit card number that was sent to the host computer was invalid" ],\r
530   "1016" => [ "Invalid expiry date", "The card has expired or the expiration date was invalid." ],\r
531   "1017" => [ "Invalid amount", "The dollar amount was less than 1.00 or greater than the maximum allowed for this card." ],\r
532   "1019" => [ "Invalid state", "The state code was invalid. (Not used by ECHONLINE)" ],\r
533   "1021" => [ "Invalid service", "The merchant or card holder is not allowed to perform that kind of transaction" ],\r
534   "1024" => [ "Invalid auth code", "The authorization number presented with this transaction is incorrect. (deposit transactions only)" ],\r
535   "1025" => [ "Invalid reference number", "The reference number presented with this transaction is incorrect or is not numeric." ],\r
536   "1029" => [ "Invalid contract number", "The contract number presented with this transaction is incorrect or is not numeric. (Not used by ECHONLINE)" ],\r
537   "1030" => [ "Invalid inventory data", "The inventory data presented with this transaction is not ASCII \"printable\". (Not used by ECHONLINE)" ],\r
538   "1508" => [ " ", "Invalid or missing order_type." ],\r
539   "1509" => [ " ", "The merchant is not approved to submit this order_type." ],\r
540   "1510" => [ " ", "The merchant is not approved to submit this transaction_type." ],\r
541   #"1511" => [ " ", "Duplicate transaction attempt (see counterin Part I of this Specification</EM>)." ],\r
542   "1511" => [ " ", "Duplicate transaction attempt (set counter field?)." ],\r
543   "1599" => [ " ", "An system error occurred while validating the transaction input." ],\r
544   "1801" => [ "Return Code \"A\"", "Address matches; ZIP does not match." ],\r
545   "1802" => [ "Return Code \"W\"", "9-digit ZIP matches; Address does not match." ],\r
546   "1803" => [ "Return Code \"Z\"", "5-digit ZIP matches; Address does not match." ],\r
547   "1804" => [ "Return Codes \"U\"", "Issuer unavailable; cannot verify." ],\r
548   "1805" => [ "Return Code \"R\"", "Retry; system is currently unable to process." ],\r
549   "1806" => [ "Return Code \"S\" or \"G\"", "Issuer does not support AVS." ],\r
550   "1807" => [ "Return Code \"N\"", "Nothing matches." ],\r
551   "1808" => [ "Return Code \"E\"", "Invalid AVS only response." ],\r
552   "1809" => [ "Return Code \"B\"", "Street address match. Postal code not verified because of incompatible formats." ],\r
553   "1810" => [ "Return Code \"C\"", "Street address and Postal code not verified because of incompatible formats." ],\r
554   "1811" => [ "Return Code \"D\"", "Street address match and Postal code match." ],\r
555   "1812" => [ "Return Code \"I\"", "Address information not verified for international transaction." ],\r
556   "1813" => [ "Return Code \"M\"", "Street address match and Postal code match." ],\r
557   "1814" => [ "Return Code \"P\"", "Postal code match. Street address not verified because of incompatible formats." ],\r
558   "1897" => [ "invalid response", "The host returned an invalid response." ],\r
559   "1898" => [ "disconnect", "The host unexpectedly disconnected." ],\r
560   "1899" => [ "timeout", "Timeout waiting for host response." ],\r
561   "2071" => [ "Call VISA", "An authorization number from the VISA Voice Center is required to approve this transaction." ],\r
562   "2072" => [ "Call Master Card", "An authorization number from the Master Card Voice Center is required to approve this transaction." ],\r
563   "2073" => [ "Call Carte Blanche", "An authorization number from the Carte Blanche Voice Center is required to approve this transaction." ],\r
564   "2074" => [ "Call Diners Club", "An authorization number from the Diners' Club Voice Center is required to approve this transaction." ],\r
565   "2075" => [ "Call AMEX", "An authorization number from the American Express Voice Center is required to approve this transaction." ],\r
566   "2076" => [ "Call Discover", "An authorization number from the Discover Voice Center is required to approve this transaction." ],\r
567   "2078" => [ "Call ECHO", "The merchant must call ECHOCustomer Support for approval.or because there is a problem with the merchant's account." ],\r
568   "2079" => [ "Call XpresscheX", "The merchant must call ECHOCustomer Support for approval.or because there is a problem with the merchant's account." ],\r
569   "3001" => [ "No ACK on Resp", "The host did not receive an ACK from the terminal after sending the transaction response." ],\r
570   "3002" => [ "POS NAK'd 3 Times", "The host disconnected after the terminal replied 3 times to the host response with a NAK." ],\r
571   "3003" => [ "Drop on Wait", "The line dropped before the host could send a response to the terminal." ],\r
572   "3005" => [ "Drop on Resp", "The line dropped while the host was sending the response to the terminal." ],\r
573   "3007" => [ "Drop Before EOT", "The host received an ACK from the terminal but the line dropped before the host could send the EOT." ],\r
574   "3011" => [ "No Resp to ENQ", "The line was up and carrier detected, but the terminal did not respond to the ENQ." ],\r
575   "3012" => [ "Drop on Input", "The line disconnected while the host was receiving data from the terminal." ],\r
576   "3013" => [ "FEP NAK'd 3 Times", "The host disconnected after receiving 3 transmissions with incorrect LRC from the terminal." ],\r
577   "3014" => [ "No Resp to ENQ", "The line disconnected during input data wait in Multi-Trans Mode." ],\r
578   "3015" => [ "Drop on Input", "The host encountered a full queue and discarded the input data." ],\r
579 );\r
580 for ( 9000..9999 ) {\r
581   $error{$_} = [ "Host Error", "The host encountered an internal error and was not able to process the transaction." ]; \r
582 }\r
583 sub error {\r
584   my( $self, $num ) = @_;\r
585   $num =~ s/^00(\d\d)$/$1/;\r
586   return $num. ': '. $error{$num}[0]. ': '. $error{$num}[1];\r
587 }\r
588 \r
589 1;\r
590 \r
591 __END__\r
592 \r
593 =head1 NAME\r
594 \r
595 Business::OnlinePayment::OpenECHO - ECHO backend module for Business::OnlinePayment\r
596 \r
597 =head1 SYNOPSIS\r
598 \r
599   use Business::OnlinePayment;\r
600 \r
601   ####\r
602   # One step transaction, the simple case.\r
603   ####\r
604 \r
605   my $tx = new Business::OnlinePayment("OpenECHO");\r
606   $tx->content(\r
607       type           => 'VISA',\r
608       login          => '1234684752',\r
609       password       => '43400210',\r
610       action         => 'Normal Authorization',\r
611       description    => 'Business::OnlinePayment test',\r
612       amount         => '49.95',\r
613       invoice_number => '100100',\r
614       customer_id    => 'jsk',\r
615       first_name     => 'Tofu',\r
616       last_name      => 'Beast',\r
617       address        => '123 Anystreet',\r
618       city           => 'Anywhere',\r
619       state          => 'UT',\r
620       zip            => '84058',\r
621       card_number    => '4005550000000019',\r
622       expiration     => '08/06',\r
623       cvv2           => '1234', #optional\r
624       referer        => 'http://valid.referer.url/',\r
625   );\r
626   $tx->submit();\r
627 \r
628   if($tx->is_success()) {\r
629       print "Card processed successfully: ".$tx->authorization."\n";\r
630   } else {\r
631       print "Card was rejected: ".$tx->error_message."\n";\r
632   }\r
633 \r
634 =head1 SUPPORTED TRANSACTION TYPES\r
635 \r
636 =head2 CC, Visa, MasterCard, American Express, Discover\r
637 \r
638 Content required: type, login, password, action, amount, first_name, last_name, card_number, expiration.\r
639 \r
640 =head2 Check\r
641 \r
642 Not yet implemented...\r
643 #Content required: type, login, password, action, amount, first_name, last_name, account_number, routing_code, bank_name.\r
644 \r
645 =head1 PREREQUISITES\r
646 \r
647   URI::Escape\r
648   Tie::IxHash\r
649 \r
650   Net::SSLeay _or_ ( Crypt::SSLeay and LWP )\r
651 \r
652 =head1 DESCRIPTION\r
653 \r
654 For detailed information see L<Business::OnlinePayment>.\r
655 \r
656 =head1 AUTHOR\r
657 \r
658 Original Author\r
659 Michael Lehmkuhl <michael@electricpulp.com>\r
660 \r
661 Special Thanks\r
662 Jim Darden <jdarden@echo-inc.com>\r
663 Dan Browning <db@kavod.com>\r
664 \r
665 Business::OnlinePayment Implementation\r
666 Ivan Kohler <ivan-openecho@420.am>\r
667 \r
668 =head1 SEE ALSO\r
669 \r
670 perl(1). L<Business::OnlinePayment>.\r
671 \r
672 =cut\r
673 \r