Bug 34587: Abstract reports backend to allow new data types
[koha.git] / Koha / REST / V1 / ERM / UsageTitles.pm
1 package Koha::REST::V1::ERM::UsageTitles;
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 use Module::Load qw( load );
22
23 use Koha::ERM::UsageTitles;
24 use Koha::ERM::UsagePlatforms;
25 use Koha::ERM::UsageItems;
26 use Koha::ERM::UsageDatabases;
27 use Koha::ERM::UsageDataProvider;
28 use Koha::ERM::UsageDataProviders;
29
30 use Clone        qw( clone );
31 use Scalar::Util qw( blessed );
32 use Try::Tiny    qw( catch try );
33 use JSON;
34
35 =head1 API
36
37 =head2 Methods
38
39 =head3 list
40
41 =cut
42
43 sub list {
44     my $c = shift->openapi->valid_input or return;
45
46     return try {
47         my $usage_titles_set = Koha::ERM::UsageTitles->new;
48         my $usage_titles     = $c->objects->search($usage_titles_set);
49         return $c->render( status => 200, openapi => $usage_titles );
50     }
51     catch {
52         $c->unhandled_exception($_);
53     };
54 }
55
56 1;