5 use Date::Format qw(time2str);
6 use File::Temp qw(tempdir); #0.19 for ->newdir() interface, not in 5.10.0
7 use Net::SFTP::Foreign;
9 use FS::UID qw(adminsuidsetup datasrc);
10 use FS::Record qw(qsearch qsearchs);
12 use FS::cust_pay_batch;
15 use vars qw( $opt_t $opt_v $opt_a );
18 #$Net::SFTP::Foreign::debug = -1;
21 freeside-paymentech-download [ -v ] [ -t ] [ -a archivedir ] user\n
24 my $user = shift or die &usage;
28 die "no such directory: $opt_a\n"
30 die "archive directory $opt_a is not writable by the freeside user\n"
34 my $unzip_check = `which unzip` or die "can't find unzip executable\n";
36 #my $tmpdir = File::Temp->newdir();
37 my $tmpdir = tempdir( CLEANUP => 1 ); #DIR=>somewhere?
39 my $conf = new FS::Conf;
40 my @batchconf = $conf->config('batchconfig-paymentech');
41 # BIN, terminalID, merchantID, username, password
42 my $username = $batchconf[3] or die "no Paymentech batch username configured\n";
43 my $password = $batchconf[4] or die "no Paymentech batch password configured\n";
45 my $host = ($opt_t ? 'orbitalbatchvar.paymentech.net'
46 : 'orbitalbatch.paymentech.net');
47 print STDERR "Connecting to $username\@$host...\n" if $opt_v;
49 my $sftp = Net::SFTP::Foreign->new( host => $host,
51 password => $password,
54 die "failed to connect to '$username\@$host'\n(".$sftp->error.")\n" if $sftp->error;
56 my @files = map { $_->{filename} } @{ $sftp->ls('.', wanted => qr/_resp\.zip$/) };
57 die "no response files found\n" if !@files;
59 BATCH: foreach my $filename (@files) {
62 $filename =~ s/_resp\.zip$//;
63 print STDERR "Retrieving $filename\n" if $opt_v;
64 $sftp->get("$filename\_resp.zip", "$tmpdir/${filename}_resp.zip");
66 warn "failed to download $filename\n";
71 system('unzip', '-P', $password, '-q',
72 "$tmpdir/${filename}_resp.zip", '-d', $tmpdir);
73 if(! -f "$tmpdir/${filename}_resp.xml") {
74 warn "failed to extract ${filename}_resp.xml from ${filename}_resp.zip\n";
80 print STDERR "Copying $tmpdir/${filename}_resp.xml to archive dir $opt_a\n"
82 system 'cp', "$tmpdir/${filename}_resp.xml", $opt_a;
83 warn "failed to copy $tmpdir/${filename}_resp.xml to $opt_a: $@" if $@;
86 #get batchnum & retrieve pending batch
87 open my $fh, "<$tmpdir/${filename}_resp.xml";
88 my ($batchnum) = split ('-', $filename);
89 $batchnum = sprintf("%d", $batchnum); # remove leading zeroes
90 my $batch = qsearchs('pay_batch', { batchnum => $batchnum });
92 warn "batch '$batchnum' not found\n";
97 print STDERR "Importing batch #$batchnum\n" if $opt_v;
98 my $error = $batch->import_results( filehandle => $fh,
99 format => 'paymentech' );
100 warn "error: $error\n" if $error;
104 print STDERR "Finished!\n" if $opt_v;
108 freeside-paymentech-download - Retrieve payment batch responses from Chase Paymentech.
112 paymentech-download [ -v ] [ -t ] [ -a archivedir ] user
116 Command line tool to download payment batch responses from the Chase Paymentech
117 gateway. These are XML files packaged in ZIP files. This script downloads them
118 by SFTP, extracts the contents, and passes them to L<FS::pay_batch::import_result>.
122 -t: Use the test server.
124 -a directory: Archive response files in the provided directory.
126 user: freeside username