Bug 12760 - add restrictions purge to cleanup_database.pl
[koha.git] / svc / bib
1 #!/usr/bin/perl
2
3 # Copyright 2007 LibLime
4 # Copyright 2012 software.coop and MJ Ray
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21
22 use strict;
23 use warnings;
24
25 use CGI;
26 use C4::Auth qw/check_api_auth/;
27 use C4::Biblio;
28 use C4::Items;
29 use XML::Simple;
30
31 my $query = new CGI;
32 binmode STDOUT, ':encoding(UTF-8)';
33
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);
38     exit 0;
39 }
40
41 # do initial validation
42 my $path_info = $query->path_info();
43
44 my $biblionumber = undef;
45 if ($path_info =~ m!^/(\d+)$!) {
46     $biblionumber = $1;
47 } else {
48     print $query->header(-type => 'text/xml', -status => '400 Bad Request');
49 }
50
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);
58 } else {
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);
61     exit 0;
62 }
63
64 exit 0;
65
66 sub fetch_bib {
67     my $query = shift;
68     my $biblionumber = shift;
69     my $record = GetMarcBiblio( $biblionumber, $query->url_param('items') );
70     if  (defined $record) {
71         print $query->header(-type => 'text/xml');
72         print $record->as_xml_record();
73     } else {
74         print $query->header(-type => 'text/xml', -status => '404 Not Found');
75     }
76 }
77
78 sub update_bib {
79     my $query = shift;
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');
84         return;
85     }
86
87     my $result = {};
88     my $inxml = $query->param('POSTDATA');
89     print $query->header(-type => 'text/xml');
90
91     my $record = eval {MARC::Record::new_from_xml( $inxml, "utf8", C4::Context->preference('marcflavour'))};
92     my $do_not_escape = 0;
93     if ($@) {
94         $result->{'status'} = "failed";
95         $result->{'error'} = $@;
96     } else {
97         my $fullrecord = $record->clone();
98         my ( $itemtag, $itemsubfield ) =
99           GetMarcFromKohaField( "items.itemnumber", '' );
100
101         # delete any item tags
102         foreach my $field ( $record->field($itemtag) ) {
103             $record->delete_field($field);
104         }
105
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) );
112             }
113         }
114
115         ModBiblio( $record, $biblionumber, '' );
116         my $new_record =
117           GetMarcBiblio( $biblionumber, $query->url_param('items') );
118
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;
124         $do_not_escape = 1;
125     }
126    
127     print XMLout($result, NoAttr => 1, RootName => 'response', XMLDecl => 1, NoEscape => $do_not_escape); 
128 }
129
130 sub delete_bib {
131     my $query = shift;
132     my $biblionumber = shift;
133     my $error = DelBiblio($biblionumber);
134
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);
138         exit 0;
139     }
140
141     print $query->header(-type => 'text/xml');
142     print XMLout({ status => 'OK, biblio deleted' }, NoAttr => 1, RootName => 'response', XMLDecl => 1);
143 }