Bug 23681: (QA follow-up) Proper handling of default option
[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 C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24
25 use Koha::BackgroundJobs;
26 use Koha::Virtualshelves;
27
28 my $input             = CGI->new;
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         flagsrequired   => { catalogue => 1 },
38     }
39 );
40
41 my $logged_in_user = Koha::Patrons->find($loggedinuser);
42 my $can_manage_background_jobs =
43   $logged_in_user->has_permission( { parameters => 'manage_background_jobs' } );
44
45 if ( $op eq 'view' ) {
46     my $id = $input->param('id');
47     if ( my $job = Koha::BackgroundJobs->find($id) ) {
48         if ( $job->borrowernumber ne $loggedinuser
49             && !$can_manage_background_jobs )
50         {
51             push @messages, { code => 'cannot_view_job' };
52         }
53         else {
54             $template->param( job => $job, );
55             if ( $job->status ne 'new' ) {
56                 my $report = $job->additional_report() || {};
57                 $template->param( %$report );
58             }
59         }
60     } else {
61         $op = 'list';
62     }
63 }
64
65 if ( $op eq 'cancel' ) {
66     my $id = $input->param('id');
67     my $job = Koha::BackgroundJobs->find($id);
68     if (   $can_manage_background_jobs
69         || $job->borrowernumber eq $logged_in_user->borrowernumber )
70     {
71         $job->cancel;
72     }
73     else {
74         push @messages, { code => 'cannot_cancel_job' };
75     }
76     $op = 'list';
77 }
78
79
80 if ( $op eq 'list' ) {
81     my $jobs =
82       $can_manage_background_jobs
83       ? Koha::BackgroundJobs->search( {},
84         { order_by => { -desc => 'enqueued_on' } } )
85       : Koha::BackgroundJobs->search(
86         { borrowernumber => $logged_in_user->borrowernumber },
87         { order_by       => { -desc => 'enqueued_on' } }
88       );
89     $template->param( jobs => $jobs );
90 }
91
92 $template->param(
93     messages => \@messages,
94     op       => $op,
95 );
96
97 output_html_with_http_headers $input, $cookie, $template->output;