Bug 32030: Make the ERMProviders syspref multivaluated
[koha.git] / Koha / REST / V1 / ERM / EHoldings / Titles.pm
1 package Koha::REST::V1::ERM::EHoldings::Titles;
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 Scalar::Util qw( blessed );
23 use Try::Tiny qw( catch try );
24
25 use Koha::REST::V1::ERM::EHoldings::Titles::Local;
26 use Koha::REST::V1::ERM::EHoldings::Titles::EBSCO;
27
28 =head1 API
29
30 =head2 Methods
31
32 =head3 list
33
34 =cut
35
36 sub list {
37     my $c = shift->openapi->valid_input or return;
38
39     my $provider = $c->validation->param('provider');
40     if ( $provider eq 'ebsco' ) {
41         return Koha::REST::V1::ERM::EHoldings::Titles::EBSCO::list($c);
42     } else {
43         return Koha::REST::V1::ERM::EHoldings::Titles::Local::list($c);
44     }
45 }
46
47 =head3 get
48
49 Controller function that handles retrieving a single Koha::ERM::EHoldings::Package object
50
51 =cut
52
53 sub get {
54     my $c = shift->openapi->valid_input or return;
55
56     my $provider = $c->validation->param('provider');
57     if ( $provider eq 'ebsco' ) {
58         return Koha::REST::V1::ERM::EHoldings::Titles::EBSCO::get($c);
59     } else {
60         return Koha::REST::V1::ERM::EHoldings::Titles::Local::get($c);
61     }
62 }
63
64 =head3 add
65
66 Controller function that handles adding a new Koha::ERM::EHoldings::Title object
67
68 =cut
69
70 sub add{
71     my $c = shift->openapi->valid_input or return;
72
73     my $provider = $c->validation->param('provider');
74     if ( $provider eq 'ebsco' ) {
75         die "invalid action";
76     } else {
77         return Koha::REST::V1::ERM::EHoldings::Titles::Local::add($c);
78     }
79 }
80
81
82 =head3 update
83
84 Controller function that handles updating a Koha::ERM::EHoldings::Title object
85
86 =cut
87
88 sub update {
89     my $c = shift->openapi->valid_input or return;
90
91     my $provider = $c->validation->param('provider');
92     if ( $provider eq 'ebsco' ) {
93         die "invalid action";
94     } else {
95         return Koha::REST::V1::ERM::EHoldings::Titles::Local::update($c);
96     }
97 }
98
99 =head3 delete
100
101 =cut
102
103 sub delete {
104     my $c = shift->openapi->valid_input or return;
105
106     my $provider = $c->validation->param('provider');
107     if ( $provider eq 'ebsco' ) {
108         die "invalid action";
109     } else {
110         return Koha::REST::V1::ERM::EHoldings::Titles::Local::delete($c);
111     }
112 }
113
114 1;