]> git.koha-community.org Git - koha.git/blob - Koha/REST/V1/BackgroundJobs.pm
Bug 30982: Make code more re-usable
[koha.git] / Koha / REST / V1 / BackgroundJobs.pm
1 package Koha::REST::V1::BackgroundJobs;
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
20 use Mojo::Base 'Mojolicious::Controller';
21
22 use Koha::BackgroundJobs;
23
24 use Try::Tiny;
25
26 =head1 API
27
28 =head2 Methods
29
30 =head3 list
31
32 =cut
33
34 sub list {
35     my $c = shift->openapi->valid_input or return;
36
37     return try {
38         my $background_jobs_set = Koha::BackgroundJobs->new;
39         my $background_jobs     = $c->objects->search($background_jobs_set);
40         return $c->render( status => 200, openapi => $background_jobs );
41     }
42     catch {
43         $c->unhandled_exception($_);
44     };
45 }
46
47 sub get {
48     my $c = shift->openapi->valid_input or return;
49
50     return try {
51
52         my $background_job_id = $c->validation->param('background_job_id');
53         my $patron            = $c->stash('koha.user');
54
55         my $can_manage_background_jobs =
56           $patron->has_permission( { parameters => 'manage_background_jobs' } );
57
58         my $background_job = Koha::BackgroundJobs->find($background_job_id);
59
60         return $c->render(
61             status  => 404,
62             openapi => { error => "Object not found" }
63         ) unless $background_job;
64
65         return $c->render(
66             status  => 403,
67             openapi => { error => "Cannot see background job info" }
68           )
69           if !$can_manage_background_jobs
70           && $background_job->borrowernumber != $patron->borrowernumber;
71
72         return $c->render(
73             status  => 200,
74             openapi => $background_job->to_api
75         );
76     }
77     catch {
78         $c->unhandled_exception($_);
79     };
80 }
81
82 1;