Searching empty strings broken in Authorities
[koha.git] / C4 / AuthoritiesMarc.pm
1 package C4::AuthoritiesMarc;
2 # Copyright 2000-2002 Katipo Communications
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA  02111-1307 USA
18
19 use strict;
20 use C4::Context;
21 use C4::Koha;
22 use MARC::Record;
23 use C4::Biblio;
24 use C4::Search;
25 use C4::AuthoritiesMarc::MARC21;
26 use C4::AuthoritiesMarc::UNIMARC;
27 use C4::Charset;
28
29 use vars qw($VERSION @ISA @EXPORT);
30
31 BEGIN {
32         # set the version for version checking
33         $VERSION = 3.01;
34
35         require Exporter;
36         @ISA = qw(Exporter);
37         @EXPORT = qw(
38             &GetTagsLabels
39             &GetAuthType
40             &GetAuthTypeCode
41         &GetAuthMARCFromKohaField 
42         &AUTHhtml2marc
43
44         &AddAuthority
45         &ModAuthority
46         &DelAuthority
47         &GetAuthority
48         &GetAuthorityXML
49     
50         &CountUsage
51         &CountUsageChildren
52         &SearchAuthorities
53     
54         &BuildSummary
55         &BuildUnimarcHierarchies
56         &BuildUnimarcHierarchy
57     
58         &merge
59         &FindDuplicateAuthority
60         );
61 }
62
63 =head2 GetAuthMARCFromKohaField 
64
65 =over 4
66
67 ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
68 returns tag and subfield linked to kohafield
69
70 Comment :
71 Suppose Kohafield is only linked to ONE subfield
72
73 =back
74
75 =cut
76
77 sub GetAuthMARCFromKohaField {
78 #AUTHfind_marc_from_kohafield
79   my ( $kohafield,$authtypecode ) = @_;
80   my $dbh=C4::Context->dbh;
81   return 0, 0 unless $kohafield;
82   $authtypecode="" unless $authtypecode;
83   my $marcfromkohafield;
84   my $sth = $dbh->prepare("select tagfield,tagsubfield from auth_subfield_structure where kohafield= ? and authtypecode=? ");
85   $sth->execute($kohafield,$authtypecode);
86   my ($tagfield,$tagsubfield) = $sth->fetchrow;
87     
88   return  ($tagfield,$tagsubfield);
89 }
90
91 =head2 SearchAuthorities 
92
93 =over 4
94
95 (\@finalresult, $nbresults)= &SearchAuthorities($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby)
96 returns ref to array result and count of results returned
97
98 =back
99
100 =cut
101
102 sub SearchAuthorities {
103     my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby) = @_;
104     #use Data::Dumper; map {warn "CALL : ".Data::Dumper::Dumper($_);} @_;
105     my $dbh=C4::Context->dbh;
106     if (C4::Context->preference('NoZebra')) {
107     
108         #
109         # build the query
110         #
111         my $query;
112         my @auths=split / /,$authtypecode ;
113         foreach my  $auth (@auths){
114             $query .="AND auth_type= $auth ";
115         }
116         $query =~ s/^AND //;
117         my $dosearch;
118         for(my $i = 0 ; $i <= $#{$value} ; $i++)
119         {
120             if (@$value[$i]){
121                 if (@$tags[$i] =~/mainentry|mainmainentry/) {
122                     $query .= qq( AND @$tags[$i] );
123                 } else {
124                     $query .=" AND ";
125                 }
126                 if (@$operator[$i] eq 'is') {
127                     $query.=(@$tags[$i]?"=":""). '"'.@$value[$i].'"';
128                 }elsif (@$operator[$i] eq "="){
129                     $query.=(@$tags[$i]?"=":""). '"'.@$value[$i].'"';
130                 }elsif (@$operator[$i] eq "start"){
131                     $query.=(@$tags[$i]?"=":"").'"'.@$value[$i].'%"';
132                 } else {
133                     $query.=(@$tags[$i]?"=":"").'"'.@$value[$i].'%"';
134                 }
135                 $dosearch=1;
136             }#if value
137         }
138         #
139         # do the query (if we had some search term
140         #
141         if ($dosearch) {
142 #             warn "QUERY : $query";
143             my $result = C4::Search::NZanalyse($query,'authorityserver');
144 #             warn "result : $result";
145             my %result;
146             foreach (split /;/,$result) {
147                 my ($authid,$title) = split /,/,$_;
148                 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
149                 # and we don't want to get only 1 result for each of them !!!
150                 # hint & speed improvement : we can order without reading the record
151                 # so order, and read records only for the requested page !
152                 $result{$title.$authid}=$authid;
153             }
154             # sort the hash and return the same structure as GetRecords (Zebra querying)
155             my @listresult = ();
156             my $numbers=0;
157             if ($sortby eq 'HeadingDsc') { # sort by mainmainentry desc
158                 foreach my $key (sort {$b cmp $a} (keys %result)) {
159                     push @listresult, $result{$key};
160 #                     warn "push..."$#finalresult;
161                     $numbers++;
162                 }
163             } else { # sort by mainmainentry ASC
164                 foreach my $key (sort (keys %result)) {
165                     push @listresult, $result{$key};
166 #                     warn "push..."$#finalresult;
167                     $numbers++;
168                 }
169             }
170             # limit the $results_per_page to result size if it's more
171             $length = $numbers-$offset if $numbers < ($offset+$length);
172             # for the requested page, replace authid by the complete record
173             # speed improvement : avoid reading too much things
174             my @finalresult;      
175             for (my $counter=$offset;$counter<=$offset+$length-1;$counter++) {
176 #                 $finalresult[$counter] = GetAuthority($finalresult[$counter])->as_usmarc;
177                 my $separator=C4::Context->preference('authoritysep');
178                 my $authrecord =GetAuthority($listresult[$counter]);
179                 my $authid=$listresult[$counter]; 
180                 my $summary=BuildSummary($authrecord,$authid,$authtypecode);
181                 my $query_auth_tag = "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
182                 my $sth = $dbh->prepare($query_auth_tag);
183                 $sth->execute($authtypecode);
184                 my $auth_tag_to_report = $sth->fetchrow;
185                 my %newline;
186                 $newline{used}=CountUsage($authid);
187                 $newline{summary} = $summary;
188                 $newline{authid} = $authid;
189                 $newline{even} = $counter % 2;
190                 push @finalresult, \%newline;
191             }
192             return (\@finalresult, $numbers);
193         } else {
194             return;
195         }
196     } else {
197         my $query;
198         my $attr;
199             # the marclist may contain "mainentry". In this case, search the tag_to_report, that depends on
200             # the authtypecode. Then, search on $a of this tag_to_report
201             # also store main entry MARC tag, to extract it at end of search
202         my $mainentrytag;
203         ##first set the authtype search and may be multiple authorities
204         my $n=0;
205         my @authtypecode;
206         my @auths=split / /,$authtypecode ;
207         foreach my  $auth (@auths){
208             $query .=" \@attr 1=authtype \@attr 5=100 ".$auth; ##No truncation on authtype
209             push @authtypecode ,$auth;
210             $n++;
211         }
212         if ($n>1){
213             while ($n>1){$query= "\@or ".$query;$n--;}
214         }
215         
216         my $and=" \@and " ;
217         my $q2="";
218         for(my $i = 0 ; $i <= $#{$value} ; $i++)
219         {
220             if (@$value[$i]){
221             ##If mainentry search $a tag
222                 if (@$tags[$i] eq "mainmainentry") {
223                 $attr =" \@attr 1=Heading-Main ";
224                 }elsif (@$tags[$i] eq "mainentry") {
225                 $attr =" \@attr 1=Heading ";
226                 }else{
227                 $attr =" \@attr 1=Any ";
228                 }
229                 if (@$operator[$i] eq 'is') {
230                     $attr.=" \@attr 4=1  \@attr 5=100 ";##Phrase, No truncation,all of subfield field must match
231                 }elsif (@$operator[$i] eq "="){
232                     $attr.=" \@attr 4=107 ";           #Number Exact match
233                 }elsif (@$operator[$i] eq "start"){
234                     $attr.=" \@attr 3=2 \@attr 4=1 \@attr 5=1 ";#Firstinfield Phrase, Right truncated
235                 } else {
236                     $attr .=" \@attr 5=1 \@attr 4=6 ";## Word list, right truncated, anywhere
237                 }
238                 $attr =$attr."\"".@$value[$i]."\"";
239                 $q2 =($q2 ne "" ?$and.$q2.$attr:$attr);
240             }#if value
241         }
242         ##Add how many queries generated
243         if ($query=~/\S+/ && $q2 ne ""){    
244           $query= $and.$query.$q2;
245         } 
246         elsif ($q2 ne "") {
247           $query=$q2;
248         }
249         ## Adding order
250         #$query=' @or  @attr 7=2 @attr 1=Heading 0 @or  @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
251         my $orderstring= ($sortby eq "HeadingAsc"?
252                            '@attr 7=1 @attr 1=Heading 0'
253                          :
254                            $sortby eq "HeadingDsc"?      
255                             '@attr 7=2 @attr 1=Heading 0'
256                            :''
257                         );            
258         my  $allrecords=" \@attr 1=_ALLRECORDS \@attr 2=103 '' ";
259         $query=($q2?"\@or $orderstring $query":"\@or $orderstring ".($query?"\@and $allrecords $query":$allrecords) );
260         
261         $offset=0 unless $offset;
262         my $counter = $offset;
263         $length=10 unless $length;
264         my @oAuth;
265         my $i;
266         $oAuth[0]=C4::Context->Zconn("authorityserver" , 1);
267         my $Anewq= new ZOOM::Query::PQF($query,$oAuth[0]);
268         my $oAResult;
269         $oAResult= $oAuth[0]->search($Anewq) ; 
270         while (($i = ZOOM::event(\@oAuth)) != 0) {
271             my $ev = $oAuth[$i-1]->last_event();
272             last if $ev == ZOOM::Event::ZEND;
273         }
274         my($error, $errmsg, $addinfo, $diagset) = $oAuth[0]->error_x();
275         if ($error) {
276             warn  "oAuth error: $errmsg ($error) $addinfo $diagset\n";
277             goto NOLUCK;
278         }
279         
280         my $nbresults;
281         $nbresults=$oAResult->size();
282         my $nremains=$nbresults;    
283         my @result = ();
284         my @finalresult = ();
285         
286         if ($nbresults>0){
287         
288         ##Find authid and linkid fields
289         ##we may be searching multiple authoritytypes.
290         ## FIXME this assumes that all authid and linkid fields are the same for all authority types
291         # my ($authidfield,$authidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.authid",$authtypecode[0]);
292         # my ($linkidfield,$linkidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.linkid",$authtypecode[0]);
293             while (($counter < $nbresults) && ($counter < ($offset + $length))) {
294             
295             ##Here we have to extract MARC record and $authid from ZEBRA AUTHORITIES
296             my $rec=$oAResult->record($counter);
297             my $marcdata=$rec->raw();
298             my $authrecord;
299             my $separator=C4::Context->preference('authoritysep');
300             $authrecord = MARC::File::USMARC::decode($marcdata);
301             my $authid=$authrecord->field('001')->data(); 
302             my $summary=BuildSummary($authrecord,$authid,$authtypecode);
303             my $query_auth_tag = "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
304             my $sth = $dbh->prepare($query_auth_tag);
305             $sth->execute($authtypecode);
306             my $auth_tag_to_report = $sth->fetchrow;
307             my $reported_tag;
308             my $mainentry = $authrecord->field($auth_tag_to_report);
309             if ($mainentry) {
310                 foreach ($mainentry->subfields()) {
311                     $reported_tag .='$'.$_->[0].$_->[1];
312                 }
313             }
314             my %newline;
315             $newline{summary} = $summary;
316             $newline{authid} = $authid;
317             $newline{even} = $counter % 2;
318             $newline{reported_tag} = $reported_tag;
319             $counter++;
320             push @finalresult, \%newline;
321             }## while counter
322         ###
323         for (my $z=0; $z<@finalresult; $z++){
324                 my  $count=CountUsage($finalresult[$z]{authid});
325                 $finalresult[$z]{used}=$count;
326         }# all $z's
327         
328         }## if nbresult
329         NOLUCK:
330         # $oAResult->destroy();
331         # $oAuth[0]->destroy();
332         
333         return (\@finalresult, $nbresults);
334     }
335 }
336
337 =head2 CountUsage 
338
339 =over 4
340
341 $count= &CountUsage($authid)
342 counts Usage of Authid in bibliorecords. 
343
344 =back
345
346 =cut
347
348 sub CountUsage {
349     my ($authid) = @_;
350     if (C4::Context->preference('NoZebra')) {
351         # Read the index Koha-Auth-Number for this authid and count the lines
352         my $result = C4::Search::NZanalyse("an=$authid");
353         my @tab = split /;/,$result;
354         return scalar @tab;
355     } else {
356         ### ZOOM search here
357         my $oConnection=C4::Context->Zconn("biblioserver",1);
358         my $query;
359         $query= "an=".$authid;
360         my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
361         my $result;
362         while ((my $i = ZOOM::event([ $oConnection ])) != 0) {
363             my $ev = $oConnection->last_event();
364             if ($ev == ZOOM::Event::ZEND) {
365                 $result = $oResult->size();
366             }
367         }
368         return ($result);
369     }
370 }
371
372 =head2 CountUsageChildren 
373
374 =over 4
375
376 $count= &CountUsageChildren($authid)
377 counts Usage of narrower terms of Authid in bibliorecords.
378
379 =back
380
381 =cut
382
383 sub CountUsageChildren {
384   my ($authid) = @_;
385 }
386
387 =head2 GetAuthTypeCode
388
389 =over 4
390
391 $authtypecode= &GetAuthTypeCode($authid)
392 returns authtypecode of an authid
393
394 =back
395
396 =cut
397
398 sub GetAuthTypeCode {
399 #AUTHfind_authtypecode
400   my ($authid) = @_;
401   my $dbh=C4::Context->dbh;
402   my $sth = $dbh->prepare("select authtypecode from auth_header where authid=?");
403   $sth->execute($authid);
404   my $authtypecode = $sth->fetchrow;
405   return $authtypecode;
406 }
407  
408 =head2 GetTagsLabels
409
410 =over 4
411
412 $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
413 returns a ref to hashref of authorities tag and subfield structure.
414
415 tagslabel usage : 
416 $tagslabel->{$tag}->{$subfield}->{'attribute'}
417 where attribute takes values in :
418   lib
419   tab
420   mandatory
421   repeatable
422   authorised_value
423   authtypecode
424   value_builder
425   kohafield
426   seealso
427   hidden
428   isurl
429   link
430
431 =back
432
433 =cut
434
435 sub GetTagsLabels {
436   my ($forlibrarian,$authtypecode)= @_;
437   my $dbh=C4::Context->dbh;
438   $authtypecode="" unless $authtypecode;
439   my $sth;
440   my $libfield = ($forlibrarian eq 1)? 'liblibrarian' : 'libopac';
441
442
443   # check that authority exists
444   $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
445   $sth->execute($authtypecode);
446   my ($total) = $sth->fetchrow;
447   $authtypecode="" unless ($total >0);
448   $sth= $dbh->prepare(
449 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable 
450  FROM auth_tag_structure 
451  WHERE authtypecode=? 
452  ORDER BY tagfield"
453     );
454
455   $sth->execute($authtypecode);
456   my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
457
458   while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
459         $res->{$tag}->{lib}        = ($forlibrarian or !$libopac)?$liblibrarian:$libopac;
460         $res->{$tag}->{tab}        = " ";            # XXX
461         $res->{$tag}->{mandatory}  = $mandatory;
462         $res->{$tag}->{repeatable} = $repeatable;
463   }
464   $sth=      $dbh->prepare(
465 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl 
466 FROM auth_subfield_structure 
467 WHERE authtypecode=? 
468 ORDER BY tagfield,tagsubfield"
469     );
470     $sth->execute($authtypecode);
471
472     my $subfield;
473     my $authorised_value;
474     my $value_builder;
475     my $kohafield;
476     my $seealso;
477     my $hidden;
478     my $isurl;
479     my $link;
480
481     while (
482         ( $tag,         $subfield,   $liblibrarian,   , $libopac,      $tab,
483         $mandatory,     $repeatable, $authorised_value, $authtypecode,
484         $value_builder, $kohafield,  $seealso,          $hidden,
485         $isurl,            $link )
486         = $sth->fetchrow
487       )
488     {
489         $res->{$tag}->{$subfield}->{lib}              = ($forlibrarian or !$libopac)?$liblibrarian:$libopac;
490         $res->{$tag}->{$subfield}->{tab}              = $tab;
491         $res->{$tag}->{$subfield}->{mandatory}        = $mandatory;
492         $res->{$tag}->{$subfield}->{repeatable}       = $repeatable;
493         $res->{$tag}->{$subfield}->{authorised_value} = $authorised_value;
494         $res->{$tag}->{$subfield}->{authtypecode}     = $authtypecode;
495         $res->{$tag}->{$subfield}->{value_builder}    = $value_builder;
496         $res->{$tag}->{$subfield}->{kohafield}        = $kohafield;
497         $res->{$tag}->{$subfield}->{seealso}          = $seealso;
498         $res->{$tag}->{$subfield}->{hidden}           = $hidden;
499         $res->{$tag}->{$subfield}->{isurl}            = $isurl;
500         $res->{$tag}->{$subfield}->{link}            = $link;
501     }
502     return $res;
503 }
504
505 =head2 AddAuthority
506
507 =over 4
508
509 $authid= &AddAuthority($record, $authid,$authtypecode)
510 returns authid of the newly created authority
511
512 Either Create Or Modify existing authority.
513
514 =back
515
516 =cut
517
518 sub AddAuthority {
519 # pass the MARC::Record to this function, and it will create the records in the authority table
520   my ($record,$authid,$authtypecode) = @_;
521   my $dbh=C4::Context->dbh;
522   my $leader='         a              ';##Fixme correct leader as this one just adds utf8 to MARC21
523
524 # if authid empty => true add, find a new authid number
525   my $format= 'UNIMARCAUTH' if (uc(C4::Context->preference('marcflavour')) eq 'UNIMARC');
526   $format= 'MARC21' if (uc(C4::Context->preference('marcflavour')) ne 'UNIMARC');
527   if (($format eq "UNIMARCAUTH") && (!$record->subfield('100','a'))){
528         $record->leader("     nx  j22             ");
529         my $date=POSIX::strftime("%Y%m%d",localtime);    
530         if ($record->field('100')){
531           $record->field('100')->update('a'=>$date."afrey50      ba0");
532         } else {      
533           $record->append_fields(
534             MARC::Field->new('100',' ',' '
535               ,'a'=>$date."afrey50      ba0")
536           );
537         }      
538   }
539   my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location($authtypecode);
540   if (!$authid and $format eq "MARC21") {
541     # only need to do this fix when modifying an existing authority
542     C4::AuthoritiesMarc::MARC21::fix_marc21_auth_type_location($record, $auth_type_tag, $auth_type_subfield);
543   } 
544   if (my $field=$record->field($auth_type_tag)){
545     $field->update($auth_type_subfield=>$authtypecode);
546   }
547   else {
548     $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode); 
549   }
550
551   my $auth_exists=0;
552   my $oldRecord;
553   if (!$authid) {
554     my $sth=$dbh->prepare("select max(authid) from auth_header");
555     $sth->execute;
556     ($authid)=$sth->fetchrow;
557     $authid=$authid+1;
558   ##Insert the recordID in MARC record 
559     unless ($record->field('001') && $record->field('001')->data() eq $authid){
560         $record->delete_field($record->field('001'));
561         $record->insert_fields_ordered(MARC::Field->new('001',$authid));
562     }
563   } else {
564     $auth_exists=$dbh->do(qq(select authid from auth_header where authid=?),undef,$authid);
565 #     warn "auth_exists = $auth_exists";
566   }
567   if ($auth_exists>0){
568       $oldRecord=GetAuthority($authid);
569       $record->add_fields('001',$authid) unless ($record->field('001'));
570 #       warn "\n\n\n enregistrement".$record->as_formatted;
571       my $sth=$dbh->prepare("update auth_header set authtypecode=?,marc=?,marcxml=? where authid=?");
572       $sth->execute($authtypecode,$record->as_usmarc,$record->as_xml_record($format),$authid) or die $sth->errstr;
573       $sth->finish;
574   }
575   else {
576     my $sth=$dbh->prepare("insert into auth_header (authid,datecreated,authtypecode,marc,marcxml) values (?,now(),?,?,?)");
577     $sth->execute($authid,$authtypecode,$record->as_usmarc,$record->as_xml_record($format));
578     $sth->finish;
579   }
580   ModZebra($authid,'specialUpdate',"authorityserver",$oldRecord,$record);
581   return ($authid);
582 }
583
584
585 =head2 DelAuthority
586
587 =over 4
588
589 $authid= &DelAuthority($authid)
590 Deletes $authid
591
592 =back
593
594 =cut
595
596
597 sub DelAuthority {
598     my ($authid) = @_;
599     my $dbh=C4::Context->dbh;
600
601     ModZebra($authid,"recordDelete","authorityserver",GetAuthority($authid),undef);
602     $dbh->do("delete from auth_header where authid=$authid") ;
603
604 }
605
606 sub ModAuthority {
607   my ($authid,$record,$authtypecode,$merge)=@_;
608   my $dbh=C4::Context->dbh;
609   #Now rewrite the $record to table with an add
610   my $oldrecord=GetAuthority($authid);
611   $authid=AddAuthority($record,$authid,$authtypecode);
612
613 ### If a library thinks that updating all biblios is a long process and wishes to leave that to a cron job to use merge_authotities.p
614 ### they should have a system preference "dontmerge=1" otherwise by default biblios will be updated
615 ### the $merge flag is now depreceated and will be removed at code cleaning
616   if (C4::Context->preference('MergeAuthoritiesOnUpdate') ){
617       &merge($authid,$oldrecord,$authid,$record);
618   } else {
619   # save the file in tmp/modified_authorities
620       my $cgidir = C4::Context->intranetdir ."/cgi-bin";
621       unless (opendir(DIR,"$cgidir")) {
622               $cgidir = C4::Context->intranetdir."/";
623               closedir(DIR);
624       }
625   
626       my $filename = $cgidir."/tmp/modified_authorities/$authid.authid";
627       open AUTH, "> $filename";
628       print AUTH $authid;
629       close AUTH;
630   }
631   return $authid;
632 }
633
634 =head2 GetAuthorityXML 
635
636 =over 4
637
638 $marcxml= &GetAuthorityXML( $authid)
639 returns xml form of record $authid
640
641 =back
642
643 =cut
644
645 sub GetAuthorityXML {
646   # Returns MARC::XML of the authority passed in parameter.
647   my ( $authid ) = @_;
648   my $format= 'UNIMARCAUTH' if (uc(C4::Context->preference('marcflavour')) eq 'UNIMARC');
649   $format= 'MARC21' if (uc(C4::Context->preference('marcflavour')) ne 'UNIMARC');
650   if ($format eq "MARC21") {
651     # for MARC21, call GetAuthority instead of
652     # getting the XML directly since we may
653     # need to fix up the location of the authority
654     # code -- note that this is reasonably safe
655     # because GetAuthorityXML is used only by the 
656     # indexing processes like zebraqueue_start.pl
657     my $record = GetAuthority($authid);
658     return $record->as_xml_record($format);
659   } else {
660     my $dbh=C4::Context->dbh;
661     my $sth = $dbh->prepare("select marcxml from auth_header where authid=? "  );
662     $sth->execute($authid);
663     my ($marcxml)=$sth->fetchrow;
664     return $marcxml;
665   }
666 }
667
668 =head2 GetAuthority 
669
670 =over 4
671
672 $record= &GetAuthority( $authid)
673 Returns MARC::Record of the authority passed in parameter.
674
675 =back
676
677 =cut
678
679 sub GetAuthority {
680     my ($authid)=@_;
681     my $dbh=C4::Context->dbh;
682     my $sth=$dbh->prepare("select authtypecode, marcxml from auth_header where authid=?");
683     $sth->execute($authid);
684     my ($authtypecode, $marcxml) = $sth->fetchrow;
685     my $record=eval {MARC::Record->new_from_xml(StripNonXmlChars($marcxml),'UTF-8',
686         (C4::Context->preference("marcflavour") eq "UNIMARC"?"UNIMARCAUTH":C4::Context->preference("marcflavour")))};
687     return undef if ($@);
688     $record->encoding('UTF-8');
689     if (C4::Context->preference("marcflavour") eq "MARC21") {
690       my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location($authtypecode);
691       C4::AuthoritiesMarc::MARC21::fix_marc21_auth_type_location($record, $auth_type_tag, $auth_type_subfield);
692     }
693     return ($record);
694 }
695
696 =head2 GetAuthType 
697
698 =over 4
699
700 $result = &GetAuthType($authtypecode)
701
702 =back
703
704 If the authority type specified by C<$authtypecode> exists,
705 returns a hashref of the type's fields.  If the type
706 does not exist, returns undef.
707
708 =cut
709
710 sub GetAuthType {
711     my ($authtypecode) = @_;
712     my $dbh=C4::Context->dbh;
713     my $sth;
714     if (defined $authtypecode){ # NOTE - in MARC21 framework, '' is a valid authority 
715                                 # type (FIXME but why?)
716         $sth=$dbh->prepare("select * from auth_types where authtypecode=?");
717         $sth->execute($authtypecode);
718         if (my $res = $sth->fetchrow_hashref) {
719             return $res; 
720         }
721     }
722     return;
723 }
724
725
726 sub AUTHhtml2marc {
727     my ($rtags,$rsubfields,$rvalues,%indicators) = @_;
728     my $dbh=C4::Context->dbh;
729     my $prevtag = -1;
730     my $record = MARC::Record->new();
731 #---- TODO : the leader is missing
732
733 #     my %subfieldlist=();
734     my $prevvalue; # if tag <10
735     my $field; # if tag >=10
736     for (my $i=0; $i< @$rtags; $i++) {
737         # rebuild MARC::Record
738         if (@$rtags[$i] ne $prevtag) {
739             if ($prevtag < 10) {
740                 if ($prevvalue) {
741                     $record->add_fields((sprintf "%03s",$prevtag),$prevvalue);
742                 }
743             } else {
744                 if ($field) {
745                     $record->add_fields($field);
746                 }
747             }
748             $indicators{@$rtags[$i]}.='  ';
749             if (@$rtags[$i] <10) {
750                 $prevvalue= @$rvalues[$i];
751                 undef $field;
752             } else {
753                 undef $prevvalue;
754                 $field = MARC::Field->new( (sprintf "%03s",@$rtags[$i]), substr($indicators{@$rtags[$i]},0,1),substr($indicators{@$rtags[$i]},1,1), @$rsubfields[$i] => @$rvalues[$i]);
755             }
756             $prevtag = @$rtags[$i];
757         } else {
758             if (@$rtags[$i] <10) {
759                 $prevvalue=@$rvalues[$i];
760             } else {
761                 if (length(@$rvalues[$i])>0) {
762                     $field->add_subfields(@$rsubfields[$i] => @$rvalues[$i]);
763                 }
764             }
765             $prevtag= @$rtags[$i];
766         }
767     }
768     # the last has not been included inside the loop... do it now !
769     $record->add_fields($field) if $field;
770     return $record;
771 }
772
773 =head2 FindDuplicateAuthority
774
775 =over 4
776
777 $record= &FindDuplicateAuthority( $record, $authtypecode)
778 return $authid,Summary if duplicate is found.
779
780 Comments : an improvement would be to return All the records that match.
781
782 =back
783
784 =cut
785
786 sub FindDuplicateAuthority {
787
788     my ($record,$authtypecode)=@_;
789 #    warn "IN for ".$record->as_formatted;
790     my $dbh = C4::Context->dbh;
791 #    warn "".$record->as_formatted;
792     my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
793     $sth->execute($authtypecode);
794     my ($auth_tag_to_report) = $sth->fetchrow;
795     $sth->finish;
796 #     warn "record :".$record->as_formatted."  auth_tag_to_report :$auth_tag_to_report";
797     # build a request for SearchAuthorities
798     my $query='at='.$authtypecode.' ';
799     my $filtervalues=qr([\001-\040\!\'\"\`\#\$\%\&\*\+,\-\./:;<=>\?\@\(\)\{\[\]\}_\|\~]);
800     if ($record->field($auth_tag_to_report)) {
801       foreach ($record->field($auth_tag_to_report)->subfields()) {
802         $_->[1]=~s/$filtervalues/ /g; $query.= " and he,wrdl=\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/);
803       }
804     }
805     my ($error, $results, $total_hits)=SimpleSearch( $query, 0, 1, [ "authorityserver" ] );
806     # there is at least 1 result => return the 1st one
807     if (@$results>0) {
808       my $marcrecord = MARC::File::USMARC::decode($results->[0]);
809       return $marcrecord->field('001')->data,BuildSummary($marcrecord,$marcrecord->field('001')->data,$authtypecode);
810     }
811     # no result, returns nothing
812     return;
813 }
814
815 =head2 BuildSummary
816
817 =over 4
818
819 $text= &BuildSummary( $record, $authid, $authtypecode)
820 return HTML encoded Summary
821
822 Comment : authtypecode can be infered from both record and authid.
823 Moreover, authid can also be inferred from $record.
824 Would it be interesting to delete those things.
825
826 =back
827
828 =cut
829
830 sub BuildSummary{
831 ## give this a Marc record to return summary
832   my ($record,$authid,$authtypecode)=@_;
833   my $dbh=C4::Context->dbh;
834   my $summary;
835   # handle $authtypecode is NULL or eq ""
836   if ($authtypecode) {
837         my $authref = GetAuthType($authtypecode);
838         $summary = $authref->{summary};
839   }
840   # FIXME: should use I18N.pm
841   my %language;
842   $language{'fre'}="Français";
843   $language{'eng'}="Anglais";
844   $language{'ger'}="Allemand";
845   $language{'ita'}="Italien";
846   $language{'spa'}="Espagnol";
847   my %thesaurus;
848   $thesaurus{'1'}="Peuples";
849   $thesaurus{'2'}="Anthroponymes";
850   $thesaurus{'3'}="Oeuvres";
851   $thesaurus{'4'}="Chronologie";
852   $thesaurus{'5'}="Lieux";
853   $thesaurus{'6'}="Sujets";
854   #thesaurus a remplir
855   my @fields = $record->fields();
856   my $reported_tag;
857   # if the library has a summary defined, use it. Otherwise, build a standard one
858   # FIXME - it appears that the summary field in the authority frameworks
859   #         can work as a display template.  However, this doesn't
860   #         suit the MARC21 version, so for now the "templating"
861   #         feature will be enabled only for UNIMARC for backwards
862   #         compatibility.
863   if ($summary and C4::Context->preference('marcflavour') eq 'UNIMARC') {
864     my @fields = $record->fields();
865     #             $reported_tag = '$9'.$result[$counter];
866     foreach my $field (@fields) {
867       my $tag = $field->tag();
868       my $tagvalue = $field->as_string();
869       $summary =~ s/\[(.?.?.?.?)$tag\*(.*?)]/$1$tagvalue$2\[$1$tag$2]/g;
870       if ($tag<10) {
871         if ($tag eq '001') {
872           $reported_tag.='$3'.$field->data();
873         }
874       } else {
875         my @subf = $field->subfields;
876         for my $i (0..$#subf) {
877           my $subfieldcode = $subf[$i][0];
878           my $subfieldvalue = $subf[$i][1];
879           my $tagsubf = $tag.$subfieldcode;
880           $summary =~ s/\[(.?.?.?.?)$tagsubf(.*?)]/$1$subfieldvalue$2\[$1$tagsubf$2]/g;
881         }
882       }
883     }
884     $summary =~ s/\[(.*?)]//g;
885     $summary =~ s/\n/<br>/g;
886   } else {
887     my $heading; 
888     my $authid; 
889     my $altheading;
890     my $seealso;
891     my $broaderterms;
892     my $narrowerterms;
893     my $see;
894     my $seeheading;
895         my $notes;
896     my @fields = $record->fields();
897     if (C4::Context->preference('marcflavour') eq 'UNIMARC') {
898     # construct UNIMARC summary, that is quite different from MARC21 one
899       # accepted form
900       foreach my $field ($record->field('2..')) {
901         $heading.= $field->subfield('a');
902                 $authid=$field->subfield('3');
903       }
904       # rejected form(s)
905       foreach my $field ($record->field('3..')) {
906         $notes.= '<span class="note">'.$field->subfield('a')."</span>\n";
907       }
908       foreach my $field ($record->field('4..')) {
909         my $thesaurus = "thes. : ".$thesaurus{"$field->subfield('2')"}." : " if ($field->subfield('2'));
910         $see.= '<span class="UF">'.$thesaurus.$field->subfield('a')."</span> -- \n";
911       }
912       # see :
913       foreach my $field ($record->field('5..')) {
914             
915         if (($field->subfield('5')) && ($field->subfield('a')) && ($field->subfield('5') eq 'g')) {
916           $broaderterms.= '<span class="BT"> <a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
917         } elsif (($field->subfield('5')) && ($field->subfield('a')) && ($field->subfield('5') eq 'h')){
918           $narrowerterms.= '<span class="NT"><a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
919         } elsif ($field->subfield('a')) {
920           $seealso.= '<span class="RT"><a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
921         }
922       }
923       # // form
924       foreach my $field ($record->field('7..')) {
925         my $lang = substr($field->subfield('8'),3,3);
926         $seeheading.= '<span class="langue"> En '.$language{$lang}.' : </span><span class="OT"> '.$field->subfield('a')."</span><br />\n";  
927       }
928             $broaderterms =~s/-- \n$//;
929             $narrowerterms =~s/-- \n$//;
930             $seealso =~s/-- \n$//;
931             $see =~s/-- \n$//;
932       $summary = "<b><a href=\"detail.pl?authid=$authid\">".$heading."</a></b><br />".($notes?"$notes <br />":"");
933       $summary.= '<p><div class="label">TG : '.$broaderterms.'</div></p>' if ($broaderterms);
934       $summary.= '<p><div class="label">TS : '.$narrowerterms.'</div></p>' if ($narrowerterms);
935       $summary.= '<p><div class="label">TA : '.$seealso.'</div></p>' if ($seealso);
936       $summary.= '<p><div class="label">EP : '.$see.'</div></p>' if ($see);
937       $summary.= '<p><div class="label">'.$seeheading.'</div></p>' if ($seeheading);
938       } else {
939       # construct MARC21 summary
940           # FIXME - looping over 1XX is questionable
941           # since MARC21 authority should have only one 1XX
942           foreach my $field ($record->field('1..')) {
943               next if "152" eq $field->tag(); # FIXME - 152 is not a good tag to use
944                                               # in MARC21 -- purely local tags really ought to be
945                                               # 9XX
946               if ($record->field('100')) {
947                   $heading.= $field->as_string('abcdefghjklmnopqrstvxyz68');
948               } elsif ($record->field('110')) {
949                                       $heading.= $field->as_string('abcdefghklmnoprstvxyz68');
950               } elsif ($record->field('111')) {
951                                       $heading.= $field->as_string('acdefghklnpqstvxyz68');
952               } elsif ($record->field('130')) {
953                                       $heading.= $field->as_string('adfghklmnoprstvxyz68');
954               } elsif ($record->field('148')) {
955                                       $heading.= $field->as_string('abvxyz68');
956               } elsif ($record->field('150')) {
957           #    $heading.= $field->as_string('abvxyz68');
958           $heading.= $field->as_formatted();
959               my $tag=$field->tag();
960               $heading=~s /^$tag//g;
961               $heading =~s /\_/\$/g;
962               } elsif ($record->field('151')) {
963                                       $heading.= $field->as_string('avxyz68');
964               } elsif ($record->field('155')) {
965                                       $heading.= $field->as_string('abvxyz68');
966               } elsif ($record->field('180')) {
967                                       $heading.= $field->as_string('vxyz68');
968               } elsif ($record->field('181')) {
969                                       $heading.= $field->as_string('vxyz68');
970               } elsif ($record->field('182')) {
971                                       $heading.= $field->as_string('vxyz68');
972               } elsif ($record->field('185')) {
973                                       $heading.= $field->as_string('vxyz68');
974               } else {
975                   $heading.= $field->as_string();
976               }
977           } #See From
978           foreach my $field ($record->field('4..')) {
979               $seeheading.= "<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>used for/see from:</i> ".$field->as_string();
980           } #See Also
981           foreach my $field ($record->field('5..')) {
982               $altheading.= "<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>see also:</i> ".$field->as_string();
983           }
984           $summary .= ": " if $summary;
985           $summary.=$heading.$seeheading.$altheading;
986       }
987   }
988   return $summary;
989 }
990
991 =head2 BuildUnimarcHierarchies
992
993 =over 4
994
995 $text= &BuildUnimarcHierarchies( $authid, $force)
996 return text containing trees for hierarchies
997 for them to be stored in auth_header
998
999 Example of text:
1000 122,1314,2452;1324,2342,3,2452
1001
1002 =back
1003
1004 =cut
1005
1006 sub BuildUnimarcHierarchies{
1007   my $authid = shift @_;
1008 #   warn "authid : $authid";
1009   my $force = shift @_;
1010   my @globalresult;
1011   my $dbh=C4::Context->dbh;
1012   my $hierarchies;
1013   my $data = GetHeaderAuthority($authid);
1014   if ($data->{'authtrees'} and not $force){
1015     return $data->{'authtrees'};
1016   } elsif ($data->{'authtrees'}){
1017     $hierarchies=$data->{'authtrees'};
1018   } else {
1019     my $record = GetAuthority($authid);
1020     my $found;
1021     foreach my $field ($record->field('550')){
1022       if ($field->subfield('5') && $field->subfield('5') eq 'g'){
1023         my $parentrecord = GetAuthority($field->subfield('3'));
1024         my $localresult=$hierarchies;
1025         my $trees;
1026         $trees = BuildUnimarcHierarchies($field->subfield('3'));
1027         my @trees;
1028         if ($trees=~/;/){
1029            @trees = split(/;/,$trees);
1030         } else {
1031            push @trees, $trees;
1032         }
1033         foreach (@trees){
1034           $_.= ",$authid";
1035         }
1036         @globalresult = (@globalresult,@trees);
1037         $found=1;
1038       }
1039       $hierarchies=join(";",@globalresult);
1040     }
1041     #Unless there is no ancestor, I am alone.
1042     $hierarchies="$authid" unless ($hierarchies);
1043   }
1044   AddAuthorityTrees($authid,$hierarchies);
1045   return $hierarchies;
1046 }
1047
1048 =head2 BuildUnimarcHierarchy
1049
1050 =over 4
1051
1052 $ref= &BuildUnimarcHierarchy( $record, $class,$authid)
1053 return a hashref in order to display hierarchy for record and final Authid $authid
1054
1055 "loopparents"
1056 "loopchildren"
1057 "class"
1058 "loopauthid"
1059 "current_value"
1060 "value"
1061
1062 "ifparents"  
1063 "ifchildren" 
1064 Those two latest ones should disappear soon.
1065
1066 =back
1067
1068 =cut
1069
1070 sub BuildUnimarcHierarchy{
1071   my $record = shift @_;
1072   my $class = shift @_;
1073   my $authid_constructed = shift @_;
1074   my $authid=$record->subfield('250','3');
1075   my %cell;
1076   my $parents=""; my $children="";
1077   my (@loopparents,@loopchildren);
1078   foreach my $field ($record->field('550')){
1079     if ($field->subfield('5') && $field->subfield('a')){
1080       if ($field->subfield('5') eq 'h'){
1081         push @loopchildren, { "childauthid"=>$field->subfield('3'),"childvalue"=>$field->subfield('a')};
1082       }elsif ($field->subfield('5') eq 'g'){
1083         push @loopparents, { "parentauthid"=>$field->subfield('3'),"parentvalue"=>$field->subfield('a')};
1084       }
1085           # brothers could get in there with an else
1086     }
1087   }
1088   $cell{"ifparents"}=1 if (scalar(@loopparents)>0);
1089   $cell{"ifchildren"}=1 if (scalar(@loopchildren)>0);
1090   $cell{"loopparents"}=\@loopparents if (scalar(@loopparents)>0);
1091   $cell{"loopchildren"}=\@loopchildren if (scalar(@loopchildren)>0);
1092   $cell{"class"}=$class;
1093   $cell{"loopauthid"}=$authid;
1094   $cell{"current_value"} =1 if $authid eq $authid_constructed;
1095   $cell{"value"}=$record->subfield('250',"a");
1096   return \%cell;
1097 }
1098
1099 =head2 GetHeaderAuthority
1100
1101 =over 4
1102
1103 $ref= &GetHeaderAuthority( $authid)
1104 return a hashref in order auth_header table data
1105
1106 =back
1107
1108 =cut
1109
1110 sub GetHeaderAuthority{
1111   my $authid = shift @_;
1112   my $sql= "SELECT * from auth_header WHERE authid = ?";
1113   my $dbh=C4::Context->dbh;
1114   my $rq= $dbh->prepare($sql);
1115   $rq->execute($authid);
1116   my $data= $rq->fetchrow_hashref;
1117   return $data;
1118 }
1119
1120 =head2 AddAuthorityTrees
1121
1122 =over 4
1123
1124 $ref= &AddAuthorityTrees( $authid, $trees)
1125 return success or failure
1126
1127 =back
1128
1129 =cut
1130
1131 sub AddAuthorityTrees{
1132   my $authid = shift @_;
1133   my $trees = shift @_;
1134   my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1135   my $dbh=C4::Context->dbh;
1136   my $rq= $dbh->prepare($sql);
1137   return $rq->execute($trees,$authid);
1138 }
1139
1140 =head2 merge
1141
1142 =over 4
1143
1144 $ref= &merge(mergefrom,$MARCfrom,$mergeto,$MARCto)
1145
1146
1147 Could add some feature : Migrating from a typecode to an other for instance.
1148 Then we should add some new parameter : bibliotargettag, authtargettag
1149
1150 =back
1151
1152 =cut
1153
1154 sub merge {
1155     my ($mergefrom,$MARCfrom,$mergeto,$MARCto) = @_;
1156     my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0);        
1157     my $dbh=C4::Context->dbh;
1158     my $authtypecodefrom = GetAuthTypeCode($mergefrom);
1159     my $authtypecodeto = GetAuthTypeCode($mergeto);
1160 #     warn "mergefrom : $authtypecodefrom $mergefrom mergeto : $authtypecodeto $mergeto ";
1161     # return if authority does not exist
1162     my @X = $MARCfrom->fields();
1163     return "error MARCFROM not a marcrecord ".Data::Dumper::Dumper($MARCfrom) if $#X == -1;
1164     my @X = $MARCto->fields();
1165     return "error MARCTO not a marcrecord".Data::Dumper::Dumper($MARCto) if $#X == -1;
1166     # search the tag to report
1167     my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
1168     $sth->execute($authtypecodefrom);
1169     my ($auth_tag_to_report_from) = $sth->fetchrow;
1170     $sth->execute($authtypecodeto);
1171     my ($auth_tag_to_report_to) = $sth->fetchrow;
1172     
1173     my @record_to;
1174     @record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $MARCto->field($auth_tag_to_report_to);
1175     my @record_from;
1176     @record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $MARCfrom->field($auth_tag_to_report_from);
1177     
1178     my @reccache;
1179     # search all biblio tags using this authority.
1180     #Getting marcbiblios impacted by the change.
1181     if (C4::Context->preference('NoZebra')) {
1182         #nozebra way    
1183         my $dbh=C4::Context->dbh;
1184         my $rq=$dbh->prepare(qq(SELECT biblionumbers from nozebra where indexname="an" and server="biblioserver" and value="$mergefrom" ));
1185         $rq->execute;
1186         while (my $biblionumbers=$rq->fetchrow){
1187             my @biblionumbers=split /;/,$biblionumbers;
1188             foreach (@biblionumbers) {
1189                 my $biblionumber=$1 if ($_=~/(\d+),.*/);
1190                 my $marc=GetMarcBiblio($biblionumber);        
1191                 push @reccache,$marc;        
1192             }
1193         }
1194     } else {
1195         #zebra connection  
1196         my $oConnection=C4::Context->Zconn("biblioserver",0);
1197         $oConnection->option("preferredRecordSyntax"=>"XML");
1198         my $query;
1199         $query= "an=".$mergefrom;
1200         my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1201         my $count=$oResult->size() if  ($oResult);
1202         my $z=0;
1203         while ( $z<$count ) {
1204             my $rec;
1205             $rec=$oResult->record($z);
1206             my $marcdata = $rec->raw();
1207             push @reccache, $marcdata;
1208         $z++;
1209         }
1210         $oConnection->destroy();    
1211     }
1212     #warn scalar(@reccache)." biblios to update";
1213     # Get All candidate Tags for the change 
1214     # (This will reduce the search scope in marc records).
1215     $sth = $dbh->prepare("select distinct tagfield from marc_subfield_structure where authtypecode=?");
1216     $sth->execute($authtypecodefrom);
1217     my @tags_using_authtype;
1218     while (my ($tagfield) = $sth->fetchrow) {
1219         push @tags_using_authtype,$tagfield ;
1220     }
1221     my $tag_to=0;  
1222     if ($authtypecodeto ne $authtypecodefrom){  
1223         # If many tags, take the first
1224         $sth->execute($authtypecodeto);    
1225         $tag_to=$sth->fetchrow;
1226         #warn $tag_to;    
1227     }  
1228     # BulkEdit marc records
1229     # May be used as a template for a bulkedit field  
1230     foreach my $marcrecord(@reccache){
1231         my $update;           
1232         $marcrecord= MARC::Record->new_from_xml($marcrecord,"utf8",C4::Context->preference("marcflavour")) unless(C4::Context->preference('NoZebra'));
1233         foreach my $tagfield (@tags_using_authtype){
1234 #             warn "tagfield : $tagfield ";
1235             foreach my $field ($marcrecord->field($tagfield)){
1236                 my $auth_number=$field->subfield("9");
1237                 my $tag=$field->tag();          
1238                 if ($auth_number==$mergefrom) {
1239                 my $field_to=MARC::Field->new(($tag_to?$tag_to:$tag),$field->indicator(1),$field->indicator(2),"9"=>$mergeto);
1240                 foreach my $subfield (@record_to) {
1241                     $field_to->add_subfields($subfield->[0] =>$subfield->[1]);
1242                 }
1243                 $marcrecord->delete_field($field);
1244                 $marcrecord->insert_grouped_field($field_to);            
1245                 $update=1;
1246                 }
1247             }#for each tag
1248         }#foreach tagfield
1249         my ($bibliotag,$bibliosubf) = GetMarcFromKohaField("biblio.biblionumber","") ;
1250         my $biblionumber;
1251         if ($bibliotag<10){
1252             $biblionumber=$marcrecord->field($bibliotag)->data;
1253         }
1254         else {
1255             $biblionumber=$marcrecord->subfield($bibliotag,$bibliosubf);
1256         }
1257         unless ($biblionumber){
1258             warn "pas de numéro de notice bibliographique dans : ".$marcrecord->as_formatted;
1259             next;
1260         }
1261         if ($update==1){
1262             &ModBiblio($marcrecord,$biblionumber,GetFrameworkCode($biblionumber)) ;
1263             $counteditedbiblio++;
1264             warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG});
1265         }    
1266     }#foreach $marc
1267     return $counteditedbiblio;  
1268   # now, find every other authority linked with this authority
1269   # now, find every other authority linked with this authority
1270 #   my $oConnection=C4::Context->Zconn("authorityserver");
1271 #   my $query;
1272 # # att 9210               Auth-Internal-authtype
1273 # # att 9220               Auth-Internal-LN
1274 # # ccl.properties to add for authorities
1275 #   $query= "= ".$mergefrom;
1276 #   my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1277 #   my $count=$oResult->size() if  ($oResult);
1278 #   my @reccache;
1279 #   my $z=0;
1280 #   while ( $z<$count ) {
1281 #   my $rec;
1282 #           $rec=$oResult->record($z);
1283 #       my $marcdata = $rec->raw();
1284 #   push @reccache, $marcdata;
1285 #   $z++;
1286 #   }
1287 #   $oResult->destroy();
1288 #   foreach my $marc(@reccache){
1289 #     my $update;
1290 #     my $marcrecord;
1291 #     $marcrecord = MARC::File::USMARC::decode($marc);
1292 #     foreach my $tagfield (@tags_using_authtype){
1293 #       $tagfield=substr($tagfield,0,3);
1294 #       my @tags = $marcrecord->field($tagfield);
1295 #       foreach my $tag (@tags){
1296 #         my $tagsubs=$tag->subfield("9");
1297 #     #warn "$tagfield:$tagsubs:$mergefrom";
1298 #         if ($tagsubs== $mergefrom) {
1299 #           $tag->update("9" =>$mergeto);
1300 #           foreach my $subfield (@record_to) {
1301 #     #        warn "$subfield,$subfield->[0],$subfield->[1]";
1302 #             $tag->update($subfield->[0] =>$subfield->[1]);
1303 #           }#for $subfield
1304 #         }
1305 #         $marcrecord->delete_field($tag);
1306 #         $marcrecord->add_fields($tag);
1307 #         $update=1;
1308 #       }#for each tag
1309 #     }#foreach tagfield
1310 #     my $authoritynumber = TransformMarcToKoha($dbh,$marcrecord,"") ;
1311 #     if ($update==1){
1312 #       &ModAuthority($marcrecord,$authoritynumber,GetAuthTypeCode($authoritynumber)) ;
1313 #     }
1314
1315 #   }#foreach $marc
1316 }#sub
1317
1318 =head2 get_auth_type_location
1319
1320 =over 4
1321
1322 my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1323
1324 =back
1325
1326 Get the tag and subfield used to store the heading type
1327 for indexing purposes.  The C<$auth_type> parameter is
1328 optional; if it is not supplied, assume ''.
1329
1330 This routine searches the MARC authority framework
1331 for the tag and subfield whose kohafield is 
1332 C<auth_header.authtypecode>; if no such field is
1333 defined in the framework, default to the hardcoded value
1334 specific to the MARC format.
1335
1336 =cut
1337
1338 sub get_auth_type_location {
1339     my $auth_type_code = @_ ? shift : '';
1340
1341     my ($tag, $subfield) = GetAuthMARCFromKohaField('auth_header.authtypecode', $auth_type_code);
1342     if (defined $tag and defined $subfield and $tag != 0 and $subfield != 0) {
1343         return ($tag, $subfield);
1344     } else {
1345         if (C4::Context->preference('marcflavour') eq "MARC21")  {
1346             return C4::AuthoritiesMarc::MARC21::default_auth_type_location();
1347         } else {
1348             return C4::AuthoritiesMarc::UNIMARC::default_auth_type_location();
1349         }
1350     }
1351 }
1352
1353 END { }       # module clean-up code here (global destructor)
1354
1355 1;
1356 __END__
1357
1358 =head1 AUTHOR
1359
1360 Koha Developement team <info@koha.org>
1361
1362 Paul POULAIN paul.poulain@free.fr
1363
1364 =cut
1365