# Vend::Payment::Linkpoint - Interchange Linkpoint support # # Copyright (C) 2002-2009 Interchange Development Group # Copyright (C) 2002 Stefan Hornburg (Racke) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public # License along with this program; if not, write to the Free # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, # MA 02110-1301 USA. package Vend::Payment::Linkpoint; =head1 NAME Vend::Payment::Linkpoint - Interchange Linkpoint Support =head1 SYNOPSIS &charge=linkpoint or [charge mode=linkpoint param1=value1 param2=value2] =head1 PREREQUISITES LPERL =head1 DESCRIPTION The Vend::Payment::Linkpoint module implements the linkpoint() routine for use with Interchange. It is compatible on a call level with the other Interchange payment modules. To enable this module, place this directive in C: Require module Vend::Payment::Linkpoint This I be in interchange.cfg or a file included from it. Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the C parameter must be set to C. To make it the default payment gateway for all credit card transactions in a specific catalog, you can set in C: Variable MV_PAYMENT_MODE linkpoint It uses several of the standard settings from Interchange payment. Any time we speak of a setting, it is obtained either first from the tag/call options, then from an Interchange order Route named for the mode, then finally a default global payment variable, For example, the C parameter would be specified by: [charge mode=linkpoint id=YourLinkpointID] or Route linkpoint id YourLinkpointID or Variable MV_PAYMENT_ID YourLinkpointID Required settings are C and C. The active settings are: =over 4 =item host Your LinkPoint Secure Payment Gateway (LSPG) hostname. Usually secure.linkpt.net (production) or staging.linkpt.net (testing). =item keyfile File name of the merchant security certificate. This file should contain the RSA private key and the certificate, otherwise you get an error like "Unable to open/parse client certificate file." =item id Store number assigned to your merchant account. =item transaction The type of transaction to be run. Valid values are: Interchange Linkpoint ---------------- ----------------- auth PREAUTH sale SALE settle_prior POSTAUTH Default is C. =item check_sub Name of a Sub or GlobalSub to be called after the result hash has been received from LinkPoint. A reference to the modifiable result hash is passed into the subroutine, and it should return true (in the Perl truth sense) if its checks were successful, or false if not. This can come in handy since LinkPoint has no option to decline a charge when AVS or CVV data come back negative. If you want to fail based on a bad AVS/CVV check, make sure you're only doing an auth -- B, or your customers would get charged on orders that fail the AVS/CVV check and never get logged in your system! Add the parameters like this: Route linkpoint check_sub link_check This is a matching sample subroutine you could put in interchange.cfg: GlobalSub <{r_avs}; my ($addr, $zip, $nothing, $cvv) = split m{}, $avs; #::logDebug("avs=$avs, addr=$addr zip=$zip banks=$nothing cvv=$cvv"); return 1 if $addr eq 'Y' or $zip eq 'Y'; return 1 if $addr eq 'X' and $zip eq 'X'; return 1 if $cvv =~ /^[MPSUX]$/; $result->{MStatus} = 'failure'; if ($cvv eq 'N' || '') { $result->{r_error} = "The card security code you entered does not match. Additional failed attempts may hold your available funds."; } else { $result->{r_error} = "The billing address you entered does not match the cardholder's billing address. Additional failed attempts may hold your available funds."; } } EOR That would work equally well as a Sub in catalog.cfg. It will succeed if either the address or zip is 'Y', or if both are unknown, or if the CVV matches or is unknown. If it fails, it sets the error message in the result hash. Of course you can use this sub to do any other post-processing you want as well. =back =head2 Troubleshooting If nothing works: =over 4 =item * Make sure you "Require"d the module in interchange.cfg: Require module Vend::Payment::Linkpoint =item * Make sure lpperl (v3.0.012+) is installed and working. You can test to see whether your Perl thinks they are: perl -Mlpperl -e 'print "It works.\n"' If it "It works." and returns to the prompt you should be OK (presuming they are in working order otherwise). =item * Make sure curl is installed and working. Lpperl uses curl to contact Linkpoint. =item * Check the error logs, both catalog and global. =item * Make sure you set your payment parameters properly. =item * Try an order, then put this code in a page: [calc] my $string = $Tag->uneval( { ref => $Session->{payment_result} }); $string =~ s/{/{\n/; $string =~ s/,/,\n/g; return $string; [/calc] That should show what happened. =back =head1 BUGS There is actually nothing *in* Vend::Payment::Linkpoint. It changes packages to Vend::Payment and places things there. =head1 AUTHOR Stefan Hornburg (Racke) Ron Phipps =cut BEGIN { eval { package Vend::Payment; require lpperl or die __PACKAGE__ . " requires LPPERL"; }; if ($@) { $msg = __PACKAGE__ . ' requires LPPERL'; ::logGlobal ($msg); die $msg; } ::logGlobal("%s payment module initialized", __PACKAGE__) unless $Vend::Quiet or ! $Global::VendRoot; } package Vend::Payment; sub linkpoint { my ($user, $amount) = @_; my $opt; my $keyfile; my $host; if(ref $user) { $opt = $user; $user = $opt->{id} || undef; $keyfile = $opt->{keyfile} || undef; $host = $opt->{host} || undef; } else { $opt = {}; } my $actual; if($opt->{actual}) { $actual = $opt->{actual}; } else { my (%actual) = map_actual(); $actual = \%actual; } #::logDebug("actual map result: " . ::uneval($actual)); #::logDebug("opt map result: " . ::uneval($opt)); # we need to check for customer id and keyfile # location, as these are the required parameters if (! $user ) { $user = charge_param('id') or return ( MStatus => 'failure-hard', MErrMsg => errmsg('No customer id'), ); } if (! $keyfile ) { $keyfile = charge_param('keyfile') or return ( MStatus => 'failure-hard', MErrMsg => errmsg('No certificate file'), ); } if (! $host ) { $host = charge_param('host') || 'secure.linkpt.net'; } my $precision = $opt->{precision} || 2; $actual->{mv_credit_card_exp_month} =~ s/\D//g; $actual->{mv_credit_card_exp_year} =~ s/\D//g; $actual->{mv_credit_card_exp_year} =~ s/\d\d(\d\d)/$1/; $actual->{mv_credit_card_number} =~ s/\D//g; if($actual->{b_country} eq 'US') { $actual->{b_zip} =~ s/\D//g; $actual->{b_zip} = substr($actual->{b_zip}, 0, 5); } my $exp = sprintf '%02d%02d', $actual->{mv_credit_card_exp_month}, $actual->{mv_credit_card_exp_year}; my $transtype = $opt->{transaction} || charge_param('transaction') || 'sale'; my %type_map = ( auth => 'PREAUTH', authorize => 'PREAUTH', mauthcapture => 'SALE', mauthonly => 'PREAUTH', sale => 'SALE', settle_prior => 'POSTAUTH', ); if (defined $type_map{$transtype}) { $transtype = $type_map{$transtype}; } $amount = $opt->{total_cost} unless $amount; ## If Linkpoint doesn't accept anything but two digits, and ## you use something besides Locale foo_FOO frac_digits 2 ## you might break here if(! $amount) { $amount = Vend::Interpolate::total_cost(); $amount = Vend::Util::round_to_frac_digits($amount,$precision); } if($Values->{use_pay_cert}) { $shipping = ''; $subtotal = ''; $salestax = ''; } else { $shipping = Vend::Interpolate::tag_shipping(); $subtotal = Vend::Interpolate::subtotal(); $salestax = Vend::Interpolate::salestax(); } $order_id = gen_order_id($opt); my $addrnum = $actual->{b_address1}; my $bcompany = $Values->{b_company}; my $scompany = $Values->{company}; $addrnum =~ s/^(\d+).*$//g; $scompany =~ s/\&/ /g; $bcompany =~ s/\&/ /g; my $cvmindicator = 'not_provided'; if($actual->{cvv2} || $actual->{mv_credit_card_cvv2}) { $cvmindicator = 'provided'; } my %check_transaction = ( PREAUTH => 1, SALE => 1 ); my %delmap = ( POSTAUTH => [ qw( shipping subtotal tax vattax cardnumber cardexpmonth cardexpyear addrnum cvmvalue cvmindicator company ) ], ); my %varmap = ( qw / name b_name address1 b_address1 address2 b_address2 city b_city state b_state zip b_zip country b_country email email phone phone_day sname name saddress1 address1 saddress2 address2 scity city sstate state szip zip scountry country / ); my %query = (host => $host, port => '1129', configfile => $user, keyfile => $keyfile, ordertype => $transtype, result => 'LIVE', terminaltype => 'UNSPECIFIED', shipping => $shipping, chargetotal => $amount, subtotal => $subtotal, tax => $salestax, vattax => '0.00', cardnumber => $actual->{mv_credit_card_number}, cardexpmonth => sprintf ("%02d", $actual->{mv_credit_card_exp_month}), cardexpyear => sprintf ("%02d", $actual->{mv_credit_card_exp_year}), addrnum => $addrnum, cvmvalue => $actual->{cvv2} || $actual->{mv_credit_card_cvv2}, cvmindicator => $cvmindicator, debugging => $opt->{debuglevel}, cargs => $opt->{curl_args}, company => $bcompany, scompany => $scompany, # API is broken for Shipping Company per Linkpoint support oid => $order_id, ); for (keys %varmap) { $query{$_} = $actual->{$varmap{$_}}; } if(my $map = $delmap{$transtype}) { for(@$map) { delete $query{$_}; } } $query{saddress2} = $actual->{address1} . ' ' . $actual->{address2}; # API is broken for Shipping Address Line 1, put line 1 and line 2 in API line 2 per Linkpoint support # delete query keys with undefined values for (keys %query) { delete $query{$_} unless $query{$_}; } #::logDebug("linkpoint query: " . ::uneval(\%query)); my $lperl = new LPPERL(); my %result = $lperl->curl_process(\%query); # Interchange names are on the left, Linkpoint on the right my %result_map = ( qw/ order-id r_ordernum pop.order-id r_ordernum pop.auth-code r_code pop.avs_code r_avs pop.status r_code pop.error-message r_error / ); #::logDebug("linkpoint response: " . ::uneval(\%result)); for (keys %result_map) { $result{$_} = $result{$result_map{$_}} if defined $result{$result_map{$_}}; } my $approve; if ($result{'r_approved'} eq "APPROVED") { my $check_sub_name = $opt->{check_sub} || charge_param('check_sub'); if ($check_sub_name and $check_transaction{$transtype} ) { my $check_sub = $Vend::Cfg->{Sub}{$check_sub_name} || $Global::GlobalSub->{$check_sub_name}; if (ref $check_sub eq 'CODE') { $approve = $check_sub->(\%result); } else { logError(__PACKAGE__ . ": non-existent check_sub routine %s.", $check_sub_name); } } else { $approve = 1; } } if($approve) { $result{'MStatus'} = 'success'; $result{'MErrMsg'} = $result{'r_code'}; } else { my $msg = errmsg("Charge error: %s Please call in your order or try again.", $result{'r_error'}, ); $result{MStatus} = 'failure'; $result{MErrMsg} = $result{'pop.error-message'} = $msg; } #::logDebug("result given to interchange " . ::uneval(\%result)); return (%result); } package Vend::Payment::Linkpoint; 1;