1 package Koha
::Edifact
::Transport
;
3 # Copyright 2014,2015 PTFS-Europe Ltd
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use English
qw{ -no_match_vars
};
27 use Net
::SFTP
::Foreign
;
30 use File
::Basename
qw( fileparse );
32 use Encode
qw( from_to );
35 my ( $class, $account_id ) = @_;
36 my $database = Koha
::Database
->new();
37 my $schema = $database->schema();
38 my $acct = $schema->resultset('VendorEdiAccount')->find($account_id);
42 working_dir
=> C4
::Context
::temporary_directory
, #temporary work directory
43 transfer_date
=> DateTime
->now( time_zone
=> 'local' ),
50 sub working_directory
{
51 my ( $self, $new_value ) = @_;
53 $self->{working_dir
} = $new_value;
55 return $self->{working_dir
};
58 sub download_messages
{
59 my ( $self, $message_type ) = @_;
60 $self->{message_type
} = $message_type;
64 if ( $self->{account
}->transport eq 'SFTP' ) {
65 @retrieved_files = $self->sftp_download();
67 elsif ( $self->{account
}->transport eq 'FILE' ) {
68 @retrieved_files = $self->file_download();
71 @retrieved_files = $self->ftp_download();
73 return @retrieved_files;
77 my ( $self, @messages ) = @_;
79 if ( $self->{account
}->transport eq 'SFTP' ) {
80 $self->sftp_upload(@messages);
82 elsif ( $self->{account
}->transport eq 'FILE' ) {
83 $self->file_upload(@messages);
86 $self->ftp_upload(@messages);
96 my $file_ext = _get_file_ext
( $self->{message_type
} );
98 my $dir = $self->{account
}->download_directory; # makes code more readable
99 # C = ready to retrieve E = Edifact
100 my $msg_hash = $self->message_hash();
101 if ( opendir my $dh, $dir ) {
102 my @file_list = readdir $dh;
104 foreach my $filename (@file_list) {
106 if ( $filename =~ m/[.]$file_ext$/ ) {
107 if ( copy
( "$dir/$filename", $self->{working_dir
} ) ) {
110 carp
"copy of $filename failed";
113 push @downloaded_files, $filename;
114 my $processed_name = $filename;
115 substr $processed_name, -3, 1, 'E';
116 move
( "$dir/$filename", "$dir/$processed_name" );
119 $self->ingest( $msg_hash, @downloaded_files );
122 carp
"Cannot open $dir";
125 return @downloaded_files;
131 my $file_ext = _get_file_ext
( $self->{message_type
} );
133 # C = ready to retrieve E = Edifact
134 my $msg_hash = $self->message_hash();
135 my @downloaded_files;
136 my $sftp = Net
::SFTP
::Foreign
->new(
137 host
=> $self->{account
}->host,
138 user
=> $self->{account
}->username,
139 password
=> $self->{account
}->password,
142 if ( $sftp->error ) {
143 return $self->_abort_download( undef,
144 'Unable to connect to remote host: ' . $sftp->error );
146 $sftp->setcwd( $self->{account
}->download_directory )
147 or return $self->_abort_download( $sftp,
148 "Cannot change remote dir : $sftp->error" );
149 my $file_list = $sftp->ls()
150 or return $self->_abort_download( $sftp,
151 "cannot get file list from server: $sftp->error" );
152 foreach my $file ( @
{$file_list} ) {
153 my $filename = $file->{filename
};
155 if ( $filename =~ m/[.]$file_ext$/ ) {
156 $sftp->get( $filename, "$self->{working_dir}/$filename" );
157 if ( $sftp->error ) {
158 $self->_abort_download( $sftp,
159 "Error retrieving $filename: $sftp->error" );
162 push @downloaded_files, $filename;
163 my $processed_name = $filename;
164 substr $processed_name, -3, 1, 'E';
166 #$sftp->atomic_rename( $filename, $processed_name );
167 my $ret = $sftp->rename( $filename, $processed_name );
169 $self->_abort_download( $sftp,
170 "Error renaming $filename: $sftp->error" );
177 $self->ingest( $msg_hash, @downloaded_files );
179 return @downloaded_files;
183 my ( $self, $msg_hash, @downloaded_files ) = @_;
184 foreach my $f (@downloaded_files) {
186 # Check file has not been downloaded already
187 my $existing_file = $self->{schema
}->resultset('EdifactMessage')
188 ->find( { filename
=> $f, } );
189 if ($existing_file) {
190 carp
"skipping ingest of $f : filename exists";
194 $msg_hash->{filename
} = $f;
196 read_file
( "$self->{working_dir}/$f", binmode => ':raw' );
197 if ( !defined $file_content ) {
198 carp
"Unable to read download file $f";
201 from_to
( $file_content, 'iso-8859-1', 'utf8' );
202 $msg_hash->{raw_msg
} = $file_content;
203 $self->{schema
}->resultset('EdifactMessage')->create($msg_hash);
211 my $file_ext = _get_file_ext
( $self->{message_type
} );
213 # C = ready to retrieve E = Edifact
215 my $msg_hash = $self->message_hash();
216 my @downloaded_files;
217 my $ftp = Net
::FTP
->new(
218 $self->{account
}->host,
222 or return $self->_abort_download( undef,
223 "Cannot connect to $self->{account}->host: $EVAL_ERROR" );
224 $ftp->login( $self->{account
}->username, $self->{account
}->password )
225 or return $self->_abort_download( $ftp, "Cannot login: $ftp->message()" );
226 $ftp->cwd( $self->{account
}->download_directory )
227 or return $self->_abort_download( $ftp,
228 "Cannot change remote dir : $ftp->message()" );
229 my $file_list = $ftp->ls()
231 return $self->_abort_download( $ftp, 'cannot get file list from server' );
233 foreach my $filename ( @
{$file_list} ) {
235 if ( $filename =~ m/[.]$file_ext$/ ) {
237 if ( !$ftp->get( $filename, "$self->{working_dir}/$filename" ) ) {
238 $self->_abort_download( $ftp,
239 "Error retrieving $filename: $ftp->message" );
243 push @downloaded_files, $filename;
244 my $processed_name = $filename;
245 substr $processed_name, -3, 1, 'E';
246 $ftp->rename( $filename, $processed_name );
251 $self->ingest( $msg_hash, @downloaded_files );
253 return @downloaded_files;
257 my ( $self, @messages ) = @_;
258 my $ftp = Net
::FTP
->new(
259 $self->{account
}->host,
263 or return $self->_abort_download( undef,
264 "Cannot connect to $self->{account}->host: $EVAL_ERROR" );
265 $ftp->login( $self->{account
}->username, $self->{account
}->password )
266 or return $self->_abort_download( $ftp, "Cannot login: $ftp->message()" );
267 $ftp->cwd( $self->{account
}->upload_directory )
268 or return $self->_abort_download( $ftp,
269 "Cannot change remote dir : $ftp->message()" );
270 foreach my $m (@messages) {
271 my $content = $m->raw_msg;
273 open my $fh, '<', \
$content;
274 if ( $ftp->put( $fh, $m->filename ) ) {
276 $m->transfer_date( $self->{transfer_date
} );
292 my ( $self, @messages ) = @_;
293 my $sftp = Net
::SFTP
::Foreign
->new(
294 host
=> $self->{account
}->host,
295 user
=> $self->{account
}->username,
296 password
=> $self->{account
}->password,
299 $sftp->die_on_error("Cannot ssh to $self->{account}->host");
300 $sftp->setcwd( $self->{account
}->upload_directory )
301 or return $self->_abort_download( $sftp,
302 "Cannot change remote dir : $sftp->error" );
303 foreach my $m (@messages) {
304 my $content = $m->raw_msg;
306 open my $fh, '<', \
$content;
307 if ( $sftp->put( $fh, $m->filename ) ) {
309 $m->transfer_date( $self->{transfer_date
} );
320 # sftp will be closed on object destructor
325 my ( $self, @messages ) = @_;
326 my $dir = $self->{account
}->upload_directory;
328 foreach my $m (@messages) {
329 my $content = $m->raw_msg;
331 my $filename = $m->filename;
332 my $new_filename = "$dir/$filename";
333 if ( open my $fh, '>', $new_filename ) {
334 print {$fh} $content;
336 $m->transfer_date( $self->{transfer_date
} );
341 carp
"Could not transfer $m->filename : $ERRNO";
348 carp
"Upload directory $dir does not exist";
353 sub _abort_download
{
354 my ( $self, $handle, $log_message ) = @_;
356 my $a = $self->{account
}->description;
361 $log_message .= ": $a";
364 #returns undef i.e. an empty array
372 # 1st char Status C = Ready For pickup A = Completed E = Extracted
373 # 2nd Char Standard E = Edifact
374 # 3rd Char Type of message
381 if ( exists $file_types{$type} ) {
382 return $file_types{$type};
384 return 'XXXX'; # non matching type
390 message_type
=> $self->{message_type
},
391 vendor_id
=> $self->{account
}->vendor_id,
392 edi_acct
=> $self->{account
}->id,
395 transfer_date
=> $self->{transfer_date
}->ymd(),
406 Koha::Edifact::Transport
410 my $download = Koha::Edifact::Transport->new( $vendor_edi_account_id );
411 $downlowd->download_messages('QUOTE');
416 Module that handles Edifact download and upload transport
417 currently can use sftp or ftp
418 Or FILE to access a local directory (useful for testing)
425 Creates an object of Edifact::Transport requires to be passed the id
426 identifying the relevant edi vendor account
428 =head2 working_directory
430 getter and setter for the working_directory attribute
432 =head2 download_messages
434 called with the message type to download will perform the download
435 using the appropriate transport method
437 =head2 upload_messages
439 passed an array of messages will upload them to the supplier site
443 called by download_messages to perform the download using SFTP
447 loads downloaded files into the database
451 called by download_messages to perform the download using FTP
455 called by upload_messages to perform the upload using ftp
459 called by upload_messages to perform the upload using sftp
461 =head2 _abort_download
463 internal routine to halt operation on error and supply a stacktrace
467 internal method returning standard suffix for file names
468 according to message type
470 =head2 set_transport_direct
472 sets the direct ingest flag so that the object reads files from
473 the local file system useful in debugging
477 Colin Campbell <colin.campbell@ptfs-europe.com>
482 Copyright 2014,2015 PTFS-Europe Ltd
483 This program is free software, You may redistribute it under
484 under the terms of the GNU General Public License