Bug 22280: Add a unit test
[koha.git] / Koha / REST / V1 / Biblios.pm
blob6e8da01f8238b88a35dea852b6140a8aefa42a34
1 package Koha::REST::V1::Biblios;
3 # This file is part of Koha.
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.
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.
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.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Controller';
22 use Koha::Biblios;
23 use C4::Biblio qw(DelBiblio);
25 use Try::Tiny;
27 =head1 API
29 =head2 Class Methods
31 =head3 delete
33 =cut
35 sub delete {
36 my $c = shift->openapi->valid_input or return;
38 my $biblio = Koha::Biblios->find( $c->validation->param('biblio_id') );
40 if ( not defined $biblio ) {
41 return $c->render(
42 status => 404,
43 openapi => { error => "Object not found" }
47 return try {
48 my $error = DelBiblio( $biblio->id );
50 if ($error) {
51 return $c->render(
52 status => 409,
53 openapi => { error => $error }
56 else {
57 return $c->render( status => 204, openapi => "" );
60 catch {
61 if ( $_->isa('DBIx::Class::Exception') ) {
62 return $c->render(
63 status => 500,
64 openapi => { error => $_->{msg} }
67 else {
68 return $c->render(
69 status => 500,
70 openapi => { error => "Something went wrong, check the logs." }