Bug 21610: (follow-up) Default value for dates
[koha.git] / catalogue / getitem-ajax.pl
1 #!/usr/bin/perl
2
3 # Copyright BibLibre 2012
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use JSON;
23
24 use C4::Auth;
25 use C4::Biblio;
26 use C4::Items;
27 use C4::Koha;
28 use C4::Output;
29 use Koha::Libraries;
30
31 use Koha::AuthorisedValues;
32 use Koha::ItemTypes;
33
34 my $cgi = new CGI;
35
36 my ( $status, $cookie, $sessionID ) = C4::Auth::check_api_auth( $cgi, { acquisition => 'order_receive' } );
37 unless ($status eq "ok") {
38     print $cgi->header(-type => 'application/json', -status => '403 Forbidden');
39     print to_json({ auth_status => $status });
40     exit 0;
41 }
42
43 my $item = {};
44 my $itemnumber = $cgi->param('itemnumber');
45
46 if($itemnumber) {
47     my $acq_fw = GetMarcStructure(1, 'ACQ');
48     my $fw = ($acq_fw) ? 'ACQ' : '';
49     $item = GetItem($itemnumber);
50
51     if($item->{homebranch}) {
52         $item->{homebranchname} = Koha::Libraries->find($item->{homebranch})->branchname;
53     }
54
55     if($item->{holdingbranch}) {
56         $item->{holdingbranchname} = Koha::Libraries->find($item->{holdingbranch})->branchname;
57     }
58
59     my $descriptions;
60     $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $fw, kohafield => 'items.notforloan', authorised_value => $item->{notforloan} });
61     $item->{notforloan} = $descriptions->{lib} // '';
62
63     $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $fw, kohafield => 'items.restricted', authorised_value => $item->{restricted} });
64     $item->{restricted} = $descriptions->{lib} // '';
65
66     $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $fw, kohafield => 'items.location', authorised_value => $item->{location} });
67     $item->{location} = $descriptions->{lib} // '';
68
69     $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $fw, kohafield => 'items.collection', authorised_value => $item->{collection} });
70     $item->{collection} = $descriptions->{lib} // '';
71
72     $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
73     $item->{materials} = $descriptions->{lib} // '';
74
75     my $itemtype = Koha::ItemTypes->find( $item->{itype} );
76     $item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description?
77 }
78
79 my $json_text = to_json( $item, { utf8 => 1 } );
80
81 output_with_http_headers $cgi, undef, $json_text, 'json';