Updating credits and history document
[koha.git] / tools / scheduler.pl
1 #!/usr/bin/perl
2
3 # Copyright 2007 Liblime Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use C4::Context;
22 use C4::Scheduler;
23 use C4::Reports::Guided;
24 use C4::Auth;
25 use CGI;
26 use C4::Output;
27 use C4::Dates;
28
29 use vars qw($debug);
30
31 BEGIN {
32     $debug = $ENV{DEBUG} || 0;
33 }
34
35 my $input = new CGI;
36
37 my $base        = C4::Context->config('intranetdir');
38 my $CONFIG_NAME = $ENV{'KOHA_CONF'};
39
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
41     {
42         template_name   => "tools/scheduler.tmpl",
43         query           => $input,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { tools => 'schedule_tasks' },
47         debug           => 1,
48     }
49 );
50
51 my $mode = $input->param('mode');
52 my $id   = $input->param('id');
53
54 if ( $mode eq 'job_add' ) {
55
56     # Retrieving the date according to the dateformat syspref
57     my $c4date = C4::Dates->new($input->param('startdate'));
58
59     # Formatting it for Schedule::At
60     my $startdate = join('', (split /-/, $c4date->output("iso")));
61
62     my $starttime = $input->param('starttime');
63     my $recurring = $input->param('recurring');
64     $starttime =~ s/\://g;
65     my $start  = $startdate . $starttime;
66     my $report = $input->param('report');
67     my $format = $input->param('format');
68     my $email  = $input->param('email');
69     my $command =
70         "EXPORT KOHA_CONF=\"$CONFIG_NAME\"; " . $base
71       . "/tools/runreport.pl $report $format $email";
72
73     if ($recurring) {
74         my $frequency = $input->param('frequency');
75         add_cron_job( $start, $command );
76     }
77     else {
78         unless ( add_at_job( $start, $command ) ) {
79             $template->param( job_add_failed => 1 );
80         }
81     }
82 }
83
84 if ( $mode eq 'job_change' ) {
85     my $jobid = $input->param('jobid');
86     if ( $input->param('delete') ) {
87         remove_at_job($jobid);
88     }
89 }
90
91 my $jobs = get_jobs();
92 my @jobloop;
93 foreach my $job ( values %$jobs ) {
94     push @jobloop, $job;
95 }
96
97 @jobloop = sort { $a->{TIME} cmp $b->{TIME} } @jobloop;
98
99 my $reports = get_saved_reports();
100 if ( defined $id ) {
101     foreach my $report (@$reports) {
102         $report->{'selected'} = 1 if $report->{'id'} eq $id;
103     }
104 }
105
106 $template->param( 'savedreports' => $reports );
107 $template->param( JOBS           => \@jobloop );
108 my $time = localtime(time);
109 $template->param( 'time' => $time );
110 $template->param(
111     DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
112     dateformat               => C4::Dates->new()->format(),
113     debug                    => $debug,
114 );
115 output_html_with_http_headers $input, $cookie, $template->output;