3 # This file is part of Koha.
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.
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.
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>.
20 use JSON
qw( decode_json );
27 use Koha
::BackgroundJobs
;
28 use Koha
::Virtualshelves
;
31 my $op = $input->param('op') || 'list';
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;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 template_name
=> "admin/background_jobs.tt",
42 flagsrequired
=> $flags_required,
47 if ( $op eq 'view' ) {
48 my $id = $input->param('id');
49 if ( my $job = Koha
::BackgroundJobs
->find($id) ) {
50 if ( $job->borrowernumber ne $loggedinuser
51 && !Koha
::Patrons
->find($loggedinuser)->has_permission( { parameters
=> 'manage_background_jobs' } ) )
53 push @messages, { code
=> 'cannot_view_job' };
56 $template->param( job
=> $job, );
58 lists
=> scalar Koha
::Virtualshelves
->search(
60 { category
=> 1, owner
=> $loggedinuser },
64 ) if $job->type eq 'batch_biblio_record_modification';
71 if ( $op eq 'cancel' ) {
72 my $id = $input->param('id');
73 if ( my $job = Koha
::BackgroundJobs
->find($id) ) { # FIXME Make sure logged in user can cancel this job
80 if ( $op eq 'list' ) {
81 my $jobs = Koha
::BackgroundJobs
->search({}, { order_by
=> { -desc
=> 'enqueued_on' }});
82 $template->param( jobs
=> $jobs );
86 messages
=> \
@messages,
90 output_html_with_http_headers
$input, $cookie, $template->output;