Koha/misc/cronjobs/plugins_nightly.pl
Nick Clemens 906d5b1a85
Bug 31203: Alter other cronjobs that currenlty use cronlogaction
Added command line ooption logging and completion logging where
cronlogaction was already imported. We should probably standardize all
cronjobs, but this is a start

One cron didn't log on confirm, likely we need to update all crons to log
if confirm, and possibly not log if running in test mode? Another bug as well

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-05 16:12:59 -03:00

66 lines
1.5 KiB
Perl
Executable file

#!/usr/bin/perl
use Modern::Perl;
use Try::Tiny qw( catch try );
use C4::Context;
use C4::Log qw( cronlogaction );
use Koha::Logger;
use Koha::Plugins;
use Koha::Script -cron;
my $command_line_options = join(" ",@ARGV);
cronlogaction({ info => $command_line_options });
my $logger = Koha::Logger->get();
if ( C4::Context->config("enable_plugins") ) {
my @plugins = Koha::Plugins->new->GetPlugins(
{
method => 'cronjob_nightly',
}
);
foreach my $plugin (@plugins) {
try {
$plugin->cronjob_nightly();
}
catch {
warn "$_";
$logger->warn("$_");
};
}
}
cronlogaction({ action => 'End', info => "COMPLETED" });
=head1 NAME
plugins_nightly.pl - Run nightly tasks specified by plugins
=head1 SYNOPSIS
plugins_nightly.pl
=head1 AUTHOR
Martin Renvoize <martin.renvoize@ptfs-europe.com>
=head1 LICENSE
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>.
=cut