Bug 22417: Restore the 'add to list' feature
[koha-ffzg.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 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "admin/background_jobs.tt",
37         query           => $input,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { parameters => 'manage_background_jobs' }, # TODO Add this new permission, so far only works for superlibrarians
41         debug           => 1,
42     }
43 );
44
45 my $dbh = C4::Context->dbh;
46
47 if ( $op eq 'view' ) {
48     my $id = $input->param('id');
49     if ( my $job = Koha::BackgroundJobs->find($id) ) {
50         $template->param(
51             job       => $job,
52         );
53         $template->param( lists => scalar Koha::Virtualshelves->search([{ category => 1, owner => $loggedinuser }, { category => 2 }]) )
54             if $job->type eq 'batch_biblio_record_modification';
55     } else {
56         $op = 'list';
57     }
58 }
59
60 if ( $op eq 'cancel' ) {
61     my $id = $input->param('id');
62     if ( my $job = Koha::BackgroundJobs->find($id) ) { # FIXME Make sure logged in user can cancel this job
63         $job->cancel;
64     }
65     $op = 'list';
66 }
67
68
69 if ( $op eq 'list' ) {
70     my $jobs = Koha::BackgroundJobs->search({}, { order_by => { -desc => 'enqueued_on' }});
71     my @pending_jobs;
72     try {
73         my $conn = Koha::BackgroundJob->connect;
74         my $job_type = 'batch_biblio_record_modification';
75         $conn->subscribe({ destination => $job_type, ack => 'client' });
76         my @frames;
77         while (my $frame = $conn->receive_frame({timeout => 1})) {
78             last unless $frame;
79             my $body = $frame->body;
80             my $args = decode_json($body);
81             push @pending_jobs, $args->{job_id};
82             push @frames, $frame;
83         }
84         $conn->nack( { frame => $_ } ) for @frames;
85         $conn->disconnect;
86     } catch {
87         push @messages, {
88             type => 'error',
89             code => 'cannot_retrieve_jobs',
90             error => $_,
91         };
92     };
93
94     $template->param( jobs => $jobs, pending_jobs => \@pending_jobs, );
95 }
96
97 $template->param(
98     messages => \@messages,
99     op       => $op,
100 );
101
102 output_html_with_http_headers $input, $cookie, $template->output;