Bug 7317: (followup) Migrate endpoint to OpenAPI
[koha.git] / Koha / REST / V1 / Illrequests.pm
1 package Koha::REST::V1::Illrequests;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 use Modern::Perl;
19
20 use Mojo::Base 'Mojolicious::Controller';
21
22 use Koha::Illrequests;
23 use Koha::Libraries;
24
25 sub list {
26     my $c = shift->openapi->valid_input or return;
27
28     my $args = $c->req->params->to_hash // {};
29     my $filter;
30     my $output = [];
31
32     # Create a hash where all keys are embedded values
33     # Enables easy checking
34     my %embed;
35     if (defined $args->{embed}) {
36         %embed = map { $_ => 1 }  @{$args->{embed}};
37         delete $args->{embed};
38     }
39
40     for my $filter_param ( keys %$args ) {
41         my @values = split(/,/, $args->{$filter_param});
42         $filter->{$filter_param} = \@values;
43     }
44
45     my $requests = Koha::Illrequests->search($filter);
46
47     if ( scalar (keys %embed) )
48     {
49         # Need to embed stuff
50         my @results = map { $_->TO_JSON(\%embed) } $requests->as_list;
51         return $c->render( status => 200, openapi => \@results );
52     }
53     else
54     {
55         return $c->render( status => 200, openapi => $requests );
56     }
57 }
58
59 1;