Koha/misc/cronjobs/plugins_nightly.pl
Pedro Amorim f8c4579dbb Bug 35479: (QA follow-up): Tidy
Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit d7a633048e)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
2024-02-13 11:24:17 +01:00

70 lines
1.8 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) {
my $plugin_name = ref $plugin;
try {
cronlogaction( { info => "$plugin_name" } );
$plugin->cronjob_nightly();
cronlogaction( { action => "End", info => "$plugin_name COMPLETED" } );
}
catch {
cronlogaction( { action => "Error", info => "$plugin_name FAILED with error: $_" } );
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