Bug 25428: Correctly encode link if authority subfield is a URL
[koha.git] / Koha / REST / V1 / Items.pm
blob4781024b362b5dafcf0285e1e010ad94f36a5627
1 package Koha::REST::V1::Items;
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>.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Controller';
22 use Koha::Items;
24 use Try::Tiny;
26 =head1 NAME
28 Koha::REST::V1::Items - Koha REST API for handling items (V1)
30 =head1 API
32 =head2 Methods
34 =cut
36 =head3 list
38 Controller function that handles listing Koha::Item objects
40 =cut
42 sub list {
43 my $c = shift->openapi->valid_input or return;
45 return try {
46 my $items_set = Koha::Items->new;
47 my $items = $c->objects->search( $items_set );
48 return $c->render(
49 status => 200,
50 openapi => $items
53 catch {
54 $c->unhandled_exception($_);
59 =head3 get
61 Controller function that handles retrieving a single Koha::Item
63 =cut
65 sub get {
66 my $c = shift->openapi->valid_input or return;
68 try {
69 my $item = Koha::Items->find($c->validation->param('item_id'));
70 unless ( $item ) {
71 return $c->render(
72 status => 404,
73 openapi => { error => 'Item not found'}
76 return $c->render( status => 200, openapi => $item->to_api );
78 catch {
79 $c->unhandled_exception($_);