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