Bug 25261: (QA follow-up) Restore previously returned list
[koha.git] / Koha / REST / V1 / Biblios.pm
blob157282b4a1d960d73b9fdf1208c9336317917302
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
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.
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.
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>.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Controller';
22 use Koha::Biblios;
23 use Koha::RecordProcessor;
24 use C4::Biblio qw(DelBiblio);
26 use MARC::Record::MiJ;
28 use Try::Tiny;
30 =head1 API
32 =head2 Methods
34 =head3 get
36 Controller function that handles retrieving a single biblio object
38 =cut
40 sub get {
41 my $c = shift->openapi->valid_input or return;
43 my $attributes;
44 $attributes = { prefetch => [ 'metadata' ] } # don't prefetch metadata if not needed
45 unless $c->req->headers->accept =~ m/application\/json/;
47 my $biblio = Koha::Biblios->find( { biblionumber => $c->validation->param('biblio_id') }, $attributes );
49 unless ( $biblio ) {
50 return $c->render(
51 status => 404,
52 openapi => {
53 error => "Object not found."
58 return try {
60 if ( $c->req->headers->accept =~ m/application\/json/ ) {
61 return $c->render(
62 status => 200,
63 json => $biblio->to_api
66 else {
67 my $record = $biblio->metadata->record;
69 $c->respond_to(
70 marcxml => {
71 status => 200,
72 format => 'marcxml',
73 text => $record->as_xml_record
75 mij => {
76 status => 200,
77 format => 'mij',
78 text => $record->to_mij
80 marc => {
81 status => 200,
82 format => 'marc',
83 text => $record->as_usmarc
85 txt => {
86 status => 200,
87 format => 'text/plain',
88 text => $record->as_formatted
90 any => {
91 status => 406,
92 openapi => [
93 "application/json",
94 "application/marcxml+xml",
95 "application/marc-in-json",
96 "application/marc",
97 "text/plain"
103 catch {
104 $c->unhandled_exception($_);
108 =head3 delete
110 Controller function that handles deleting a biblio object
112 =cut
114 sub delete {
115 my $c = shift->openapi->valid_input or return;
117 my $biblio = Koha::Biblios->find( $c->validation->param('biblio_id') );
119 if ( not defined $biblio ) {
120 return $c->render(
121 status => 404,
122 openapi => { error => "Object not found" }
126 return try {
127 my $error = DelBiblio( $biblio->id );
129 if ($error) {
130 return $c->render(
131 status => 409,
132 openapi => { error => $error }
135 else {
136 return $c->render( status => 204, openapi => "" );
139 catch {
140 $c->unhandled_exception($_);
144 =head3 get_public
146 Controller function that handles retrieving a single biblio object
148 =cut
150 sub get_public {
151 my $c = shift->openapi->valid_input or return;
153 my $biblio = Koha::Biblios->find(
154 { biblionumber => $c->validation->param('biblio_id') },
155 { prefetch => ['metadata'] } );
157 unless ($biblio) {
158 return $c->render(
159 status => 404,
160 openapi => {
161 error => "Object not found."
166 return try {
168 my $record = $biblio->metadata->record;
170 my $opachiddenitems_rules = C4::Context->yaml_preference('OpacHiddenItems');
171 my $patron = $c->stash('koha.user');
173 # Check if the biblio should be hidden for unprivileged access
174 # unless there's a logged in user, and there's an exception for it's
175 # category
176 unless ( $patron and $patron->category->override_hidden_items ) {
177 if ( $biblio->hidden_in_opac({ rules => $opachiddenitems_rules }) )
179 return $c->render(
180 status => 404,
181 openapi => {
182 error => "Object not found."
188 my $marcflavour = C4::Context->preference("marcflavour");
190 my $record_processor = Koha::RecordProcessor->new({
191 filters => 'ViewPolicy',
192 options => {
193 interface => 'opac',
194 frameworkcode => $biblio->frameworkcode
197 # Apply framework's filtering to MARC::Record object
198 $record_processor->process($record);
200 $c->respond_to(
201 marcxml => {
202 status => 200,
203 format => 'marcxml',
204 text => $record->as_xml_record
206 mij => {
207 status => 200,
208 format => 'mij',
209 text => $record->to_mij
211 marc => {
212 status => 200,
213 format => 'marc',
214 text => $record->as_usmarc
216 txt => {
217 status => 200,
218 format => 'text/plain',
219 text => $record->as_formatted
221 any => {
222 status => 406,
223 openapi => [
224 "application/marcxml+xml",
225 "application/marc-in-json",
226 "application/marc",
227 "text/plain"
232 catch {
233 return $c->render(
234 status => 500,
235 openapi => { error => "Something went wrong, check the logs ($_)" }