Bug 6536: QA Follow-up for removing warnings from QA tools
[koha.git] / C4 / Breeding.pm
1 package C4::Breeding;
2
3 # Copyright 2000-2002 Katipo Communications
4 # Parts Copyright 2013 Prosentient Systems
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 use strict;
22 use warnings;
23
24 use C4::Biblio;
25 use C4::Koha;
26 use C4::Charset;
27 use MARC::File::USMARC;
28 use C4::ImportBatch;
29 use C4::AuthoritiesMarc; #GuessAuthTypeCode, FindDuplicateAuthority
30 use C4::Languages;
31 use Koha::Database;
32 use Koha::XSLT_Handler;
33
34 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
35
36 BEGIN {
37         # set the version for version checking
38     $VERSION = 3.07.00.049;
39         require Exporter;
40         @ISA = qw(Exporter);
41     @EXPORT = qw(&BreedingSearch &Z3950Search &Z3950SearchAuth);
42 }
43
44 =head1 NAME
45
46 C4::Breeding : module to add biblios to import_records via
47                the breeding/reservoir API.
48
49 =head1 SYNOPSIS
50
51     Z3950Search($pars, $template);
52     ($count, @results) = &BreedingSearch($title,$isbn,$random);
53
54 =head1 DESCRIPTION
55
56 This module contains routines related to Koha's Z39.50 search into
57 cataloguing reservoir features.
58
59 =head2 BreedingSearch
60
61 ($count, @results) = &BreedingSearch($title,$isbn,$random);
62 C<$title> contains the title,
63 C<$isbn> contains isbn or issn,
64 C<$random> contains the random seed from a z3950 search.
65
66 C<$count> is the number of items in C<@results>. C<@results> is an
67 array of references-to-hash; the keys are the items from the C<import_records> and
68 C<import_biblios> tables of the Koha database.
69
70 =cut
71
72 sub BreedingSearch {
73     my ($search,$isbn,$z3950random) = @_;
74     my $dbh   = C4::Context->dbh;
75     my $count = 0;
76     my ($query,@bind);
77     my $sth;
78     my @results;
79
80     # normalise ISBN like at import
81     $isbn = C4::Koha::GetNormalizedISBN($isbn);
82
83     $query = "SELECT import_record_id, file_name, isbn, title, author
84               FROM  import_biblios 
85               JOIN import_records USING (import_record_id)
86               JOIN import_batches USING (import_batch_id)
87               WHERE ";
88     if ($z3950random) {
89         $query .= "z3950random = ?";
90         @bind=($z3950random);
91     } else {
92         @bind=();
93         if (defined($search) && length($search)>0) {
94             $search =~ s/(\s+)/\%/g;
95             $query .= "title like ? OR author like ?";
96             push(@bind,"%$search%", "%$search%");
97         }
98         if ($#bind!=-1 && defined($isbn) && length($isbn)>0) {
99             $query .= " and ";
100         }
101         if (defined($isbn) && length($isbn)>0) {
102             $query .= "isbn like ?";
103             push(@bind,"$isbn%");
104         }
105     }
106     $sth   = $dbh->prepare($query);
107     $sth->execute(@bind);
108     while (my $data = $sth->fetchrow_hashref) {
109             $results[$count] = $data;
110             # FIXME - hack to reflect difference in name 
111             # of columns in old marc_breeding and import_records
112             # There needs to be more separation between column names and 
113             # field names used in the templates </soapbox>
114             $data->{'file'} = $data->{'file_name'};
115             $data->{'id'} = $data->{'import_record_id'};
116             $count++;
117     } # while
118
119     $sth->finish;
120     return($count, @results);
121 } # sub breedingsearch
122
123
124 =head2 Z3950Search
125
126 Z3950Search($pars, $template);
127
128 Parameters for Z3950 search are all passed via the $pars hash. It may contain isbn, title, author, dewey, subject, lccall, controlnumber, stdid, srchany.
129 Also it should contain an arrayref id that points to a list of id's of the z3950 targets to be queried (see z3950servers table).
130 This code is used in acqui/z3950_search and cataloging/z3950_search.
131 The second parameter $template is a Template object. The routine uses this parameter to store the found values into the template.
132
133 =cut
134
135 sub Z3950Search {
136     my ($pars, $template)= @_;
137
138     my @id= @{$pars->{id}};
139     my $page= $pars->{page};
140     my $biblionumber= $pars->{biblionumber};
141
142     my $show_next       = 0;
143     my $total_pages     = 0;
144     my @results;
145     my @breeding_loop = ();
146     my @oConnection;
147     my @oResult;
148     my @errconn;
149     my $s = 0;
150     my $imported=0;
151
152     my ( $zquery, $squery ) = _build_query( $pars );
153
154     my $schema = Koha::Database->new()->schema();
155     my $rs = $schema->resultset('Z3950server')->search(
156         { id => [ @id ] },
157         { result_class => 'DBIx::Class::ResultClass::HashRefInflator' },
158     );
159     my @servers = $rs->all;
160     foreach my $server ( @servers ) {
161         $oConnection[$s] = _create_connection( $server );
162         $oResult[$s] =
163             $server->{servertype} eq 'zed'?
164                 $oConnection[$s]->search_pqf( $zquery ):
165                 $oConnection[$s]->search(new ZOOM::Query::CQL(
166                     _translate_query( $server, $squery )));
167         $s++;
168     }
169     my $xslh = Koha::XSLT_Handler->new;
170
171     my $nremaining = $s;
172     while ( $nremaining-- ) {
173         my $k;
174         my $event;
175         while ( ( $k = ZOOM::event( \@oConnection ) ) != 0 ) {
176             $event = $oConnection[ $k - 1 ]->last_event();
177             last if $event == ZOOM::Event::ZEND;
178         }
179
180         if ( $k != 0 ) {
181             $k--;
182             my ($error)= $oConnection[$k]->error_x(); #ignores errmsg, addinfo, diagset
183             if ($error) {
184                 if ($error =~ m/^(10000|10007)$/ ) {
185                     push(@errconn, { server => $servers[$k]->{host}, error => $error } );
186                 }
187             }
188             else {
189                 my $numresults = $oResult[$k]->size();
190                 my $i;
191                 my $res;
192                 if ( $numresults > 0  and $numresults >= (($page-1)*20)) {
193                     $show_next = 1 if $numresults >= ($page*20);
194                     $total_pages = int($numresults/20)+1 if $total_pages < ($numresults/20);
195                     for ($i = ($page-1)*20; $i < (($numresults < ($page*20)) ? $numresults : ($page*20)); $i++) {
196                         if ( $oResult[$k]->record($i) ) {
197                             undef $error;
198                             ( $res, $error ) = _handle_one_result( $oResult[$k]->record($i), $servers[$k], ++$imported, $biblionumber, $xslh ); #ignores error in sequence numbering
199                             push @breeding_loop, $res if $res;
200                             push @errconn, { server => $servers[$k]->{servername}, error => $error, seq => $i+1 } if $error;
201                         }
202                         else {
203                             push @errconn, { 'server' => $servers[$k]->{servername}, error => ( ( $oConnection[$k]->error_x() )[0] ), seq => $i+1 };
204                         }
205                     }
206                 }    #if $numresults
207             }
208         }    # if $k !=0
209
210         $template->param(
211             numberpending => $nremaining,
212             current_page => $page,
213             total_pages => $total_pages,
214             show_nextbutton => $show_next?1:0,
215             show_prevbutton => $page!=1,
216         );
217     } # while nremaining
218
219     #close result sets and connections
220     foreach(0..$s-1) {
221         $oResult[$_]->destroy();
222         $oConnection[$_]->destroy();
223     }
224
225     $template->param(
226         breeding_loop => \@breeding_loop,
227         servers => \@servers,
228         errconn       => \@errconn
229     );
230 }
231
232 sub _build_query {
233     my ( $pars ) = @_;
234
235     my $qry_build = {
236         isbn    => '@attr 1=7 @attr 5=1 "#term" ',
237         issn    => '@attr 1=8 @attr 5=1 "#term" ',
238         title   => '@attr 1=4 #term ',
239         author  => '@attr 1=1003 "#term" ',
240         dewey   => '@attr 1=16 "#term" ',
241         subject => '@attr 1=21 "#term" ',
242         lccall  => '@attr 1=16 @attr 2=3 @attr 3=1 @attr 4=1 @attr 5=1 '.
243                    '@attr 6=1 "#term" ',
244         controlnumber => '@attr 1=12 "#term" ',
245         srchany => '@attr 1=1016 "#term" ',
246         stdid   => '@attr 1=1007 "#term" ',
247     };
248
249     my $zquery='';
250     my $squery='';
251     my $nterms=0;
252     foreach my $k ( keys %$pars ) {
253         if( ( my $val=$pars->{$k} ) && $qry_build->{$k} ) {
254             $qry_build->{$k} =~ s/#term/$val/g;
255             $zquery .= $qry_build->{$k};
256             $squery .= "[$k]=\"$val\" and ";
257             $nterms++;
258         }
259     }
260     $zquery = "\@and " . $zquery for 2..$nterms;
261     $squery =~ s/ and $//;
262     return ( $zquery, $squery );
263 }
264
265 sub _handle_one_result {
266     my ( $zoomrec, $servhref, $seq, $bib, $xslh )= @_;
267
268     my $raw= $zoomrec->raw();
269     my $marcrecord;
270     if( $servhref->{servertype} eq 'sru' ) {
271         $marcrecord= MARC::Record->new_from_xml( $raw, 'UTF-8',
272             $servhref->{syntax} );
273     } else {
274         ($marcrecord) = MarcToUTF8Record($raw, C4::Context->preference('marcflavour'), $servhref->{encoding} // "iso-5426" ); #ignores charset return values
275     }
276     SetUTF8Flag($marcrecord);
277     my $error;
278     ( $marcrecord, $error ) = _do_xslt_proc($marcrecord, $servhref, $xslh);
279
280     my $batch_id = GetZ3950BatchId($servhref->{servername});
281     my $breedingid = AddBiblioToBatch($batch_id, $seq, $marcrecord, 'UTF-8', 0, 0);
282         #FIXME passing 0 for z3950random
283         #Will eliminate this unused field in a followup report
284         #Last zero indicates: no update for batch record counts
285
286
287     #call to TransformMarcToKoha replaced by next call
288     #we only need six fields from the marc record
289     my $row;
290     $row = _add_rowdata(
291         {
292             biblionumber => $bib,
293             server       => $servhref->{servername},
294             breedingid   => $breedingid,
295         }, $marcrecord) if $breedingid;
296     return ( $row, $error );
297 }
298
299 sub _do_xslt_proc {
300     my ( $marc, $server, $xslh ) = @_;
301     return $marc if !$server->{add_xslt};
302
303     my $htdocs = C4::Context->config('intrahtdocs');
304     my $theme = C4::Context->preference("template"); #staff
305     my $lang = C4::Languages::getlanguage() || 'en';
306
307     my @files= split ',', $server->{add_xslt};
308     my $xml = $marc->as_xml;
309     foreach my $f ( @files ) {
310         $f =~ s/^\s+//; $f =~ s/\s+$//; next if !$f;
311         $f = C4::XSLT::_get_best_default_xslt_filename(
312             $htdocs, $theme, $lang, $f ) unless $f =~ /^\//;
313         $xml = $xslh->transform( $xml, $f );
314         last if $xslh->err; #skip other files
315     }
316     if( !$xslh->err ) {
317         return MARC::Record->new_from_xml($xml, 'UTF-8');
318     } else {
319         return ( $marc, 'xslt_err' ); #original record in case of errors
320     }
321 }
322
323 sub _add_rowdata {
324     my ($row, $record)=@_;
325     my %fetch= (
326         title => 'biblio.title',
327         author => 'biblio.author',
328         isbn =>'biblioitems.isbn',
329         lccn =>'biblioitems.lccn', #LC control number (not call number)
330         edition =>'biblioitems.editionstatement',
331         date => 'biblio.copyrightdate', #MARC21
332         date2 => 'biblioitems.publicationyear', #UNIMARC
333     );
334     foreach my $k (keys %fetch) {
335         my ($t, $f)= split '\.', $fetch{$k};
336         $row= C4::Biblio::TransformMarcToKohaOneField($t, $f, $record, $row);
337         $row->{$k}= $row->{$f} if $k ne $f;
338     }
339     $row->{date}//= $row->{date2};
340     $row->{isbn}=_isbn_replace($row->{isbn});
341     return $row;
342 }
343
344 sub _isbn_replace {
345     my ($isbn) = @_;
346     return unless defined $isbn;
347     $isbn =~ s/ |-|\.//g;
348     $isbn =~ s/\|/ \| /g;
349     $isbn =~ s/\(/ \(/g;
350     return $isbn;
351 }
352
353 sub _create_connection {
354     my ( $server ) = @_;
355     my $option1= new ZOOM::Options();
356     $option1->option( 'async' => 1 );
357     $option1->option( 'elementSetName', 'F' );
358     $option1->option( 'preferredRecordSyntax', $server->{syntax} );
359     $option1->option( 'timeout', $server->{timeout} ) if $server->{timeout};
360
361     if( $server->{servertype} eq 'sru' ) {
362         foreach( split ',', $server->{sru_options}//'' ) {
363             #first remove surrounding spaces at comma and equals-sign
364             s/^\s+|\s+$//g;
365             my @temp= split '=', $_, 2;
366             @temp= map { my $c=$_; $c=~s/^\s+|\s+$//g; $c; } @temp;
367             $option1->option( $temp[0] => $temp[1] ) if @temp;
368         }
369     } elsif( $server->{servertype} eq 'zed' ) {
370         $option1->option( 'databaseName',   $server->{db} );
371         $option1->option( 'user', $server->{userid} ) if $server->{userid};
372         $option1->option( 'password', $server->{password} ) if $server->{password};
373     }
374
375     my $obj= ZOOM::Connection->create($option1);
376     if( $server->{servertype} eq 'sru' ) {
377         my $host= $server->{host};
378         if( $host !~ /^https?:\/\// ) {
379             #Normally, host will not be prefixed by protocol.
380             #In that case we can (safely) assume http.
381             #In case someone prefixed with https, give it a try..
382             $host = 'http://' . $host;
383         }
384         $obj->connect( $host.':'.$server->{port}.'/'.$server->{db} );
385     } else {
386         $obj->connect( $server->{host}, $server->{port} );
387     }
388     return $obj;
389 }
390
391 sub _translate_query { #SRU query adjusted per server cf. srufields column
392     my ($server, $query) = @_;
393
394     #sru_fields is in format title=field,isbn=field,...
395     #if a field doesn't exist, try anywhere or remove [field]=
396     my @parts= split(',', $server->{sru_fields} );
397     my %trans= map { if( /=/ ) { ( $`,$' ) } else { () } } @parts;
398     my $any= $trans{srchany}?$trans{srchany}.'=':'';
399
400     my $q=$query;
401     foreach my $key (keys %trans) {
402         my $f=$trans{$key};
403         if( $f ) {
404             $q=~s/\[$key\]/$f/g;
405         } else {
406             $q=~s/\[$key\]=/$any/g;
407         }
408     }
409     $q=~s/\[\w+\]=/$any/g; # remove remaining fields (not found in field list)
410     return $q;
411 }
412
413 =head2 ImportBreedingAuth
414
415 ImportBreedingAuth($marcrecords,$overwrite_auth,$filename,$encoding,$z3950random,$batch_type);
416
417     ImportBreedingAuth imports MARC records in the reservoir (import_records table).
418     ImportBreedingAuth is based on the ImportBreeding subroutine.
419
420 =cut
421
422 sub ImportBreedingAuth {
423     my ($marcrecords,$overwrite_auth,$filename,$encoding,$z3950random,$batch_type) = @_;
424     my @marcarray = split /\x1D/, $marcrecords;
425
426     my $dbh = C4::Context->dbh;
427
428     my $batch_id = GetZ3950BatchId($filename);
429     my $searchbreeding = $dbh->prepare("select import_record_id from import_auths where control_number=? and authorized_heading=?");
430
431 #     $encoding = C4::Context->preference("marcflavour") unless $encoding;
432     # fields used for import results
433     my $imported=0;
434     my $alreadyindb = 0;
435     my $alreadyinfarm = 0;
436     my $notmarcrecord = 0;
437     my $breedingid;
438     for (my $i=0;$i<=$#marcarray;$i++) {
439         my ($marcrecord, $charset_result, $charset_errors);
440         ($marcrecord, $charset_result, $charset_errors) =
441             MarcToUTF8Record($marcarray[$i]."\x1D", C4::Context->preference("marcflavour"), $encoding);
442
443         # Normalize the record so it doesn't have separated diacritics
444         SetUTF8Flag($marcrecord);
445
446         if (scalar($marcrecord->fields()) == 0) {
447             $notmarcrecord++;
448         } else {
449             my $heading;
450             $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
451
452             my $heading_authtype_code;
453             $heading_authtype_code = GuessAuthTypeCode($marcrecord);
454
455             my $controlnumber;
456             $controlnumber = $marcrecord->field('001')->data;
457
458             #Check if the authority record already exists in the database...
459             my ($duplicateauthid,$duplicateauthvalue);
460             if ($marcrecord && $heading_authtype_code) {
461                 ($duplicateauthid,$duplicateauthvalue) = FindDuplicateAuthority( $marcrecord, $heading_authtype_code);
462             }
463
464             if ($duplicateauthid && $overwrite_auth ne 2) {
465                 #If the authority record exists and $overwrite_auth doesn't equal 2, then mark it as already in the DB
466                 $alreadyindb++;
467             } else {
468                 if ($controlnumber && $heading) {
469                     $searchbreeding->execute($controlnumber,$heading);
470                     ($breedingid) = $searchbreeding->fetchrow;
471                 }
472                 if ($breedingid && $overwrite_auth eq '0') {
473                     $alreadyinfarm++;
474                 } else {
475                     if ($breedingid && $overwrite_auth eq '1') {
476                         ModAuthorityInBatch($breedingid, $marcrecord);
477                     } else {
478                         my $import_id = AddAuthToBatch($batch_id, $imported, $marcrecord, $encoding, $z3950random);
479                         $breedingid = $import_id;
480                     }
481                     $imported++;
482                 }
483             }
484         }
485     }
486     return ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported,$breedingid);
487 }
488
489 =head2 Z3950SearchAuth
490
491 Z3950SearchAuth($pars, $template);
492
493 Parameters for Z3950 search are all passed via the $pars hash. It may contain nameany, namepersonal, namecorp, namemeetingcon,
494 title, uniform title, subject, subjectsubdiv, srchany.
495 Also it should contain an arrayref id that points to a list of IDs of the z3950 targets to be queried (see z3950servers table).
496 This code is used in cataloging/z3950_auth_search.
497 The second parameter $template is a Template object. The routine uses this parameter to store the found values into the template.
498
499 =cut
500
501 sub Z3950SearchAuth {
502     my ($pars, $template)= @_;
503
504     my $dbh   = C4::Context->dbh;
505     my @id= @{$pars->{id}};
506     my $random= $pars->{random};
507     my $page= $pars->{page};
508
509     my $nameany= $pars->{nameany};
510     my $authorany= $pars->{authorany};
511     my $authorpersonal= $pars->{authorpersonal};
512     my $authorcorp= $pars->{authorcorp};
513     my $authormeetingcon= $pars->{authormeetingcon};
514     my $title= $pars->{title};
515     my $uniformtitle= $pars->{uniformtitle};
516     my $subject= $pars->{subject};
517     my $subjectsubdiv= $pars->{subjectsubdiv};
518     my $srchany= $pars->{srchany};
519
520     my $show_next       = 0;
521     my $total_pages     = 0;
522     my $attr = '';
523     my $host;
524     my $server;
525     my $database;
526     my $port;
527     my $marcdata;
528     my @encoding;
529     my @results;
530     my $count;
531     my $record;
532     my @serverhost;
533     my @servername;
534     my @breeding_loop = ();
535
536     my @oConnection;
537     my @oResult;
538     my @errconn;
539     my $s = 0;
540     my $query;
541     my $nterms=0;
542
543     if ($nameany) {
544         $query .= " \@attr 1=1002 \"$nameany\" "; #Any name (this includes personal, corporate, meeting/conference authors, and author names in subject headings)
545         #This attribute is supported by both the Library of Congress and Libraries Australia 08/05/2013
546         $nterms++;
547     }
548
549     if ($authorany) {
550         $query .= " \@attr 1=1003 \"$authorany\" "; #Author-name (this includes personal, corporate, meeting/conference authors, but not author names in subject headings)
551         #This attribute is not supported by the Library of Congress, but is supported by Libraries Australia 08/05/2013
552         $nterms++;
553     }
554
555     if ($authorcorp) {
556         $query .= " \@attr 1=2 \"$authorcorp\" "; #1005 is another valid corporate author attribute...
557         $nterms++;
558     }
559
560     if ($authorpersonal) {
561         $query .= " \@attr 1=1 \"$authorpersonal\" "; #1004 is another valid personal name attribute...
562         $nterms++;
563     }
564
565     if ($authormeetingcon) {
566         $query .= " \@attr 1=3 \"$authormeetingcon\" "; #1006 is another valid meeting/conference name attribute...
567         $nterms++;
568     }
569
570     if ($subject) {
571         $query .= " \@attr 1=21 \"$subject\" ";
572         $nterms++;
573     }
574
575     if ($subjectsubdiv) {
576         $query .= " \@attr 1=47 \"$subjectsubdiv\" ";
577         $nterms++;
578     }
579
580     if ($title) {
581         $query .= " \@attr 1=4 \"$title\" "; #This is a regular title search. 1=6 will give just uniform titles
582         $nterms++;
583     }
584
585      if ($uniformtitle) {
586         $query .= " \@attr 1=6 \"$uniformtitle\" "; #This is the uniform title search
587         $nterms++;
588     }
589
590     if($srchany) {
591         $query .= " \@attr 1=1016 \"$srchany\" ";
592         $nterms++;
593     }
594
595     for my $i (1..$nterms-1) {
596         $query = "\@and " . $query;
597     }
598
599     foreach my $servid (@id) {
600         my $sth = $dbh->prepare("select * from z3950servers where id=?");
601         $sth->execute($servid);
602         while ( $server = $sth->fetchrow_hashref ) {
603             my $option1      = new ZOOM::Options();
604             $option1->option( 'async' => 1 );
605             $option1->option( 'elementSetName', 'F' );
606             $option1->option( 'databaseName',   $server->{db} );
607             $option1->option( 'user', $server->{userid} ) if $server->{userid};
608             $option1->option( 'password', $server->{password} ) if $server->{password};
609             $option1->option( 'preferredRecordSyntax', $server->{syntax} );
610             $option1->option( 'timeout', $server->{timeout} ) if $server->{timeout};
611             $oConnection[$s] = create ZOOM::Connection($option1);
612             $oConnection[$s]->connect( $server->{host}, $server->{port} );
613             $serverhost[$s] = $server->{host};
614             $servername[$s] = $server->{name};
615             $encoding[$s]   = ($server->{encoding}?$server->{encoding}:"iso-5426");
616             $s++;
617         }    ## while fetch
618     }    # foreach
619     my $nremaining  = $s;
620
621     for ( my $z = 0 ; $z < $s ; $z++ ) {
622         $oResult[$z] = $oConnection[$z]->search_pqf($query);
623     }
624
625     while ( $nremaining-- ) {
626         my $k;
627         my $event;
628         while ( ( $k = ZOOM::event( \@oConnection ) ) != 0 ) {
629             $event = $oConnection[ $k - 1 ]->last_event();
630             last if $event == ZOOM::Event::ZEND;
631         }
632
633         if ( $k != 0 ) {
634             $k--;
635             my ($error, $errmsg, $addinfo, $diagset)= $oConnection[$k]->error_x();
636             if ($error) {
637                 if ($error =~ m/^(10000|10007)$/ ) {
638                     push(@errconn, {'server' => $serverhost[$k]});
639                 }
640             }
641             else {
642                 my $numresults = $oResult[$k]->size();
643                 my $i;
644                 my $result = '';
645                 if ( $numresults > 0  and $numresults >= (($page-1)*20)) {
646                     $show_next = 1 if $numresults >= ($page*20);
647                     $total_pages = int($numresults/20)+1 if $total_pages < ($numresults/20);
648                     for ($i = ($page-1)*20; $i < (($numresults < ($page*20)) ? $numresults : ($page*20)); $i++) {
649                         my $rec = $oResult[$k]->record($i);
650                         if ($rec) {
651                             my $marcrecord;
652                             my $marcdata;
653                             $marcdata   = $rec->raw();
654
655                             my ($charset_result, $charset_errors);
656                             ($marcrecord, $charset_result, $charset_errors)= MarcToUTF8Record($marcdata, C4::Context->preference('marcflavour'), $encoding[$k]);
657
658                             my $heading;
659                             my $heading_authtype_code;
660                             $heading_authtype_code = GuessAuthTypeCode($marcrecord);
661                             $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
662
663                             my ($notmarcrecord, $alreadyindb, $alreadyinfarm, $imported, $breedingid)= ImportBreedingAuth( $marcdata, 2, $serverhost[$k], $encoding[$k], $random, 'z3950' );
664                             my %row_data;
665                             $row_data{server}       = $servername[$k];
666                             $row_data{breedingid}   = $breedingid;
667                             $row_data{heading}      = $heading;
668                             $row_data{heading_code}      = $heading_authtype_code;
669                             push( @breeding_loop, \%row_data );
670                         }
671                         else {
672                             push(@breeding_loop,{'server'=>$servername[$k],'title'=>join(': ',$oConnection[$k]->error_x()),'breedingid'=>-1});
673                         }
674                     }
675                 }    #if $numresults
676             }
677         }    # if $k !=0
678
679         $template->param(
680             numberpending => $nremaining,
681             current_page => $page,
682             total_pages => $total_pages,
683             show_nextbutton => $show_next?1:0,
684             show_prevbutton => $page!=1,
685         );
686     } # while nremaining
687
688     #close result sets and connections
689     foreach(0..$s-1) {
690         $oResult[$_]->destroy();
691         $oConnection[$_]->destroy();
692     }
693
694     my @servers = ();
695     foreach my $id (@id) {
696         push @servers, {id => $id};
697     }
698     $template->param(
699         breeding_loop => \@breeding_loop,
700         servers => \@servers,
701         errconn       => \@errconn
702     );
703 }
704
705 1;
706 __END__
707