Jonathan Druart
9d6d641d1f
On bug 17591 we discovered that there was something weird going on with the way we export and use subroutines/modules. This patch tries to standardize our EXPORT to use EXPORT_OK only. That way we will need to explicitely define the subroutine we want to use from a module. This patch is a squashed version of: Bug 17600: After export.pl Bug 17600: After perlimport Bug 17600: Manual changes Bug 17600: Other manual changes after second perlimports run Bug 17600: Fix tests And a lot of other manual changes. export.pl is a dirty script that can be found on bug 17600. "perlimport" is: git clone https://github.com/oalders/App-perlimports.git cd App-perlimports/ cpanm --installdeps . export PERL5LIB="$PERL5LIB:/kohadevbox/koha/App-perlimports/lib" find . \( -name "*.pl" -o -name "*.pm" \) -exec perl App-perlimports/script/perlimports --inplace-edit --no-preserve-unused --filename {} \; The ideas of this patch are to: * use EXPORT_OK instead of EXPORT * perltidy the EXPORT_OK list * remove '&' before the subroutine names * remove some uneeded use statements * explicitely import the subroutines we need within the controllers or modules Note that the private subroutines (starting with _) should not be exported (and not used from outside of the module except from tests). EXPORT vs EXPORT_OK (from https://www.thegeekstuff.com/2010/06/perl-exporter-examples/) """ Export allows to export the functions and variables of modules to user’s namespace using the standard import method. This way, we don’t need to create the objects for the modules to access it’s members. @EXPORT and @EXPORT_OK are the two main variables used during export operation. @EXPORT contains list of symbols (subroutines and variables) of the module to be exported into the caller namespace. @EXPORT_OK does export of symbols on demand basis. """ If this patch caused a conflict with a patch you wrote prior to its push: * Make sure you are not reintroducing a "use" statement that has been removed * "$subroutine" is not exported by the C4::$MODULE module means that you need to add the subroutine to the @EXPORT_OK list * Bareword "$subroutine" not allowed while "strict subs" means that you didn't imported the subroutine from the module: - use $MODULE qw( $subroutine list ); You can also use the fully qualified namespace: C4::$MODULE::$subroutine Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
181 lines
5 KiB
Perl
Executable file
181 lines
5 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# Copyright 2013,2014,2015 PTFS Europe Ltd
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha 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 Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use warnings;
|
|
use strict;
|
|
use utf8;
|
|
|
|
# Handles all the edi processing for a site
|
|
# loops through the vendor_edifact records and uploads and downloads
|
|
# edifact files if the appropriate type is enabled
|
|
# downloaded quotes, invoices and responses are processed here
|
|
# if orders are enabled and present they are generated and sent
|
|
# can be run as frequently as required
|
|
# log messages are appended to logdir/editrace.log
|
|
|
|
use Koha::Script -cron;
|
|
use C4::Context;
|
|
use Log::Log4perl qw(:easy);
|
|
use Koha::Database;
|
|
use Koha::EDI qw( process_quote process_invoice process_ordrsp );
|
|
use Koha::Edifact::Transport;
|
|
use Koha::Plugins::Handler;
|
|
use Fcntl qw( LOCK_EX O_CREAT O_RDWR SEEK_SET );
|
|
|
|
my $logdir = C4::Context->config('logdir');
|
|
|
|
# logging set to trace as this may be what you
|
|
# want on implementation
|
|
Log::Log4perl->easy_init(
|
|
{
|
|
level => $TRACE,
|
|
file => ">>$logdir/editrace.log",
|
|
}
|
|
);
|
|
|
|
# we dont have a lock dir in context so use the logdir
|
|
my $pidfile = "$logdir/edicron.pid";
|
|
|
|
my $pid_handle = check_pidfile();
|
|
|
|
my $schema = Koha::Database->new()->schema();
|
|
|
|
my @edi_accts = $schema->resultset('VendorEdiAccount')->all();
|
|
|
|
my $logger = Log::Log4perl->get_logger();
|
|
|
|
for my $acct (@edi_accts) {
|
|
if ( $acct->quotes_enabled ) {
|
|
my $downloader = Koha::Edifact::Transport->new( $acct->id );
|
|
$downloader->download_messages('QUOTE');
|
|
|
|
}
|
|
|
|
if ( $acct->invoices_enabled ) {
|
|
my $downloader;
|
|
|
|
if ( $acct->plugin ) {
|
|
$downloader = Koha::Plugins::Handler->run(
|
|
{
|
|
class => $acct->plugin,
|
|
method => 'edifact_transport',
|
|
params => {
|
|
vendor_edi_account_id => $acct->id,
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
$downloader ||= Koha::Edifact::Transport->new( $acct->id );
|
|
|
|
$downloader->download_messages('INVOICE');
|
|
|
|
}
|
|
if ( $acct->orders_enabled ) {
|
|
|
|
# select pending messages
|
|
my @pending_orders = $schema->resultset('EdifactMessage')->search(
|
|
{
|
|
message_type => 'ORDERS',
|
|
vendor_id => $acct->vendor_id,
|
|
status => 'Pending',
|
|
}
|
|
);
|
|
my $uploader = Koha::Edifact::Transport->new( $acct->id );
|
|
$uploader->upload_messages(@pending_orders);
|
|
}
|
|
if ( $acct->responses_enabled ) {
|
|
my $downloader = Koha::Edifact::Transport->new( $acct->id );
|
|
$downloader->download_messages('ORDRSP');
|
|
}
|
|
}
|
|
|
|
# process any downloaded quotes
|
|
|
|
my @downloaded_quotes = $schema->resultset('EdifactMessage')->search(
|
|
{
|
|
message_type => 'QUOTE',
|
|
status => 'new',
|
|
}
|
|
)->all;
|
|
|
|
foreach my $quote_file (@downloaded_quotes) {
|
|
my $filename = $quote_file->filename;
|
|
$logger->trace("Processing quote $filename");
|
|
process_quote($quote_file);
|
|
}
|
|
|
|
# process any downloaded invoices
|
|
if ( C4::Context->preference('EdifactInvoiceImport') eq 'automatic' ) {
|
|
my @downloaded_invoices = $schema->resultset('EdifactMessage')->search(
|
|
{
|
|
message_type => 'INVOICE',
|
|
status => 'new',
|
|
}
|
|
)->all;
|
|
|
|
foreach my $invoice (@downloaded_invoices) {
|
|
my $filename = $invoice->filename();
|
|
$logger->trace("Processing invoice $filename");
|
|
process_invoice($invoice);
|
|
}
|
|
}
|
|
|
|
my @downloaded_responses = $schema->resultset('EdifactMessage')->search(
|
|
{
|
|
message_type => 'ORDRSP',
|
|
status => 'new',
|
|
}
|
|
)->all;
|
|
|
|
foreach my $response (@downloaded_responses) {
|
|
my $filename = $response->filename();
|
|
$logger->trace("Processing order response $filename");
|
|
process_ordrsp($response);
|
|
}
|
|
|
|
if ( close $pid_handle ) {
|
|
unlink $pidfile;
|
|
exit 0;
|
|
}
|
|
else {
|
|
$logger->error("Error on pidfile close: $!");
|
|
exit 1;
|
|
}
|
|
|
|
sub check_pidfile {
|
|
|
|
# sysopen my $fh, $pidfile, O_EXCL | O_RDWR or log_exit "$0 already running"
|
|
sysopen my $fh, $pidfile, O_RDWR | O_CREAT
|
|
or log_exit("$0: open $pidfile: $!");
|
|
flock $fh => LOCK_EX or log_exit("$0: flock $pidfile: $!");
|
|
|
|
sysseek $fh, 0, SEEK_SET or log_exit("$0: sysseek $pidfile: $!");
|
|
truncate $fh, 0 or log_exit("$0: truncate $pidfile: $!");
|
|
print $fh "$$\n" or log_exit("$0: print $pidfile: $!");
|
|
|
|
return $fh;
|
|
}
|
|
|
|
sub log_exit {
|
|
my $error = shift;
|
|
$logger->error($error);
|
|
|
|
exit 1;
|
|
}
|