Code cleaned. POD added. Sub renamed.
[koha.git] / z3950 / search.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 strict;
21 use CGI;
22 use C4::Auth;
23 use C4::Output;
24 use C4::Interface::CGI::Output;
25 use C4::Biblio;
26 use C4::Context;
27 use C4::Koha; # XXX subfield_is_koha_internal_p
28 use C4::Z3950;
29 use C4::Search;
30 use C4::Breeding;
31 use HTML::Template;
32 use MARC::File::USMARC;
33
34 use vars qw( $tagslib );
35 use vars qw( $is_a_modif );
36
37
38 my $input = new CGI;
39 my $dbh = C4::Context->dbh;
40 my $error = $input->param('error');
41 my $bibid=$input->param('bibid');
42 my $title = $input->param('title');
43 my $author = $input->param('author');
44 my $isbn = $input->param('isbn');
45 my $issn = $input->param('issn');
46 my $random = $input->param('random');
47 my @results;
48 my $count;
49 my $toggle;
50
51 my $record;
52 my $biblionumber;
53 if ($bibid > 0) {
54         $record = MARCgetbiblio($dbh,$bibid);
55         $biblionumber=MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid);
56 }
57
58 my $errmsg;
59 unless ($random) { # if random is a parameter => we're just waiting for the search to end, it's a refresh.
60         if ($isbn) {
61                 $random =rand(1000000000);
62                 $errmsg = addz3950queue($isbn, "isbn", $random, 'CHECKED');
63         } elsif ($author) {
64                 $random =rand(1000000000);
65                 $errmsg = addz3950queue($author, "author", $random, 'CHECKED');
66         } elsif ($title) {
67                 $random =rand(1000000000);
68                 $errmsg = addz3950queue($title, "title", $random, 'CHECKED');
69         }
70 }
71 my ($template, $loggedinuser, $cookie)
72 = get_template_and_user({template_name => "z3950/searchresult.tmpl",
73                                 query => $input,
74                                 type => "intranet",
75                                 authnotrequired => 0,
76                                 flagsrequired => {catalogue => 1},
77                                 debug => 1,
78                                 });
79
80 # fill with books in breeding farm
81 ($count, @results) = BreedingSearch($title,$isbn,$random);
82 my $numberpending= &checkz3950searchdone($random);
83 my @breeding_loop = ();
84 for (my $i=0; $i <= $#results; $i++) {
85         my %row_data;
86         if ($i % 2) {
87                 $toggle="#ffffcc";
88         } else {
89                 $toggle="white";
90         }
91         $row_data{toggle} = $toggle;
92         $row_data{id} = $results[$i]->{'id'};
93         $row_data{isbn} = $results[$i]->{'isbn'};
94         $row_data{file} = $results[$i]->{'file'};
95         $row_data{title} = $results[$i]->{'title'};
96         $row_data{author} = $results[$i]->{'author'};
97         push (@breeding_loop, \%row_data);
98 }
99
100 $template->param(isbn => $isbn,
101                                                 title => $title,
102                                                 author => $author,
103                                                 breeding_loop => \@breeding_loop,
104                                                 refresh => ($numberpending eq 0 ? "" : "search.pl?bibid=$bibid&random=$random"),
105                                                 numberpending => $numberpending,
106                                                 oldbiblionumber => $oldbiblio->{'biblionumber'},
107                                                 );
108
109 print $input->header(
110 -type => guesstype($template->output),
111 -cookie => $cookie
112 ),$template->output;