Bug 32814: Fix cataloguing/value_builder/callnumber-KU.pl
[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
21 use C4::Context;
22 use Koha::DateUtils qw( dt_from_string );
23 use C4::Auth qw( get_template_and_user );
24 use C4::Output qw( output_html_with_http_headers );
25
26 use Koha::BackgroundJobs;
27 use Koha::Virtualshelves;
28
29 my $input             = CGI->new;
30 my $op                = $input->param('op') || 'list';
31 my @messages;
32
33 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
34     {
35         template_name   => "admin/background_jobs.tt",
36         query           => $input,
37         type            => "intranet",
38         flagsrequired   => { catalogue => 1 },
39     }
40 );
41
42 my $logged_in_user = Koha::Patrons->find($loggedinuser);
43 my $can_manage_background_jobs =
44   $logged_in_user->has_permission( { parameters => 'manage_background_jobs' } );
45
46 if ( $op eq 'view' ) {
47     my $id = $input->param('id');
48     if ( my $job = Koha::BackgroundJobs->find($id) ) {
49         if ( $job->borrowernumber ne $loggedinuser
50             && !$can_manage_background_jobs )
51         {
52             push @messages, { code => 'cannot_view_job' };
53         }
54         else {
55             $template->param( job => $job, );
56             if ( $job->status ne 'new' ) {
57                 my $report = $job->additional_report() || {};
58                 $template->param( %$report );
59             }
60         }
61     } else {
62         $op = 'list';
63     }
64 }
65
66 if ( $op eq 'cancel' ) {
67     my $id = $input->param('id');
68     my $job = Koha::BackgroundJobs->find($id);
69     if (   $can_manage_background_jobs
70         || $job->borrowernumber eq $logged_in_user->borrowernumber )
71     {
72         $job->cancel;
73     }
74     else {
75         push @messages, { code => 'cannot_cancel_job' };
76     }
77     $op = 'list';
78 }
79
80 $template->param(
81     messages => \@messages,
82     op       => $op,
83 );
84
85 output_html_with_http_headers $input, $cookie, $template->output;