3 # Copyright 2007 LibLime
4 # Copyright 2012 software.coop and MJ Ray
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use C4
::Auth qw
/check_api_auth/;
32 binmode STDOUT
, ':encoding(UTF-8)';
34 my ($status, $cookie, $sessionID) = check_api_auth
($query, { editcatalogue
=> 'edit_catalogue'} );
35 unless ($status eq "ok") {
36 print $query->header(-type
=> 'text/xml', -status
=> '403 Forbidden');
37 print XMLout
({ auth_status
=> $status }, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1);
41 # do initial validation
42 my $path_info = $query->path_info();
44 my $biblionumber = undef;
45 if ($path_info =~ m!^/(\d+)$!) {
48 print $query->header(-type
=> 'text/xml', -status
=> '400 Bad Request');
51 # are we retrieving, updating or deleting a bib?
52 if ($query->request_method eq "GET") {
53 fetch_bib
($query, $biblionumber);
54 } elsif ($query->request_method eq "POST") {
55 update_bib
($query, $biblionumber);
56 } elsif ($query->request_method eq "DELETE") {
57 delete_bib
($query, $biblionumber);
59 print $query->header(-type
=> 'text/xml', -status
=> '405 Method not allowed');
60 print XMLout
({ error
=> 'Method not allowed' }, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1);
68 my $biblionumber = shift;
69 my $record = GetMarcBiblio
( $biblionumber, $query->url_param('items') );
70 if (defined $record) {
71 print $query->header(-type
=> 'text/xml',-charset
=> 'utf-8',);
72 print $record->as_xml_record();
74 print $query->header(-type
=> 'text/xml', -status
=> '404 Not Found');
80 my $biblionumber = shift;
81 my $old_record = GetMarcBiblio
($biblionumber);
82 unless (defined $old_record) {
83 print $query->header(-type
=> 'text/xml', -status
=> '404 Not Found');
88 my $inxml = $query->param('POSTDATA');
89 print $query->header(-type
=> 'text/xml', -charset
=> 'utf-8');
91 my $record = eval {MARC
::Record
::new_from_xml
( $inxml, "utf8", C4
::Context
->preference('marcflavour'))};
92 my $do_not_escape = 0;
94 $result->{'status'} = "failed";
95 $result->{'error'} = $@
;
97 my $fullrecord = $record->clone();
98 my ( $itemtag, $itemsubfield ) =
99 GetMarcFromKohaField
( "items.itemnumber", '' );
101 # delete any item tags
102 foreach my $field ( $record->field($itemtag) ) {
103 $record->delete_field($field);
106 if ( $query->url_param('items') ) {
107 foreach my $field ( $fullrecord->field($itemtag) ) {
108 my $one_item_record = $record->clone();
109 $one_item_record->add_fields($field);
110 ModItemFromMarc
( $one_item_record, $biblionumber,
111 $field->subfield($itemsubfield) );
115 ModBiblio
( $record, $biblionumber, '' );
117 GetMarcBiblio
( $biblionumber, $query->url_param('items') );
119 $result->{'status'} = "ok";
120 $result->{'biblionumber'} = $biblionumber;
121 my $xml = $new_record->as_xml_record();
122 $xml =~ s/<\?xml.*?\?>//i;
123 $result->{'marcxml'} = $xml;
127 print XMLout
($result, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1, NoEscape
=> $do_not_escape);
132 my $biblionumber = shift;
133 my $error = DelBiblio
($biblionumber);
135 if (defined $error) {
136 print $query->header(-type
=> 'text/xml', -status
=> '400 Bad request');
137 print XMLout
({ error
=> $error }, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1);
141 print $query->header(-type
=> 'text/xml');
142 print XMLout
({ status
=> 'OK, biblio deleted' }, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1);