Bug 32030: Add/remove resources to/from EBSCO's holdings
[koha.git] / Koha / REST / V1 / ERM / EHoldings / Resources.pm
1 package Koha::REST::V1::ERM::EHoldings::Resources;
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::REST::V1::ERM::EHoldings::Resources::Local;
23 use Koha::REST::V1::ERM::EHoldings::Resources::EBSCO;
24
25 use Scalar::Util qw( blessed );
26 use Try::Tiny qw( catch try );
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::Resources::EBSCO::list($c);
42     } else {
43         return Koha::REST::V1::ERM::EHoldings::Resources::Local::list($c);
44     }
45 }
46
47 =head3 get
48
49 Controller function that handles retrieving a single Koha::ERM::EHoldings::Resource 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::Resources::EBSCO::get($c);
59     } else {
60         return Koha::REST::V1::ERM::EHoldings::Resources::Local::get($c);
61     }
62 }
63
64 =head3 edit
65
66 Controller function that handles editing a single Koha::ERM::EHoldings::Resource object
67
68 =cut
69
70 sub edit {
71     my $c = shift->openapi->valid_input or return;
72
73     my $provider = $c->validation->param('provider');
74     if ( $provider eq 'ebsco' ) {
75         return Koha::REST::V1::ERM::EHoldings::Resources::EBSCO::edit($c);
76     } else {
77         die "invalid action";
78     }
79 }
80
81 1;