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