Bug 21772: (QA follow-up) Fix setting variables to PROCESS in holds
[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 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;
34
35 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
36
37 BEGIN {
38         require Exporter;
39         @ISA = qw(Exporter);
40     @EXPORT = qw(&BreedingSearch &Z3950Search &Z3950SearchAuth);
41 }
42
43 =head1 NAME
44
45 C4::Breeding : module to add biblios to import_records via
46                the breeding/reservoir API.
47
48 =head1 SYNOPSIS
49
50     Z3950Search($pars, $template);
51     ($count, @results) = &BreedingSearch($title,$isbn,$random);
52
53 =head1 DESCRIPTION
54
55 This module contains routines related to Koha's Z39.50 search into
56 cataloguing reservoir features.
57
58 =head2 BreedingSearch
59
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.
64
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.
68
69 =cut
70
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;
78
79     # normalise ISBN like at import
80     $isbn = C4::Koha::GetNormalizedISBN($isbn);
81
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%");
96         }
97         if ($#bind!=-1 && defined($isbn) && length($isbn)>0) {
98             $query .= " and ";
99         }
100         if (defined($isbn) && length($isbn)>0) {
101             $query .= "isbn like ?";
102             push(@bind,"$isbn%");
103         }
104     }
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
117
118     $sth->finish;
119     return($count, @results);
120 } # sub breedingsearch
121
122
123 =head2 Z3950Search
124
125 Z3950Search($pars, $template);
126
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.
131
132 =cut
133
134 sub Z3950Search {
135     my ($pars, $template)= @_;
136
137     my @id= @{$pars->{id}};
138     my $page= $pars->{page};
139     my $biblionumber= $pars->{biblionumber};
140
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;
150
151     my ( $zquery, $squery ) = _bib_build_query( $pars );
152
153     my $schema = Koha::Database->new()->schema();
154     my $rs = $schema->resultset('Z3950server')->search(
155         { id => [ @id ] },
156         { result_class => 'DBIx::Class::ResultClass::HashRefInflator' },
157     );
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++;
167     }
168     my $xslh = Koha::XSLT_Handler->new;
169
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;
177         }
178
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 } );
185                 }
186             }
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;
200                         }
201                         else {
202                             push @errconn, { 'server' => $servers[$k]->{servername}, error => ( ( $oConnection[$k]->error_x() )[0] ), seq => $i+1 };
203                         }
204                     }
205                 }    #if $numresults
206             }
207         }    # if $k !=0
208
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,
215         );
216     } # while nremaining
217
218     #close result sets and connections
219     foreach(0..$s-1) {
220         $oResult[$_]->destroy();
221         $oConnection[$_]->destroy();
222     }
223
224     $template->param(
225         breeding_loop => \@breeding_loop,
226         servers => \@servers,
227         errconn       => \@errconn
228     );
229 }
230
231 sub _auth_build_query {
232     my ( $pars ) = @_;
233
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" ',
246     };
247
248     return _build_query( $pars, $qry_build );
249 }
250
251 sub _bib_build_query {
252
253     my ( $pars ) = @_;
254
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" ',
267     };
268
269     return _build_query( $pars, $qry_build );
270 }
271
272 sub _build_query {
273
274     my ( $pars, $qry_build ) = @_;
275
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++;
287         }
288     }
289     $zquery = "\@and " . $zquery for 2..$nterms;
290     $squery =~ s/ and $//;
291     return ( $zquery, $squery );
292 }
293
294 sub _handle_one_result {
295     my ( $zoomrec, $servhref, $seq, $bib, $xslh )= @_;
296
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
304     }
305     SetUTF8Flag($marcrecord);
306     my $error;
307     ( $marcrecord, $error ) = _do_xslt_proc($marcrecord, $servhref, $xslh);
308
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
314
315
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(
320         {
321             biblionumber => $bib,
322             server       => $servhref->{servername},
323             breedingid   => $breedingid,
324         }, $marcrecord) if $breedingid;
325     return ( $row, $error );
326 }
327
328 sub _do_xslt_proc {
329     my ( $marc, $server, $xslh ) = @_;
330     return $marc if !$server->{add_xslt};
331
332     my $htdocs = C4::Context->config('intrahtdocs');
333     my $theme = C4::Context->preference("template"); #staff
334     my $lang = C4::Languages::getlanguage() || 'en';
335
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
344     }
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
349     }
350 }
351
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'
360     );
361     $fetch{date} = C4::Context->preference('marcflavour') eq "MARC21" ? 'biblio.copyrightdate' : 'biblioitems.publicationyear';
362
363     foreach my $k (keys %fetch) {
364         $row->{$k} = C4::Biblio::TransformMarcToKohaOneField( $fetch{$k}, $record );
365     }
366     $row->{date}//= $row->{date2};
367     $row->{isbn}=_isbn_replace($row->{isbn});
368
369     $row = _add_custom_field_rowdata($row, $record);
370
371     return $row;
372 }
373
374 sub _add_custom_field_rowdata
375 {
376     my ( $row, $record ) = @_;
377     my $pref_newtags = C4::Context->preference('AdditionalFieldsInZ3950ResultSearch');
378     my $pref_flavour = C4::Context->preference('MarcFlavour');
379
380     $pref_newtags =~ s/^\s+|\s+$//g;
381     $pref_newtags =~ s/\h+/ /g;
382
383     my @addnumberfields;
384
385     foreach my $field (split /\,/, $pref_newtags) {
386         $field =~ s/^\s+|\s+$//g ;  # trim whitespace
387         my ($tag, $subtags) = split(/\$/, $field);
388
389         if ( $record->field($tag) ) {
390             my @content = ();
391
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) . ' ';
398                         }
399                     }
400                     if ( not $str eq '') {
401                         push @content, $str;
402                     }
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();
409                 }
410             }
411
412             if ( @content ) {
413                 $row->{$field} = \@content;
414                 push( @addnumberfields, $field );
415             }
416         }
417     }
418
419     $row->{'addnumberfields'} = \@addnumberfields;
420
421     return $row;
422 }
423
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;
431 }
432
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};
440
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;
448         }
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};
453     }
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;
462         }
463         $obj->connect( $host.':'.$server->{port}.'/'.$server->{db} );
464     } else {
465         $obj->connect( $server->{host}, $server->{port} );
466     }
467     return $obj;
468 }
469
470 sub _translate_query { #SRU query adjusted per server cf. srufields column
471     my ($server, $query) = @_;
472
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}.'=':'';
478
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;
486         }
487     }
488     $q=~s/\[\w+\]=/$any/g; # remove remaining fields (not found in field list)
489     return $q;
490 }
491
492 =head2 ImportBreedingAuth
493
494 ImportBreedingAuth($marcrecords,$overwrite_auth,$filename,$encoding,$z3950random);
495
496     ImportBreedingAuth imports MARC records in the reservoir (import_records table).
497     ImportBreedingAuth is based on the ImportBreeding subroutine.
498
499 =cut
500
501 sub ImportBreedingAuth {
502     my ($marcrecord,$overwrite_auth,$filename,$encoding,$z3950random) = @_;
503     my $dbh = C4::Context->dbh;
504
505     my $batch_id = GetZ3950BatchId($filename);
506     my $searchbreeding = $dbh->prepare("select import_record_id from import_auths where control_number=? and authorized_heading=?");
507
508     my $marcflavour = C4::Context->preference('marcflavour');
509     my $marc_type = $marcflavour eq 'UNIMARC' ? 'UNIMARCAUTH' : $marcflavour;
510
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;
517
518         # Normalize the record so it doesn't have separated diacritics
519         SetUTF8Flag($marcrecord);
520
521         if (scalar($marcrecord->fields()) == 0) {
522             $notmarcrecord++;
523         } else {
524             my $heading;
525             $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
526
527             my $heading_authtype_code;
528             $heading_authtype_code = GuessAuthTypeCode($marcrecord);
529
530             my $controlnumber;
531             $controlnumber = $marcrecord->field('001')->data;
532
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);
537             }
538
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;
546                 }
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;
555                     }
556                     $imported++;
557                 }
558             }
559         }
560     return ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported,$breedingid);
561 }
562
563 =head2 Z3950SearchAuth
564
565 Z3950SearchAuth($pars, $template);
566
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.
572
573 =cut
574
575 sub Z3950SearchAuth {
576     my ($pars, $template)= @_;
577
578     my $dbh   = C4::Context->dbh;
579     my @id= @{$pars->{id}};
580     my $random= $pars->{random};
581     my $page= $pars->{page};
582
583
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 = ();
598
599     my @oConnection;
600     my @oResult;
601     my @errconn;
602     my @servers;
603     my $s = 0;
604     my $query;
605     my $nterms=0;
606
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 );
616
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;
628
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;
635         }
636
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]});
643                 }
644             }
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();
658
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] );
664                             }
665                             my $heading;
666                             my $heading_authtype_code;
667                             $heading_authtype_code = GuessAuthTypeCode($marcrecord);
668                             $heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marcrecord });
669
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 );
678                         }
679                         else {
680                             push(@breeding_loop,{'server'=>$servers[$k]->{'servername'},'title'=>join(': ',$oConnection[$k]->error_x()),'breedingid'=>-1,'authid'=>-1});
681                         }
682                     }
683                 }    #if $numresults
684             }
685         }    # if $k !=0
686
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,
693         );
694     } # while nremaining
695
696     #close result sets and connections
697     foreach(0..$s-1) {
698         $oResult[$_]->destroy();
699         $oConnection[$_]->destroy();
700     }
701
702     @servers = ();
703     foreach my $id (@id) {
704         push @servers, {id => $id};
705     }
706     $template->param(
707         breeding_loop => \@breeding_loop,
708         servers => \@servers,
709         errconn       => \@errconn
710     );
711 }
712
713 1;
714 __END__
715