Bug 32030: Add/remove packages to/from EBSCO's holdings
[koha.git] / Koha / REST / V1 / ERM / EHoldings / Packages.pm
1 package Koha::REST::V1::ERM::EHoldings::Packages;
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::Packages::Local;
26 use Koha::REST::V1::ERM::EHoldings::Packages::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::Packages::EBSCO::list($c);
42     } else {
43         return Koha::REST::V1::ERM::EHoldings::Packages::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::Packages::EBSCO::get($c);
59     } else {
60         return Koha::REST::V1::ERM::EHoldings::Packages::Local::get($c);
61     }
62 }
63
64 =head3 add
65
66 Controller function that handles adding a new Koha::ERM::EHoldings::Package 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::Packages::Local::add($c);
78     }
79 }
80
81 =head3 update
82
83 Controller function that handles updating a Koha::ERM::EHoldings::Package object
84
85 =cut
86
87 sub update {
88     my $c = shift->openapi->valid_input or return;
89
90     my $provider = $c->validation->param('provider');
91     if ( $provider eq 'ebsco' ) {
92         die "invalid action";
93     } else {
94         return Koha::REST::V1::ERM::EHoldings::Packages::Local::update($c);
95     }
96 };
97
98 =head3 delete
99
100 =cut
101
102 sub delete {
103     my $c = shift->openapi->valid_input or return;
104
105     my $provider = $c->validation->param('provider');
106     if ( $provider eq 'ebsco' ) {
107         die "invalid action";
108     } else {
109         return Koha::REST::V1::ERM::EHoldings::Packages::Local::delete($c);
110     }
111 }
112
113 =head3 edit
114
115 Controller function that handles editing a single Koha::ERM::EHoldings::Package object
116
117 =cut
118
119 sub edit {
120     my $c = shift->openapi->valid_input or return;
121
122     my $provider = $c->validation->param('provider');
123     if ( $provider eq 'ebsco' ) {
124         return Koha::REST::V1::ERM::EHoldings::Packages::EBSCO::edit($c);
125     } else {
126         die "invalid action";
127     }
128 }
129
130 1;