Bug 22417: Add GUI to watch the progress of jobs
[srvgit] / admin / background_jobs.pl
1 #! /usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19 use CGI qw ( -utf8 );
20 use JSON qw( decode_json );
21 use C4::Context;
22 use C4::Auth;
23 use C4::Output;
24
25 use Koha::BackgroundJob;
26 use Koha::BackgroundJobs;
27
28 my $input             = new CGI;
29 my $op                = $input->param('op') || 'list';
30 my @messages;
31
32 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
33     {
34         template_name   => "admin/background_jobs.tt",
35         query           => $input,
36         type            => "intranet",
37         authnotrequired => 0,
38         flagsrequired   => { parameters => 'manage_background_jobs' }, # TODO Add this new permission, so far only works for superlibrarians
39         debug           => 1,
40     }
41 );
42
43 my $dbh = C4::Context->dbh;
44
45 if ( $op eq 'view' ) {
46     my $id = $input->param('id');
47     if ( my $job = Koha::BackgroundJobs->find($id) ) {
48         $template->param(
49             job       => $job,
50         );
51     } else {
52         $op = 'list';
53     }
54
55 }
56
57 if ( $op eq 'list' ) {
58     my $jobs = Koha::BackgroundJobs->search({}, { order_by => { -desc => 'enqueued_on' }});
59     $template->param( jobs => $jobs, );
60 }
61
62 $template->param(
63     messages => \@messages,
64     op       => $op,
65 );
66
67 output_html_with_http_headers $input, $cookie, $template->output;