Bug 15496: Add API endoint for deleting a bib
[koha-equinox.git] / Koha / REST / V1 / Biblios.pm
1 package Koha::REST::V1::Biblios;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 use Modern::Perl;
19
20 use Mojo::Base 'Mojolicious::Controller';
21
22 use Koha::Biblios;
23 use C4::Biblio qw(DelBiblio);
24
25 use Try::Tiny;
26
27 =head1 API
28
29 =head2 Class Methods
30
31 =head3 delete
32
33 =cut
34
35 sub delete {
36     my $c = shift->openapi->valid_input or return;
37
38     my $biblio = Koha::Biblios->find( $c->validation->param('biblio_id') );
39
40     if ( not defined $biblio ) {
41         return $c->render(
42             status  => 404,
43             openapi => { error => "Object not found" }
44         );
45     }
46
47     return try {
48         my $error = DelBiblio( $biblio->id );
49
50         if ($error) {
51             return $c->render(
52                 status  => 409,
53                 openapi => { error => $error }
54             );
55         }
56         else {
57             return $c->render( status => 200, openapi => "" );
58         }
59     }
60     catch {
61         if ( $_->isa('DBIx::Class::Exception') ) {
62             return $c->render(
63                 status  => 500,
64                 openapi => { error => $_->{msg} }
65             );
66         }
67         else {
68             return $c->render(
69                 status  => 500,
70                 openapi => { error => "Something went wrong, check the logs." }
71             );
72         }
73     };
74 }
75
76 1;