Bug 22417: Let owner of a job see the progress
[koha.git] / 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 Try::Tiny;
22
23 use C4::Context;
24 use C4::Auth;
25 use C4::Output;
26
27 use Koha::BackgroundJobs;
28 use Koha::Virtualshelves;
29
30 my $input             = new CGI;
31 my $op                = $input->param('op') || 'list';
32 my @messages;
33
34 # The "view" view should be accessible for the user who create this job.
35 my $flags_required = $op ne 'view' ? { parameters => 'manage_background_jobs' } : undef;
36
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38     {
39         template_name   => "admin/background_jobs.tt",
40         query           => $input,
41         type            => "intranet",
42         authnotrequired => 0,
43         flagsrequired   => $flags_required,
44         debug           => 1,
45     }
46 );
47
48 if ( $op eq 'view' ) {
49     my $id = $input->param('id');
50     if ( my $job = Koha::BackgroundJobs->find($id) ) {
51         if ( $job->borrowernumber ne $loggedinuser
52             && !Koha::Patrons->find($loggedinuser)->has_permission( { parameters => 'manage_background_jobs' } ) )
53         {
54             push @messages, { code => 'cannot_view_job' };
55         }
56         else {
57             $template->param( job => $job, );
58             $template->param(
59                 lists => scalar Koha::Virtualshelves->search(
60                     [
61                         { category => 1, owner => $loggedinuser },
62                         { category => 2 }
63                     ]
64                 )
65             ) if $job->type eq 'batch_biblio_record_modification';
66         }
67     } else {
68         $op = 'list';
69     }
70 }
71
72 if ( $op eq 'cancel' ) {
73     my $id = $input->param('id');
74     if ( my $job = Koha::BackgroundJobs->find($id) ) { # FIXME Make sure logged in user can cancel this job
75         $job->cancel;
76     }
77     $op = 'list';
78 }
79
80
81 if ( $op eq 'list' ) {
82     my $jobs = Koha::BackgroundJobs->search({}, { order_by => { -desc => 'enqueued_on' }});
83     my @pending_jobs;
84     try {
85         my $conn = Koha::BackgroundJob->connect;
86         my $job_type = 'batch_biblio_record_modification';
87         $conn->subscribe({ destination => $job_type, ack => 'client' });
88         my @frames;
89         while (my $frame = $conn->receive_frame({timeout => 1})) {
90             last unless $frame;
91             my $body = $frame->body;
92             my $args = decode_json($body);
93             push @pending_jobs, $args->{job_id};
94             push @frames, $frame;
95         }
96         $conn->nack( { frame => $_ } ) for @frames;
97         $conn->disconnect;
98     } catch {
99         push @messages, {
100             type => 'error',
101             code => 'cannot_retrieve_jobs',
102             error => $_,
103         };
104     };
105
106     $template->param( jobs => $jobs, pending_jobs => \@pending_jobs, );
107 }
108
109 $template->param(
110     messages => \@messages,
111     op       => $op,
112 );
113
114 output_html_with_http_headers $input, $cookie, $template->output;