Bug 9302: Use patron-title.inc
[koha.git] / C4 / Breeding.pm
bloba17406b145015eb48a1b63900236baad90705850
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 C4::ImportBatch;
29 use C4::AuthoritiesMarc; #GuessAuthTypeCode, FindDuplicateAuthority
30 use C4::Languages;
31 use Koha::Database;
32 use Koha::XSLT_Handler;
34 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
36 BEGIN {
37 require Exporter;
38 @ISA = qw(Exporter);
39 @EXPORT = qw(&BreedingSearch &Z3950Search &Z3950SearchAuth);
42 =head1 NAME
44 C4::Breeding : module to add biblios to import_records via
45 the breeding/reservoir API.
47 =head1 SYNOPSIS
49 Z3950Search($pars, $template);
50 ($count, @results) = &BreedingSearch($title,$isbn,$random);
52 =head1 DESCRIPTION
54 This module contains routines related to Koha's Z39.50 search into
55 cataloguing reservoir features.
57 =head2 BreedingSearch
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.
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.
68 =cut
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;
78 # normalise ISBN like at import
79 $isbn = C4::Koha::GetNormalizedISBN($isbn);
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%");
96 if ($#bind!=-1 && defined($isbn) && length($isbn)>0) {
97 $query .= " and ";
99 if (defined($isbn) && length($isbn)>0) {
100 $query .= "isbn like ?";
101 push(@bind,"$isbn%");
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
117 $sth->finish;
118 return($count, @results);
119 } # sub breedingsearch
122 =head2 Z3950Search
124 Z3950Search($pars, $template);
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.
131 =cut
133 sub Z3950Search {
134 my ($pars, $template)= @_;
136 my @id= @{$pars->{id}};
137 my $page= $pars->{page};
138 my $biblionumber= $pars->{biblionumber};
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;
150 my ( $zquery, $squery ) = _build_query( $pars );
152 my $schema = Koha::Database->new()->schema();
153 my $rs = $schema->resultset('Z3950server')->search(
154 { id => [ @id ] },
155 { result_class => 'DBIx::Class::ResultClass::HashRefInflator' },
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++;
167 my $xslh = Koha::XSLT_Handler->new;
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;
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 } );
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;
200 else {
201 push @errconn, { 'server' => $servers[$k]->{servername}, error => ( ( $oConnection[$k]->error_x() )[0] ), seq => $i+1 };
204 } #if $numresults
206 } # if $k !=0
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,
215 } # while nremaining
217 #close result sets and connections
218 foreach(0..$s-1) {
219 $oResult[$_]->destroy();
220 $oConnection[$_]->destroy();
223 $template->param(
224 breeding_loop => \@breeding_loop,
225 servers => \@servers,
226 errconn => \@errconn
230 sub _build_query {
231 my ( $pars ) = @_;
233 my $qry_build = {
234 isbn => '@attr 1=7 @attr 5=1 "#term" ',
235 issn => '@attr 1=8 @attr 5=1 "#term" ',
236 title => '@attr 1=4 "#term" ',
237 author => '@attr 1=1003 "#term" ',
238 dewey => '@attr 1=16 "#term" ',
239 subject => '@attr 1=21 "#term" ',
240 lccall => '@attr 1=16 @attr 2=3 @attr 3=1 @attr 4=1 @attr 5=1 '.
241 '@attr 6=1 "#term" ',
242 controlnumber => '@attr 1=12 "#term" ',
243 srchany => '@attr 1=1016 "#term" ',
244 stdid => '@attr 1=1007 "#term" ',
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++;
260 $zquery = "\@and " . $zquery for 2..$nterms;
261 $squery =~ s/ and $//;
262 return ( $zquery, $squery );
265 sub _handle_one_result {
266 my ( $zoomrec, $servhref, $seq, $bib, $xslh )= @_;
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
276 SetUTF8Flag($marcrecord);
277 my $error;
278 ( $marcrecord, $error ) = _do_xslt_proc($marcrecord, $servhref, $xslh);
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
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(
292 biblionumber => $bib,
293 server => $servhref->{servername},
294 breedingid => $breedingid,
295 }, $marcrecord) if $breedingid;
296 return ( $row, $error );
299 sub _do_xslt_proc {
300 my ( $marc, $server, $xslh ) = @_;
301 return $marc if !$server->{add_xslt};
303 my $htdocs = C4::Context->config('intrahtdocs');
304 my $theme = C4::Context->preference("template"); #staff
305 my $lang = C4::Languages::getlanguage() || 'en';
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
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
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
334 foreach my $k (keys %fetch) {
335 $row->{$k} = C4::Biblio::TransformMarcToKohaOneField( $fetch{$k}, $record );
337 $row->{date}//= $row->{date2};
338 $row->{isbn}=_isbn_replace($row->{isbn});
339 return $row;
342 sub _isbn_replace {
343 my ($isbn) = @_;
344 return unless defined $isbn;
345 $isbn =~ s/ |-|\.//g;
346 $isbn =~ s/\|/ \| /g;
347 $isbn =~ s/\(/ \(/g;
348 return $isbn;
351 sub _create_connection {
352 my ( $server ) = @_;
353 my $option1= new ZOOM::Options();
354 $option1->option( 'async' => 1 );
355 $option1->option( 'elementSetName', 'F' );
356 $option1->option( 'preferredRecordSyntax', $server->{syntax} );
357 $option1->option( 'timeout', $server->{timeout} ) if $server->{timeout};
359 if( $server->{servertype} eq 'sru' ) {
360 foreach( split ',', $server->{sru_options}//'' ) {
361 #first remove surrounding spaces at comma and equals-sign
362 s/^\s+|\s+$//g;
363 my @temp= split '=', $_, 2;
364 @temp= map { my $c=$_; $c=~s/^\s+|\s+$//g; $c; } @temp;
365 $option1->option( $temp[0] => $temp[1] ) if @temp;
367 } elsif( $server->{servertype} eq 'zed' ) {
368 $option1->option( 'databaseName', $server->{db} );
369 $option1->option( 'user', $server->{userid} ) if $server->{userid};
370 $option1->option( 'password', $server->{password} ) if $server->{password};
373 my $obj= ZOOM::Connection->create($option1);
374 if( $server->{servertype} eq 'sru' ) {
375 my $host= $server->{host};
376 if( $host !~ /^https?:\/\// ) {
377 #Normally, host will not be prefixed by protocol.
378 #In that case we can (safely) assume http.
379 #In case someone prefixed with https, give it a try..
380 $host = 'http://' . $host;
382 $obj->connect( $host.':'.$server->{port}.'/'.$server->{db} );
383 } else {
384 $obj->connect( $server->{host}, $server->{port} );
386 return $obj;
389 sub _translate_query { #SRU query adjusted per server cf. srufields column
390 my ($server, $query) = @_;
392 #sru_fields is in format title=field,isbn=field,...
393 #if a field doesn't exist, try anywhere or remove [field]=
394 my @parts= split(',', $server->{sru_fields} );
395 my %trans= map { if( /=/ ) { ( $`,$' ) } else { () } } @parts;
396 my $any= $trans{srchany}?$trans{srchany}.'=':'';
398 my $q=$query;
399 foreach my $key (keys %trans) {
400 my $f=$trans{$key};
401 if( $f ) {
402 $q=~s/\[$key\]/$f/g;
403 } else {
404 $q=~s/\[$key\]=/$any/g;
407 $q=~s/\[\w+\]=/$any/g; # remove remaining fields (not found in field list)
408 return $q;
411 =head2 ImportBreedingAuth
413 ImportBreedingAuth($marcrecords,$overwrite_auth,$filename,$encoding,$z3950random,$batch_type);
415 ImportBreedingAuth imports MARC records in the reservoir (import_records table).
416 ImportBreedingAuth is based on the ImportBreeding subroutine.
418 =cut
420 sub ImportBreedingAuth {
421 my ($marcrecords,$overwrite_auth,$filename,$encoding,$z3950random,$batch_type) = @_;
422 my @marcarray = split /\x1D/, $marcrecords;
424 my $dbh = C4::Context->dbh;
426 my $batch_id = GetZ3950BatchId($filename);
427 my $searchbreeding = $dbh->prepare("select import_record_id from import_auths where control_number=? and authorized_heading=?");
429 my $marcflavour = C4::Context->preference('marcflavour');
430 my $marc_type = $marcflavour eq 'UNIMARC' ? 'UNIMARCAUTH' : $marcflavour;
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", $marc_type, $encoding);
443 # Normalize the record so it doesn't have separated diacritics
444 SetUTF8Flag($marcrecord);
446 if (scalar($marcrecord->fields()) == 0) {
447 $notmarcrecord++;
448 } else {
449 my $heading;
450 $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
452 my $heading_authtype_code;
453 $heading_authtype_code = GuessAuthTypeCode($marcrecord);
455 my $controlnumber;
456 $controlnumber = $marcrecord->field('001')->data;
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);
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;
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;
481 $imported++;
486 return ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported,$breedingid);
489 =head2 Z3950SearchAuth
491 Z3950SearchAuth($pars, $template);
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.
499 =cut
501 sub Z3950SearchAuth {
502 my ($pars, $template)= @_;
504 my $dbh = C4::Context->dbh;
505 my @id= @{$pars->{id}};
506 my $random= $pars->{random};
507 my $page= $pars->{page};
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 my $authid= $pars->{authid};
521 my $show_next = 0;
522 my $total_pages = 0;
523 my $attr = '';
524 my $host;
525 my $server;
526 my $database;
527 my $port;
528 my $marcdata;
529 my @encoding;
530 my @results;
531 my $count;
532 my $record;
533 my @serverhost;
534 my @servername;
535 my @breeding_loop = ();
537 my @oConnection;
538 my @oResult;
539 my @errconn;
540 my $s = 0;
541 my $query;
542 my $nterms=0;
544 my $marcflavour = C4::Context->preference('marcflavour');
545 my $marc_type = $marcflavour eq 'UNIMARC' ? 'UNIMARCAUTH' : $marcflavour;
547 if ($nameany) {
548 $query .= " \@attr 1=1002 \"$nameany\" "; #Any name (this includes personal, corporate, meeting/conference authors, and author names in subject headings)
549 #This attribute is supported by both the Library of Congress and Libraries Australia 08/05/2013
550 $nterms++;
553 if ($authorany) {
554 $query .= " \@attr 1=1003 \"$authorany\" "; #Author-name (this includes personal, corporate, meeting/conference authors, but not author names in subject headings)
555 #This attribute is not supported by the Library of Congress, but is supported by Libraries Australia 08/05/2013
556 $nterms++;
559 if ($authorcorp) {
560 $query .= " \@attr 1=2 \"$authorcorp\" "; #1005 is another valid corporate author attribute...
561 $nterms++;
564 if ($authorpersonal) {
565 $query .= " \@attr 1=1 \"$authorpersonal\" "; #1004 is another valid personal name attribute...
566 $nterms++;
569 if ($authormeetingcon) {
570 $query .= " \@attr 1=3 \"$authormeetingcon\" "; #1006 is another valid meeting/conference name attribute...
571 $nterms++;
574 if ($subject) {
575 $query .= " \@attr 1=21 \"$subject\" ";
576 $nterms++;
579 if ($subjectsubdiv) {
580 $query .= " \@attr 1=47 \"$subjectsubdiv\" ";
581 $nterms++;
584 if ($title) {
585 $query .= " \@attr 1=4 \"$title\" "; #This is a regular title search. 1=6 will give just uniform titles
586 $nterms++;
589 if ($uniformtitle) {
590 $query .= " \@attr 1=6 \"$uniformtitle\" "; #This is the uniform title search
591 $nterms++;
594 if($srchany) {
595 $query .= " \@attr 1=1016 \"$srchany\" ";
596 $nterms++;
599 for my $i (1..$nterms-1) {
600 $query = "\@and " . $query;
603 foreach my $servid (@id) {
604 my $sth = $dbh->prepare("select * from z3950servers where id=?");
605 $sth->execute($servid);
606 while ( $server = $sth->fetchrow_hashref ) {
607 my $option1 = new ZOOM::Options();
608 $option1->option( 'async' => 1 );
609 $option1->option( 'elementSetName', 'F' );
610 $option1->option( 'databaseName', $server->{db} );
611 $option1->option( 'user', $server->{userid} ) if $server->{userid};
612 $option1->option( 'password', $server->{password} ) if $server->{password};
613 $option1->option( 'preferredRecordSyntax', $server->{syntax} );
614 $option1->option( 'timeout', $server->{timeout} ) if $server->{timeout};
615 $oConnection[$s] = create ZOOM::Connection($option1);
616 $oConnection[$s]->connect( $server->{host}, $server->{port} );
617 $serverhost[$s] = $server->{host};
618 $servername[$s] = $server->{servername};
619 $encoding[$s] = ($server->{encoding}?$server->{encoding}:"iso-5426");
620 $s++;
621 } ## while fetch
622 } # foreach
623 my $nremaining = $s;
625 for ( my $z = 0 ; $z < $s ; $z++ ) {
626 $oResult[$z] = $oConnection[$z]->search_pqf($query);
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 ($marcrecord, $charset_result, $charset_errors)= MarcToUTF8Record($marcdata, $marc_type, $encoding[$k]);
662 my $heading;
663 my $heading_authtype_code;
664 $heading_authtype_code = GuessAuthTypeCode($marcrecord);
665 $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
667 my ($notmarcrecord, $alreadyindb, $alreadyinfarm, $imported, $breedingid)= ImportBreedingAuth( $marcdata, 2, $serverhost[$k], $encoding[$k], $random, 'z3950' );
668 my %row_data;
669 $row_data{server} = $servername[$k];
670 $row_data{breedingid} = $breedingid;
671 $row_data{heading} = $heading;
672 $row_data{authid} = $authid;
673 $row_data{heading_code} = $heading_authtype_code;
674 push( @breeding_loop, \%row_data );
676 else {
677 push(@breeding_loop,{'server'=>$servername[$k],'title'=>join(': ',$oConnection[$k]->error_x()),'breedingid'=>-1,'authid'=>-1});
680 } #if $numresults
682 } # if $k !=0
684 $template->param(
685 numberpending => $nremaining,
686 current_page => $page,
687 total_pages => $total_pages,
688 show_nextbutton => $show_next?1:0,
689 show_prevbutton => $page!=1,
691 } # while nremaining
693 #close result sets and connections
694 foreach(0..$s-1) {
695 $oResult[$_]->destroy();
696 $oConnection[$_]->destroy();
699 my @servers = ();
700 foreach my $id (@id) {
701 push @servers, {id => $id};
703 $template->param(
704 breeding_loop => \@breeding_loop,
705 servers => \@servers,
706 errconn => \@errconn
711 __END__