Read XML. Sytem preference retrive_from to wheter read from SQL DB or ZEBRA DB
[koha.git] / cataloguing / savebiblio.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use CGI;
21 use strict;
22 # use C4::Catalogue;
23 use C4::Biblio;
24
25 my $input  = new CGI;
26 my $biblio = {
27     title    => $input->param('title'),
28     subtitle => $input->param('subtitle') ? $input->param('subtitle') : "",
29     author   => $input->param('author') ? $input->param('author') : "",
30     seriestitle => $input->param('seriestitle') ? $input->param('seriestitle')
31     : "",
32     copyrightdate => $input->param('copyrightdate')
33     ? $input->param('copyrightdate')
34     : "",
35     abstract => $input->param('abstract') ? $input->param('abstract') : "",
36     notes    => $input->param('notes')    ? $input->param('notes')    : ""
37 };    # my $biblio
38
39 my $subjectheadings = $input->param('subjectheadings');
40 # Different O.S.es use different codes to end lines. This ensures that all cases
41 # are allowed for.
42 my @subjects = split ( /\n|\r|\n\r|\r\n/, $subjectheadings );
43 my $biblionumber;
44 my $aauthors = $input->param('additionalauthors');
45 my @authors  = split ( /\n|\r|\n\r|\r\n/, $aauthors );
46 my $force    = $input->param('force');
47
48 if ( !$biblio->{'title'} ) {
49     print $input->redirect('addbiblio-nomarc.pl?error=notitle');
50 }
51 else {
52     $biblionumber = &newbiblio($biblio);
53     &newsubtitle( $biblionumber, $biblio->{'subtitle'} );
54     my $error = modsubject( $biblionumber, 1, @subjects );
55     modaddauthor( $biblionumber, @authors );
56     print $input->redirect("additem-nomarc.pl?biblionumber=$biblionumber");
57 }    # else