BUGFIX : repeated fields where merged on biblio update
[koha.git] / cataloguing / z3950_search.pl
1 #!/usr/bin/perl
2
3 # This is a completely new Z3950 clients search using async ZOOM -TG 02/11/06
4 # Copyright 2000-2002 Katipo Communications
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 with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use CGI;
23
24 use C4::Auth;
25 use C4::Output;
26 use C4::Biblio;
27 use C4::Context;
28 use C4::Breeding;
29 use C4::Koha;
30 use ZOOM;
31
32 my $input        = new CGI;
33 my $dbh          = C4::Context->dbh;
34 my $error        = $input->param('error');
35 my $biblionumber = $input->param('biblionumber');
36 $biblionumber = 0 unless $biblionumber;
37 my $frameworkcode = $input->param('frameworkcode');
38 my $title         = $input->param('title');
39 my $author        = $input->param('author');
40 my $isbn          = $input->param('isbn');
41 my $issn          = $input->param('issn');
42 my $random        = $input->param('random');
43 my $op            = $input->param('op');
44 my $noconnection;
45 my $numberpending;
46 my $attr = '';
47 my $term;
48 my $host;
49 my $server;
50 my $database;
51 my $port;
52 my $marcdata;
53 my @encoding;
54 my @results;
55 my $count;
56 my $toggle;
57 my $record;
58 my $oldbiblio;
59 my $errmsg;
60 my @serverloop = ();
61 my @serverhost;
62 my @breeding_loop = ();
63
64 my $DEBUG = 1;    # if set to 1, many debug message are send on syslog.
65
66 unless ($random)
67 {    # this var is not useful anymore just kept to keep rel2_2 compatibility
68     $random = rand(1000000000);
69 }
70
71 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
72     {
73         template_name   => "cataloguing/z3950_search.tmpl",
74         query           => $input,
75         type            => "intranet",
76         authnotrequired => 1,
77         flagsrequired   => { catalogue => 1 },
78         debug           => 1,
79     }
80 );
81
82 $template->param( frameworkcode => $frameworkcode, );
83
84 if ( $op ne "do_search" ) {
85     my $sth = $dbh->prepare("select id,host,checked from z3950servers  order by host");
86     $sth->execute();
87     my $serverloop = $sth->fetchall_arrayref( {} );
88     $template->param(
89         isbn         => $isbn,
90         issn         => $issn,
91         title        => $title,
92         author       => $author,
93         serverloop   => $serverloop,
94         opsearch     => "search",
95         biblionumber => $biblionumber,
96     );
97     output_html_with_http_headers $input, $cookie, $template->output;
98 }
99 else {
100     my @id = $input->param('id');
101     my @oConnection;
102     my @oResult;
103     my $s = 0;
104
105     if ( $isbn || $issn ) {
106         $attr = '1=7';
107         $term = $isbn if ($isbn);
108         $term = $issn if ($issn);
109     }
110     elsif ($title) {
111         $attr = '1=4 ';
112         utf8::decode($title);
113         $term = $title;
114     }
115     elsif ($author) {
116         $attr = '1=1003';
117         utf8::decode($author);
118         $term = $author;
119     }
120
121     my $query = "\@attr $attr \"$term\"";
122     warn "query " . $query if $DEBUG;
123     foreach my $servid (@id) {
124         my $sth = $dbh->prepare("select * from z3950servers where id=?");
125         $sth->execute($servid);
126         while ( $server = $sth->fetchrow_hashref ) {
127             my $noconnection = 0;
128             my $option1      = new ZOOM::Options();
129             $option1->option( 'async' => 1 );
130             $option1->option( 'elementSetName', 'F' );
131             $option1->option( 'databaseName',   $server->{db} );
132             $option1->option( 'user', $server->{userid} ) if $server->{userid};
133             $option1->option( 'password', $server->{password} )
134               if $server->{password};
135             $option1->option( 'preferredRecordSyntax', $server->{syntax} );
136             $oConnection[$s] = create ZOOM::Connection($option1)
137               || $DEBUG
138               && warn( "something went wrong: " . $oConnection[$s]->errmsg() );
139             warn( "server data", $server->{name}, $server->{port} ) if $DEBUG;
140             $oConnection[$s]->connect( $server->{host}, $server->{port} )
141               || $DEBUG
142               && warn( "something went wrong: " . $oConnection[$s]->errmsg() );
143             $serverhost[$s] = $server->{host};
144             $encoding[$s]   = $server->{syntax};
145             $s++;
146         }    ## while fetch
147     }    # foreach
148     my $nremaining  = $s;
149     my $firstresult = 1;
150
151     for ( my $z = 0 ; $z < $s ; $z++ ) {
152         warn "doing the search" if $DEBUG;
153         $oResult[$z] = $oConnection[$z]->search_pqf($query)
154           || $DEBUG
155           && warn( "somthing went wrong: " . $oConnection[$s]->errmsg() );
156
157         #$oResult[$z] = $oConnection[$z]->search_pqf($query);
158     }
159
160   AGAIN:
161     my $k;
162     my $event;
163     while ( ( $k = ZOOM::event( \@oConnection ) ) != 0 ) {
164         $event = $oConnection[ $k - 1 ]->last_event();
165         warn( "connection ", $k - 1, ": event $event (",
166             ZOOM::event_str($event), ")\n" )
167           if $DEBUG;
168         last if $event == ZOOM::Event::ZEND;
169     }
170
171     if ( $k != 0 ) {
172         $k--;
173         warn $serverhost[$k] if $DEBUG;
174         my ( $error, $errmsg, $addinfo, $diagset ) =
175           $oConnection[$k]->error_x();
176         if ($error) {
177             warn "$k $serverhost[$k] error $query: $errmsg ($error) $addinfo\n"
178               if $DEBUG;
179
180         }
181         else {
182             my $numresults = $oResult[$k]->size();
183             my $i;
184             my $result = '';
185             if ( $numresults > 0 ) {
186                 for (
187                     $i = 0 ;
188                     $i < ( ( $numresults < 20 ) ? ($numresults) : (20) ) ;
189                     $i++
190                   )
191                 {
192                     my $rec = $oResult[$k]->record($i);
193                     my $marcrecord;
194                     $marcdata   = $rec->raw();
195                     $marcrecord = FixEncoding($marcdata);
196 ####WARNING records coming from Z3950 clients are in various character sets MARC8,UTF8,UNIMARC etc
197 ## In HEAD i change everything to UTF-8
198 # In rel2_2 i am not sure what encoding is so no character conversion is done here
199 ##Add necessary encoding changes to here -TG
200                     my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, "" );
201                     $oldbiblio->{isbn}   =~ s/ |-|\.//g,
202                       $oldbiblio->{issn} =~ s/ |-|\.//g,
203                       my (
204                         $notmarcrecord, $alreadyindb, $alreadyinfarm,
205                         $imported,      $breedingid
206                       )
207                       = ImportBreeding( $marcdata, 1, $serverhost[$k], $encoding[$k], $random );
208
209                     my %row_data;
210                     if ( $i % 2 ) {
211                         $toggle = "#ffffcc";
212                     }
213                     else {
214                         $toggle = "white";
215                     }
216                     $row_data{toggle}       = $toggle;
217                     $row_data{server}       = $serverhost[$k];
218                     $row_data{isbn}         = $oldbiblio->{isbn};
219                     $row_data{title}        = $oldbiblio->{title};
220                     $row_data{author}       = $oldbiblio->{author};
221                     $row_data{breedingid}   = $breedingid;
222                     $row_data{biblionumber} = $biblionumber;
223                     push( @breeding_loop, \%row_data );
224                 }    # upto 5 results
225             }    #$numresults
226         }
227     }    # if $k !=0
228     $numberpending = $nremaining - 1;
229     $template->param(
230         breeding_loop => \@breeding_loop,
231         server        => $serverhost[$k],
232         numberpending => $numberpending,
233     );
234     
235     output_html_with_http_headers $input, $cookie, $template->output if $numberpending == 0;
236
237     #   print  $template->output  if $firstresult !=1;
238     $firstresult++;
239
240   MAYBE_AGAIN:
241     if ( --$nremaining > 0 ) {
242         goto AGAIN;
243     }
244 }    ## if op=search