X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2Fbin%2Ffreeside-paymentech-upload;fp=FS%2Fbin%2Ffreeside-paymentech-upload;h=6de29ddbbd55fae4d4e2f01cd460902289cc813b;hb=2b2f85d3b20ea18fe432e18f26bfe3feb07088f1;hp=0000000000000000000000000000000000000000;hpb=29347e1d34d5468994af6e219f00582e525688ae;p=freeside.git diff --git a/FS/bin/freeside-paymentech-upload b/FS/bin/freeside-paymentech-upload new file mode 100755 index 000000000..6de29ddbb --- /dev/null +++ b/FS/bin/freeside-paymentech-upload @@ -0,0 +1,128 @@ +#!/usr/bin/perl + +use strict; +use Getopt::Std; +use Net::SFTP::Foreign; +use FS::UID qw(adminsuidsetup datasrc); +use FS::Record qw(qsearch qsearchs); +use FS::pay_batch; +use FS::cust_pay_batch; +use FS::Conf; + +use Date::Format 'time2str'; +use File::Temp; + +use vars qw( $opt_a $opt_t $opt_v ); +getopts('avt'); + +#$Net::SFTP::Foreign::debug = -1; + +sub usage { ' + Usage: + paymentech-upload [ -v ] [ -t ] user batchnum + paymentech-upload -a [ -v ] [ -t ] user + +' +} + +my $user = shift or die &usage; +adminsuidsetup $user; + +my @batches; + +if($opt_a) { + @batches = qsearch('pay_batch', { status => 'O' } ); + die "No open batches found.\n" if !@batches; +} +else { + my $batchnum = shift; + die &usage if !$batchnum; + @batches = qsearchs('pay_batch', { batchnum => $batchnum } ); + die "Can't find payment batch '$batchnum'\n" if !@batches; +} + +my $conf = new FS::Conf; +my @batchconf = $conf->config('batchconfig-paymentech'); +# BIN, terminalID, merchantID, username, password +my $username = $batchconf[3] or die "no Paymentech batch username configured\n"; +my $password = $batchconf[4] or die "no Paymentech batch password configured\n"; + +my $tmpdir = File::Temp->newdir(); + +my @filenames; + +foreach my $pay_batch (@batches) { + my $batchnum = $pay_batch->batchnum; + my $filename = sprintf('%06d',$batchnum) . '-' .time2str('%Y%m%d%H%M%S', time); + print STDERR "Exporting batch $batchnum to $filename...\n" if $opt_v; + my $text = $pay_batch->export_batch('paymentech'); + $text =~ s!FILEID!$filename! + or die "couldn't find FILEID tag\n"; + open OUT, ">$tmpdir/$filename.xml"; + print OUT $text; + close OUT; + + system("zip -P $password -q -j $tmpdir/$filename.zip $tmpdir/$filename.xml"); + + die "failed to create zip file\n" if (! -f "$tmpdir/$filename.zip" ); + push @filenames, $filename; +} + +my $host = ($opt_t ? 'orbitalbatchvar.paymentech.net' : + 'orbitalbatch.paymentech.net'); +print STDERR "Connecting to $username\@$host...\n" if $opt_v; + +my $sftp = Net::SFTP::Foreign->new( host => $host, + user => $username, + password => $password, + timeout => 30, + ); +die "failed to connect to '$username\@$host'\n(".$sftp->error.")\n" + if $sftp->error; + +foreach my $filename (@filenames) { + $sftp->put("$tmpdir/$filename.zip", "$filename.zip") + or die "failed to upload file (".$sftp->error.")\n"; +} + +print STDERR "Finished!\n" if $opt_v; + +=head1 NAME + +paymentech-upload + +paymentech-upload - Transmit a payment batch to Chase Paymentech via SFTP. + +=head1 SYNOPSIS + + paymentech-upload [ -a ] [ -v ] [ -t ] user batchnum + +=head1 DESCRIPTION + +Command line tool to upload a payment batch to the Chase Paymentech gateway. +The batch will be exported to the Paymentech XML format, packaged in a ZIP +file, and transmitted via SFTP. Use L to retrieve the +response file. + +-a: Send all open batches, instead of specifying a batchnum. + +-v: Be verbose. + +-t: Send the transaction to the test server. + +user: freeside username + +batchnum: pay_batch primary key + +=head1 BUGS + +Passing the zip password on the command line is slightly risky. + +=head1 SEE ALSO + +L + +=cut + +1; +