Merge remote-tracking branch 'origin/new/bug_7768'
[koha.git] / acqui / 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 # Copyright 2010 Catalyst IT
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 use warnings;
23 use strict;
24 use CGI;
25
26 use C4::Auth;
27 use C4::Output;
28 use C4::Biblio;
29 use C4::Context;
30 use C4::Breeding;
31 use C4::Koha;
32 use C4::Charset;
33 use C4::Bookseller qw/ GetBookSellerFromId /;
34 use ZOOM;
35
36 my $input        = new CGI;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38     {
39         template_name   => "acqui/z3950_search.tmpl",
40         query           => $input,
41         type            => "intranet",
42         authnotrequired => 1,
43         flagsrequired   => { acquisition => 'order_manage' },
44         debug           => 1,
45     }
46 );
47
48
49 my $dbh          = C4::Context->dbh;
50 my $error        = $input->param('error');
51 my $biblionumber = $input->param('biblionumber');
52 $biblionumber = 0 unless $biblionumber;
53 my $frameworkcode = $input->param('frameworkcode');
54 my $title         = $input->param('title');
55 my $author        = $input->param('author');
56 my $isbn          = $input->param('isbn');
57 my $issn          = $input->param('issn');
58 my $lccn          = $input->param('lccn');
59 my $lccall          = $input->param('lccall');
60 my $subject= $input->param('subject');
61 my $dewey = $input->param('dewey');
62 my $controlnumber       = $input->param('controlnumber');
63 my $op            = $input->param('op');
64 my $booksellerid = $input->param('booksellerid');
65 my $basketno = $input->param('basketno');
66 my $noconnection;
67 my $attr = '';
68 my $term;
69 my $host;
70 my $server;
71 my $database;
72 my $port;
73 my $marcdata;
74 my @encoding;
75 my @results;
76 my $count;
77 my $toggle;
78 my $record;
79 my $oldbiblio;
80 my $errmsg;
81 my @serverhost;
82 my @servername;
83 my @breeding_loop = ();
84 my $random        = $input->param('random');
85 unless ($random)
86 {    # this var is not useful anymore just kept to keep rel2_2 compatibility
87     $random = rand(1000000000);
88 }
89
90 my $DEBUG = $ENV{DEBUG} || 0;    # if set to 1, many debug message are send on syslog.
91
92 # get framework list
93 my $frameworks = getframeworks;
94 my @frameworkcodeloop;
95 foreach my $thisframeworkcode ( keys %$frameworks ) {
96     my %row = (
97         value         => $thisframeworkcode,
98         frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
99     );
100     if ( $row{'value'} eq $frameworkcode){
101         $row{'active'} = 'true';
102     }
103     push @frameworkcodeloop, \%row;
104 }
105
106 my $vendor = GetBookSellerFromId($booksellerid);
107 $template->param( frameworkcode => $frameworkcode, 
108                                     frameworkcodeloop => \@frameworkcodeloop,
109                                     booksellerid => $booksellerid,
110                                     basketno => $basketno,
111                                     name => $vendor->{'name'}
112                                     );
113                                     
114
115
116 if ( $op ne "do_search" ) {
117     my $sth = $dbh->prepare("select id,host,name,checked from z3950servers  order by host");
118     $sth->execute();
119     my $serverloop = $sth->fetchall_arrayref( {} );
120     $template->param(
121         isbn         => $isbn,
122         issn         => $issn,
123         lccn         => $lccn,
124         lccall       => $lccall,
125         title        => $title,
126         author       => $author,
127         controlnumber=> $controlnumber,
128         serverloop   => $serverloop,
129         opsearch     => "search",
130         biblionumber => $biblionumber,
131     );
132     output_html_with_http_headers $input, $cookie, $template->output;
133     exit;
134 }
135
136     my @id = $input->param('id');
137
138     if ( not @id ) {
139         # empty server list -> report and exit
140         $template->param( emptyserverlist => 1 );
141         output_html_with_http_headers $input, $cookie, $template->output;
142         exit;
143     }
144
145     my @oConnection;
146     my @oResult;
147     my @errconn;
148     my $s = 0;
149     my $query;
150     my $nterms;
151     if ($isbn || $issn) {
152         $term=$isbn if ($isbn);
153         $term=$issn if ($issn);
154         $query .= " \@or \@attr 1=8 \"$term\" \@attr 1=7 \"$term\" ";
155         $nterms++;
156     }
157     if ($title) {
158         utf8::decode($title);
159         $query .= " \@attr 1=4 \"$title\" ";
160         $nterms++;
161     }
162     if ($author) {
163         utf8::decode($author);
164         $query .= " \@attr 1=1003 \"$author\" ";
165         $nterms++;
166     }
167     if ($dewey) {
168         $query .= " \@attr 1=16 \"$dewey\" ";
169         $nterms++;
170     }
171     if ($subject) {
172         utf8::decode($subject);
173         $query .= " \@attr 1=21 \"$subject\" ";
174         $nterms++;
175     }
176     if ($lccn) {
177         $query .= " \@attr 1=9 $lccn ";
178         $nterms++;
179     }
180     if ($lccall) {
181         $query .= " \@attr 1=16 \@attr 2=3 \@attr 3=1 \@attr 4=1 \@attr 5=1 \@attr 6=1 \"$lccall\" ";
182         $nterms++;
183     }
184     if ($controlnumber) {
185         $query .= " \@attr 1=12 \"$controlnumber\" ";
186         $nterms++;
187     }
188 for my $i (1..$nterms-1) {
189     $query = "\@and " . $query;
190 }
191 warn "query ".$query  if $DEBUG;
192
193     foreach my $servid (@id) {
194         my $sth = $dbh->prepare("select * from z3950servers where id=?");
195         $sth->execute($servid);
196         while ( $server = $sth->fetchrow_hashref ) {
197             warn "serverinfo ".join(':',%$server) if $DEBUG;
198             my $option1      = new ZOOM::Options();
199             $option1->option( 'async' => 1 );
200             $option1->option( 'elementSetName', 'F' );
201             $option1->option( 'databaseName',   $server->{db} );
202             $option1->option( 'user', $server->{userid} ) if $server->{userid};
203             $option1->option( 'password', $server->{password} )
204               if $server->{password};
205             $option1->option( 'preferredRecordSyntax', $server->{syntax} );
206             $oConnection[$s] = create ZOOM::Connection($option1)
207               || $DEBUG
208               && warn( "" . $oConnection[$s]->errmsg() );
209             warn( "server data", $server->{name}, $server->{port} ) if $DEBUG;
210             $oConnection[$s]->connect( $server->{host}, $server->{port} )
211               || $DEBUG
212               && warn( "" . $oConnection[$s]->errmsg() );
213             $serverhost[$s] = $server->{host};
214             $servername[$s] = $server->{name};
215             $encoding[$s]   = ($server->{encoding}?$server->{encoding}:"iso-5426");
216             $s++;
217         }    ## while fetch
218     }    # foreach
219     my $nremaining  = $s;
220     my $firstresult = 1;
221
222     for ( my $z = 0 ; $z < $s ; $z++ ) {
223         warn "doing the search" if $DEBUG;
224         $oResult[$z] = $oConnection[$z]->search_pqf($query)
225           || $DEBUG
226           && warn( "somthing went wrong: " . $oConnection[$s]->errmsg() );
227
228         # $oResult[$z] = $oConnection[$z]->search_pqf($query);
229     }
230
231   warn "# nremaining = $nremaining\n" if $DEBUG;
232
233   while ( $nremaining-- ) {
234
235     my $k;
236     my $event;
237     while ( ( $k = ZOOM::event( \@oConnection ) ) != 0 ) {
238         $event = $oConnection[ $k - 1 ]->last_event();
239         warn( "connection ", $k - 1, ": event $event (",
240             ZOOM::event_str($event), ")\n" )
241           if $DEBUG;
242         last if $event == ZOOM::Event::ZEND;
243     }
244
245     if ( $k != 0 ) {
246         $k--;
247         warn "event from $k server = ",$serverhost[$k] if $DEBUG;
248         my ( $error, $errmsg, $addinfo, $diagset ) =
249           $oConnection[$k]->error_x();
250         if ($error) {
251             if ($error =~ m/^(10000|10007)$/ ) {
252                 push(@errconn, {'server' => $serverhost[$k]});
253             }
254             $DEBUG and warn "$k $serverhost[$k] error $query: $errmsg ($error) $addinfo\n";
255         }
256         else {
257             my $numresults = $oResult[$k]->size();
258             warn "numresults = $numresults" if $DEBUG;
259             my $i;
260             my $result = '';
261             if ( $numresults > 0 ) {
262                 for (
263                     $i = 0 ;
264                     $i < ( ( $numresults < 20 ) ? ($numresults) : (20) ) ;
265                     $i++
266                   )
267                 {
268                     my $rec = $oResult[$k]->record($i);
269                     if ($rec) {
270                         my $marcrecord;
271                         $marcdata   = $rec->raw();
272
273                         my ($charset_result, $charset_errors);
274                         ($marcrecord, $charset_result, $charset_errors) = 
275                           MarcToUTF8Record($marcdata, C4::Context->preference('marcflavour'), $encoding[$k]);
276 ####WARNING records coming from Z3950 clients are in various character sets MARC8,UTF8,UNIMARC etc
277 ## In HEAD i change everything to UTF-8
278 # In rel2_2 i am not sure what encoding is so no character conversion is done here
279 ##Add necessary encoding changes to here -TG
280                         my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, "" );
281                         $oldbiblio->{isbn}   =~ s/ |-|\.//g if $oldbiblio->{isbn};
282                         # pad | and ( with spaces to allow line breaks in the HTML
283                         $oldbiblio->{isbn} =~ s/\|/ \| /g if $oldbiblio->{isbn};
284                         $oldbiblio->{isbn} =~ s/\(/ \(/g if $oldbiblio->{isbn};
285
286                         $oldbiblio->{issn} =~ s/ |-|\.//g if $oldbiblio->{issn};
287                         # pad | and ( with spaces to allow line breaks in the HTML
288                         $oldbiblio->{issn} =~ s/\|/ \| /g if $oldbiblio->{issn};
289                         $oldbiblio->{issn} =~ s/\(/ \(/g if $oldbiblio->{issn};
290                           my (
291                             $notmarcrecord, $alreadyindb, $alreadyinfarm,
292                             $imported,      $breedingid
293                           )
294                           = ImportBreeding( $marcdata, 2, $serverhost[$k], $encoding[$k], $random, 'z3950' );
295                         my %row_data;
296                         $row_data{server}       = $servername[$k];
297                         $row_data{isbn}         = $oldbiblio->{isbn};
298                         $row_data{lccn}         = $oldbiblio->{lccn};
299                         $row_data{title}        = $oldbiblio->{title};
300                         $row_data{author}       = $oldbiblio->{author};
301                         $row_data{breedingid}   = $breedingid;
302                         $row_data{biblionumber} = $biblionumber;
303                         push( @breeding_loop, \%row_data );
304
305                     } else {
306                         push(@breeding_loop,{'server'=>$servername[$k],'title'=>join(': ',$oConnection[$k]->error_x()),'breedingid'=>-1,'biblionumber'=>-1});
307                     } # $rec
308                 }    # upto 5 results
309             }    #$numresults
310         }
311     }    # if $k !=0
312     #   print  $template->output  if $firstresult !=1;
313     $firstresult++;
314
315   } # while nremaining
316
317 $template->param(
318 breeding_loop => \@breeding_loop,
319 #server        => $servername[$k],
320 numberpending => $nremaining > 0 ? $nremaining : 0,
321 errconn       => \@errconn
322 );
323 output_html_with_http_headers $input, $cookie, $template->output;