X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-paymentech-upload;h=609019eb256dbc3db5b9ddac6e503d4942da97c6;hb=fbdaf36fb33a44a453e23bc2dc8d18637b40dae9;hp=e0ec4bdac52e0015bcc2b23694aa340b022e2195;hpb=3e87673b7030bee72bfd3ec0d9096b4e7c9a068b;p=freeside.git diff --git a/FS/bin/freeside-paymentech-upload b/FS/bin/freeside-paymentech-upload index e0ec4bdac..609019eb2 100755 --- a/FS/bin/freeside-paymentech-upload +++ b/FS/bin/freeside-paymentech-upload @@ -5,31 +5,37 @@ use Getopt::Std; use Date::Format qw(time2str); use File::Temp qw(tempdir); #0.19 for ->newdir() interface, not in 5.10.0 use Net::SFTP::Foreign; +use Expect; 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 vars qw( $opt_a $opt_t $opt_v ); -getopts('avt'); +use vars qw( $opt_a $opt_t $opt_v $opt_p ); +getopts('avtp:'); #$Net::SFTP::Foreign::debug = -1; sub usage { " Usage: - paymentech-upload [ -v ] [ -t ] user batchnum - paymentech-upload -a [ -v ] [ -t ] user\n + freeside-paymentech-upload [ -v ] [ -t ] user batchnum + freeside-paymentech-upload -a [ -p payby ] [ -v ] [ -t ] user\n " } my $user = shift or die &usage; adminsuidsetup $user; +my $zip_check = `which zip` or die "can't find zip executable\n"; + my @batches; if($opt_a) { - @batches = qsearch('pay_batch', { status => 'O' } ); - die "No open batches found.\n" if !@batches; + my %criteria = (status => 'O'); + $criteria{'payby'} = uc($opt_p) if $opt_p; + @batches = qsearch('pay_batch', \%criteria); + die "No open batches found".($opt_p ? " of type '$opt_p'" : '').".\n" + if !@batches; } else { my $batchnum = shift; @@ -53,21 +59,22 @@ 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'); + my $text = $pay_batch->export_batch(format => '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"); + 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'); +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, @@ -87,13 +94,11 @@ print STDERR "Finished!\n" if $opt_v; =head1 NAME -paymentech-upload - -paymentech-upload - Transmit a payment batch to Chase Paymentech via SFTP. +freeside-paymentech-upload - Transmit a payment batch to Chase Paymentech via SFTP. =head1 SYNOPSIS - paymentech-upload [ -a ] [ -v ] [ -t ] user batchnum + freeside-paymentech-upload [ -a [ -p PAYBY ] ] [ -v ] [ -t ] user batchnum =head1 DESCRIPTION @@ -104,6 +109,8 @@ response file. -a: Send all open batches, instead of specifying a batchnum. +-p PAYBY: With -a, limit to batches of that payment type, e.g. -p CARD. + -v: Be verbose. -t: Send the transaction to the test server.