Jonathan Druart
41a8005d10
We should remove the debug statements or use Koha::Logger when we want to keep it. Test plan: Confirm that occurrences of remaining occurrences of DEBUG need to be kept (historical scripts for instance) Confirm that the occurrences removed by this patch can be removed Confirm that the occurrences replaced by Koha::Logger are correct Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Looks good to me, noting a few minor points on BZ. JD amended patch: replace "warn #Finished" with "#warn Finished", and put the statement on a single line Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
112 lines
3.2 KiB
Perl
Executable file
112 lines
3.2 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2007 Liblime 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 Modern::Perl;
|
|
use C4::Context;
|
|
use C4::Scheduler;
|
|
use C4::Reports::Guided;
|
|
use C4::Auth;
|
|
use CGI qw ( -utf8 );
|
|
use C4::Output;
|
|
use Koha::DateUtils;;
|
|
|
|
my $input = CGI->new;
|
|
my $base;
|
|
|
|
if ( C4::Context->config('supportdir') ) {
|
|
$base = C4::Context->config('supportdir');
|
|
}
|
|
else {
|
|
$base = "/usr/share/koha/bin";
|
|
}
|
|
|
|
my $CONFIG_NAME = $ENV{'KOHA_CONF'};
|
|
|
|
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "tools/scheduler.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
flagsrequired => { tools => 'schedule_tasks' },
|
|
}
|
|
);
|
|
|
|
my $mode = $input->param('mode');
|
|
my $id = $input->param('id');
|
|
|
|
if ( $mode eq 'job_add' ) {
|
|
|
|
# Retrieving the date according to the dateformat syspref
|
|
my $c4date = output_pref({ dt => dt_from_string( scalar $input->param('startdate') ), dateformat => 'iso', dateonly => 1 });
|
|
|
|
# Formatting it for Schedule::At
|
|
my $startdate = join('', (split /-/, $c4date));
|
|
|
|
my $starttime = $input->param('starttime');
|
|
$starttime =~ s/\://g;
|
|
my $start = $startdate . $starttime;
|
|
my $report = $input->param('report');
|
|
my $format = $input->param('format');
|
|
my $email = $input->param('email');
|
|
my $command =
|
|
"export KOHA_CONF=\"$CONFIG_NAME\"; " .
|
|
"$base/cronjobs/runreport.pl $report --format=$format --to=$email";
|
|
|
|
#FIXME commit ea899bc55933cd74e4665d70b1c48cab82cd1257 added recurring parameter (it is not in template) and call to add_cron_job (undefined)
|
|
# my $recurring = $input->param('recurring');
|
|
# if ($recurring) {
|
|
# my $frequency = $input->param('frequency');
|
|
# add_cron_job( $start, $command );
|
|
# }
|
|
# else {
|
|
# #here was the the unless ( add_at_job
|
|
# }
|
|
|
|
unless ( add_at_job( $start, $command ) ) {
|
|
$template->param( job_add_failed => 1 );
|
|
}
|
|
}
|
|
|
|
if ( $mode eq 'job_change' ) {
|
|
my $jobid = $input->param('jobid');
|
|
if ( $input->param('delete') ) {
|
|
remove_at_job($jobid);
|
|
}
|
|
}
|
|
|
|
my $jobs = get_jobs();
|
|
my @jobloop;
|
|
foreach my $job ( values %$jobs ) {
|
|
push @jobloop, $job;
|
|
}
|
|
|
|
@jobloop = sort { $a->{TIME} cmp $b->{TIME} } @jobloop;
|
|
|
|
my $reports = get_saved_reports();
|
|
if ( defined $id ) {
|
|
foreach my $report (@$reports) {
|
|
$report->{'selected'} = 1 if $report->{'id'} eq $id;
|
|
}
|
|
}
|
|
|
|
$template->param( 'savedreports' => $reports );
|
|
$template->param( JOBS => \@jobloop );
|
|
my $time = localtime(time);
|
|
$template->param( 'time' => $time );
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|