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