Bug 23104: Add tests for maxonsiteissueqty
[koha.git] / svc / new_bib
1 #!/usr/bin/perl
2
3 # Copyright 2007 LibLime
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
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Auth qw/check_api_auth/;
25 use C4::Biblio;
26 use C4::Items;
27 use XML::Simple;
28 use C4::Charset;
29
30 my $query = new CGI;
31 binmode STDOUT, ':encoding(UTF-8)';
32
33 my ($status, $cookie, $sessionID) = check_api_auth($query, { editcatalogue => 'edit_catalogue'} );
34 unless ($status eq "ok") {
35     print $query->header(-type => 'text/xml', -status => '403 Forbidden');
36     print XMLout({ auth_status => $status }, NoAttr => 1, RootName => 'response', XMLDecl => 1);
37     exit 0;
38 }
39
40 if ($query->request_method eq "POST") {
41     add_bib($query);
42 } else {
43     print $query->header(-type => 'text/xml', -status => '400 Bad Request');
44 }
45
46 exit 0;
47
48 sub add_bib {
49     my $query = shift;
50
51     my $result = {};
52     my $inxml = $query->param('POSTDATA');
53     my $frameworkcode = $query->url_param('frameworkcode') // '';
54     print $query->header(-type => 'text/xml', -charset => 'utf-8');
55
56     my $marcflavour = C4::Context->preference('marcflavour') || 'MARC21';
57     my $record = eval {MARC::Record::new_from_xml( $inxml, "utf8", $marcflavour)};
58     my $do_not_escape = 0;
59     if ($@) {
60         $result->{'status'} = "failed";
61         $result->{'error'} = $@;
62     } else {
63         # fix character set
64         if ($record->encoding() eq 'MARC-8') {
65             my ($guessed_charset, $charset_errors);
66             ($record, $guessed_charset, $charset_errors) = MarcToUTF8Record($record, $marcflavour);
67         }
68
69         my $fullrecord = $record->clone();
70
71         # delete any item tags
72         my ( $itemtag, $itemsubfield ) =
73           GetMarcFromKohaField( "items.itemnumber", '' );
74         foreach my $field ( $record->field($itemtag) ) {
75             $record->delete_field($field);
76         }
77         my ( $biblionumber, $biblioitemnumber ) = AddBiblio( $record, $frameworkcode );
78         my $new_record = GetMarcBiblio({ biblionumber => $biblionumber });
79         if ( $query->url_param('items') ) {
80             foreach my $field ( $fullrecord->field($itemtag) ) {
81                 my $one_item_record = $new_record->clone();
82                 $one_item_record->add_fields($field);
83                 AddItemFromMarc( $one_item_record, $biblionumber );
84             }
85         }
86
87         $new_record = GetMarcBiblio({
88             biblionumber => $biblionumber,
89             embed_items  => scalar $query->url_param('items') });
90         $result->{'status'} = "ok";
91         $result->{'biblionumber'} = $biblionumber;
92         my $xml = $new_record->as_xml_record();
93         $xml =~ s/<\?xml.*?\?>//i;
94         $result->{'marcxml'} =  $xml;
95         $do_not_escape = 1;
96     }
97    
98     print XMLout($result, NoAttr => 1, RootName => 'response', XMLDecl => 1, NoEscape => $do_not_escape); 
99 }