Bug 9282: improve auto-completion for authority record finder
[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
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 use strict;
20 use warnings;
21 use C4::Context;
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 use C4::Log;
29 use Koha::Authority;
30
31 use vars qw($VERSION @ISA @EXPORT);
32
33 BEGIN {
34         # set the version for version checking
35     $VERSION = 3.07.00.049;
36
37         require Exporter;
38         @ISA = qw(Exporter);
39         @EXPORT = qw(
40             &GetTagsLabels
41             &GetAuthType
42             &GetAuthTypeCode
43         &GetAuthMARCFromKohaField 
44
45         &AddAuthority
46         &ModAuthority
47         &DelAuthority
48         &GetAuthority
49         &GetAuthorityXML
50
51         &CountUsage
52         &CountUsageChildren
53         &SearchAuthorities
54     
55         &BuildSummary
56         &BuildAuthHierarchies
57         &BuildAuthHierarchy
58         &GenerateHierarchy
59     
60         &merge
61         &FindDuplicateAuthority
62
63         &GuessAuthTypeCode
64         &GuessAuthId
65         );
66 }
67
68
69 =head1 NAME
70
71 C4::AuthoritiesMarc
72
73 =head2 GetAuthMARCFromKohaField 
74
75   ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
76
77 returns tag and subfield linked to kohafield
78
79 Comment :
80 Suppose Kohafield is only linked to ONE subfield
81
82 =cut
83
84 sub GetAuthMARCFromKohaField {
85 #AUTHfind_marc_from_kohafield
86   my ( $kohafield,$authtypecode ) = @_;
87   my $dbh=C4::Context->dbh;
88   return 0, 0 unless $kohafield;
89   $authtypecode="" unless $authtypecode;
90   my $marcfromkohafield;
91   my $sth = $dbh->prepare("select tagfield,tagsubfield from auth_subfield_structure where kohafield= ? and authtypecode=? ");
92   $sth->execute($kohafield,$authtypecode);
93   my ($tagfield,$tagsubfield) = $sth->fetchrow;
94     
95   return  ($tagfield,$tagsubfield);
96 }
97
98 =head2 SearchAuthorities 
99
100   (\@finalresult, $nbresults)= &SearchAuthorities($tags, $and_or, 
101      $excluding, $operator, $value, $offset,$length,$authtypecode,
102      $sortby[, $skipmetadata])
103
104 returns ref to array result and count of results returned
105
106 =cut
107
108 sub SearchAuthorities {
109     my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby,$skipmetadata) = @_;
110     # warn Dumper($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby);
111     my $dbh=C4::Context->dbh;
112     my $query;
113     my $qpquery = '';
114     my $QParser;
115     $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser'));
116     my $attr = '';
117         # the marclist may contain "mainentry". In this case, search the tag_to_report, that depends on
118         # the authtypecode. Then, search on $a of this tag_to_report
119         # also store main entry MARC tag, to extract it at end of search
120     my $mainentrytag;
121     ##first set the authtype search and may be multiple authorities
122     if ($authtypecode) {
123         my $n=0;
124         my @authtypecode;
125         my @auths=split / /,$authtypecode ;
126         foreach my  $auth (@auths){
127             $query .=" \@attr 1=authtype \@attr 5=100 ".$auth; ##No truncation on authtype
128                 push @authtypecode ,$auth;
129             $n++;
130         }
131         if ($n>1){
132             while ($n>1){$query= "\@or ".$query;$n--;}
133         }
134         if ($QParser) {
135             $qpquery .= '(authtype:' . join('|| authtype:', @auths) . ')';
136         }
137     }
138
139     my $dosearch;
140     my $and=" \@and " ;
141     my $q2;
142     my $attr_cnt = 0;
143     for(my $i = 0 ; $i <= $#{$value} ; $i++)
144     {
145         if (@$value[$i]){
146             if ( @$tags[$i] eq "mainmainentry" ) {
147                 $attr = " \@attr 1=Heading-Main ";
148             }
149             elsif ( @$tags[$i] eq "mainentry" ) {
150                 $attr = " \@attr 1=Heading ";
151             }
152             elsif ( @$tags[$i] eq "match" ) {
153                 $attr = " \@attr 1=Match ";
154             }
155             elsif ( @$tags[$i] eq "match-heading" ) {
156                 $attr = " \@attr 1=Match-heading ";
157             }
158             elsif ( @$tags[$i] eq "see-from" ) {
159                 $attr = " \@attr 1=Match-heading-see-from ";
160             }
161             elsif ( @$tags[$i] eq "thesaurus" ) {
162                 $attr = " \@attr 1=Subject-heading-thesaurus ";
163             }
164             else { # Assume any if no index was specified
165                 $attr = " \@attr 1=Any ";
166             }
167             if ( @$operator[$i] eq 'is' ) {
168                 $attr .= " \@attr 4=1  \@attr 5=100 "
169                   ; ##Phrase, No truncation,all of subfield field must match
170             }
171             elsif ( @$operator[$i] eq "=" ) {
172                 $attr .= " \@attr 4=107 ";    #Number Exact match
173             }
174             elsif ( @$operator[$i] eq "start" ) {
175                 $attr .= " \@attr 3=2 \@attr 4=1 \@attr 5=1 "
176                   ;    #Firstinfield Phrase, Right truncated
177             }
178             elsif ( @$operator[$i] eq "exact" ) {
179                 $attr .= " \@attr 4=1  \@attr 5=100 \@attr 6=3 "
180                   ; ##Phrase, No truncation,all of subfield field must match
181             }
182             else {
183                 $attr .= " \@attr 5=1 \@attr 4=6 "
184                   ;    ## Word list, right truncated, anywhere
185                   if ($sortby eq 'Relevance') {
186                       $attr .= "\@attr 2=102 ";
187                   }
188             }
189             @$value[$i] =~ s/"/\\"/g; # Escape the double-quotes in the search value
190             $attr =$attr."\"".@$value[$i]."\"";
191             $q2 .=$attr;
192             $dosearch=1;
193             ++$attr_cnt;
194             if ($QParser) {
195                 $qpquery .= " $tags->[$i]:\"$value->[$i]\"";
196             }
197         }#if value
198     }
199     ##Add how many queries generated
200     if (defined $query && $query=~/\S+/){
201       $query= $and x $attr_cnt . $query . (defined $q2 ? $q2 : '');
202     } else {
203       $query= $q2;
204     }
205     ## Adding order
206     #$query=' @or  @attr 7=2 @attr 1=Heading 0 @or  @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
207     my $orderstring;
208     if ($sortby eq 'HeadingAsc') {
209         $orderstring = '@attr 7=1 @attr 1=Heading 0';
210     } elsif ($sortby eq 'HeadingDsc') {
211         $orderstring = '@attr 7=2 @attr 1=Heading 0';
212     } elsif ($sortby eq 'AuthidAsc') {
213         $orderstring = '@attr 7=1 @attr 4=109 @attr 1=Local-Number 0';
214     } elsif ($sortby eq 'AuthidDsc') {
215         $orderstring = '@attr 7=2 @attr 4=109 @attr 1=Local-Number 0';
216     }
217     if ($QParser) {
218         $qpquery .= ' all:all' unless $value->[0];
219
220         if ( $value->[0] =~ m/^qp=(.*)$/ ) {
221             $qpquery = $1;
222         }
223
224         $qpquery .= " #$sortby";
225
226         $QParser->parse( $qpquery );
227         $query = $QParser->target_syntax('authorityserver');
228     } else {
229         $query=($query?$query:"\@attr 1=_ALLRECORDS \@attr 2=103 ''");
230         $query="\@or $orderstring $query" if $orderstring;
231     }
232
233     $offset=0 unless $offset;
234     my $counter = $offset;
235     $length=10 unless $length;
236     my @oAuth;
237     my $i;
238     $oAuth[0]=C4::Context->Zconn("authorityserver" , 1);
239     my $Anewq= new ZOOM::Query::PQF($query,$oAuth[0]);
240     my $oAResult;
241     $oAResult= $oAuth[0]->search($Anewq) ;
242     while (($i = ZOOM::event(\@oAuth)) != 0) {
243         my $ev = $oAuth[$i-1]->last_event();
244         last if $ev == ZOOM::Event::ZEND;
245     }
246     my($error, $errmsg, $addinfo, $diagset) = $oAuth[0]->error_x();
247     if ($error) {
248         warn  "oAuth error: $errmsg ($error) $addinfo $diagset\n";
249         goto NOLUCK;
250     }
251
252     my $nbresults;
253     $nbresults=$oAResult->size();
254     my $nremains=$nbresults;
255     my @result = ();
256     my @finalresult = ();
257
258     if ($nbresults>0){
259
260     ##Find authid and linkid fields
261     ##we may be searching multiple authoritytypes.
262     ## FIXME this assumes that all authid and linkid fields are the same for all authority types
263     # my ($authidfield,$authidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.authid",$authtypecode[0]);
264     # my ($linkidfield,$linkidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.linkid",$authtypecode[0]);
265         while (($counter < $nbresults) && ($counter < ($offset + $length))) {
266         
267         ##Here we have to extract MARC record and $authid from ZEBRA AUTHORITIES
268         my $rec=$oAResult->record($counter);
269         my $marcdata=$rec->raw();
270         my $authrecord;
271         my $separator=C4::Context->preference('authoritysep');
272         $authrecord = MARC::File::USMARC::decode($marcdata);
273         my $authid=$authrecord->field('001')->data();
274         my %newline;
275         $newline{authid} = $authid;
276         if ( !$skipmetadata ) {
277             my $summary =
278               BuildSummary( $authrecord, $authid, $authtypecode );
279             my $query_auth_tag =
280 "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
281             my $sth = $dbh->prepare($query_auth_tag);
282             $sth->execute($authtypecode);
283             my $auth_tag_to_report = $sth->fetchrow;
284             my $reported_tag;
285             my $mainentry = $authrecord->field($auth_tag_to_report);
286             if ($mainentry) {
287
288                 foreach ( $mainentry->subfields() ) {
289                     $reported_tag .= '$' . $_->[0] . $_->[1];
290                 }
291             }
292             my $thisauthtype = GetAuthType(GetAuthTypeCode($authid));
293             unless (defined $thisauthtype) {
294                 $thisauthtype = GetAuthType($authtypecode) if $authtypecode;
295             }
296             $newline{authtype}     = defined($thisauthtype) ?
297                                         $thisauthtype->{'authtypetext'} : '';
298             $newline{summary}      = $summary;
299             $newline{even}         = $counter % 2;
300             $newline{reported_tag} = $reported_tag;
301         }
302         $counter++;
303         push @finalresult, \%newline;
304         }## while counter
305         ###
306         if (! $skipmetadata) {
307             for (my $z=0; $z<@finalresult; $z++){
308                 my  $count=CountUsage($finalresult[$z]{authid});
309                 $finalresult[$z]{used}=$count;
310             }# all $z's
311         }
312
313     }## if nbresult
314     NOLUCK:
315     $oAResult->destroy();
316     # $oAuth[0]->destroy();
317
318     return (\@finalresult, $nbresults);
319 }
320
321 =head2 CountUsage 
322
323   $count= &CountUsage($authid)
324
325 counts Usage of Authid in bibliorecords. 
326
327 =cut
328
329 sub CountUsage {
330     my ($authid) = @_;
331         ### ZOOM search here
332         my $query;
333         $query= "an:".$authid;
334                 my ($err,$res,$result) = C4::Search::SimpleSearch($query,0,10);
335         if ($err) {
336             warn "Error: $err from search $query";
337             $result = 0;
338         }
339
340         return $result;
341 }
342
343 =head2 CountUsageChildren 
344
345   $count= &CountUsageChildren($authid)
346
347 counts Usage of narrower terms of Authid in bibliorecords.
348
349 =cut
350
351 sub CountUsageChildren {
352   my ($authid) = @_;
353 }
354
355 =head2 GetAuthTypeCode
356
357   $authtypecode= &GetAuthTypeCode($authid)
358
359 returns authtypecode of an authid
360
361 =cut
362
363 sub GetAuthTypeCode {
364 #AUTHfind_authtypecode
365   my ($authid) = @_;
366   my $dbh=C4::Context->dbh;
367   my $sth = $dbh->prepare("select authtypecode from auth_header where authid=?");
368   $sth->execute($authid);
369   my $authtypecode = $sth->fetchrow;
370   return $authtypecode;
371 }
372  
373 =head2 GuessAuthTypeCode
374
375   my $authtypecode = GuessAuthTypeCode($record);
376
377 Get the record and tries to guess the adequate authtypecode from its content.
378
379 =cut
380
381 sub GuessAuthTypeCode {
382     my ($record, $heading_fields) = @_;
383     return unless defined $record;
384     $heading_fields //= {
385     "MARC21"=>{
386         '100'=>{authtypecode=>'PERSO_NAME'},
387         '110'=>{authtypecode=>'CORPO_NAME'},
388         '111'=>{authtypecode=>'MEETI_NAME'},
389         '130'=>{authtypecode=>'UNIF_TITLE'},
390         '148'=>{authtypecode=>'CHRON_TERM'},
391         '150'=>{authtypecode=>'TOPIC_TERM'},
392         '151'=>{authtypecode=>'GEOGR_NAME'},
393         '155'=>{authtypecode=>'GENRE/FORM'},
394         '180'=>{authtypecode=>'GEN_SUBDIV'},
395         '181'=>{authtypecode=>'GEO_SUBDIV'},
396         '182'=>{authtypecode=>'CHRON_SUBD'},
397         '185'=>{authtypecode=>'FORM_SUBD'},
398     },
399 #200 Personal name      700, 701, 702 4-- with embedded 700, 701, 702 600
400 #                    604 with embedded 700, 701, 702
401 #210 Corporate or meeting name  710, 711, 712 4-- with embedded 710, 711, 712 601 604 with embedded 710, 711, 712
402 #215 Territorial or geographic name     710, 711, 712 4-- with embedded 710, 711, 712 601, 607 604 with embedded 710, 711, 712
403 #216 Trademark  716 [Reserved for future use]
404 #220 Family name        720, 721, 722 4-- with embedded 720, 721, 722 602 604 with embedded 720, 721, 722
405 #230 Title      500 4-- with embedded 500 605
406 #240 Name and title (embedded 200, 210, 215, or 220 and 230)    4-- with embedded 7-- and 500 7--  604 with embedded 7-- and 500 500
407 #245 Name and collective title (embedded 200, 210, 215, or 220 and 235)         4-- with embedded 7-- and 501 604 with embedded 7-- and 501 7-- 501
408 #250 Topical subject    606
409 #260 Place access       620
410 #280 Form, genre or physical characteristics    608
411 #
412 #
413 # Could also be represented with :
414 #leader position 9
415 #a = personal name entry
416 #b = corporate name entry
417 #c = territorial or geographical name
418 #d = trademark
419 #e = family name
420 #f = uniform title
421 #g = collective uniform title
422 #h = name/title
423 #i = name/collective uniform title
424 #j = topical subject
425 #k = place access
426 #l = form, genre or physical characteristics
427     "UNIMARC"=>{
428         '200'=>{authtypecode=>'NP'},
429         '210'=>{authtypecode=>'CO'},
430         '215'=>{authtypecode=>'SNG'},
431         '216'=>{authtypecode=>'TM'},
432         '220'=>{authtypecode=>'FAM'},
433         '230'=>{authtypecode=>'TU'},
434         '235'=>{authtypecode=>'CO_UNI_TI'},
435         '240'=>{authtypecode=>'SAUTTIT'},
436         '245'=>{authtypecode=>'NAME_COL'},
437         '250'=>{authtypecode=>'SNC'},
438         '260'=>{authtypecode=>'PA'},
439         '280'=>{authtypecode=>'GENRE/FORM'},
440     }
441 };
442     foreach my $field (keys %{$heading_fields->{uc(C4::Context->preference('marcflavour'))} }) {
443        return $heading_fields->{uc(C4::Context->preference('marcflavour'))}->{$field}->{'authtypecode'} if (defined $record->field($field));
444     }
445     return;
446 }
447
448 =head2 GuessAuthId
449
450   my $authtid = GuessAuthId($record);
451
452 Get the record and tries to guess the adequate authtypecode from its content.
453
454 =cut
455
456 sub GuessAuthId {
457     my ($record) = @_;
458     return unless ($record && $record->field('001'));
459 #    my $authtypecode=GuessAuthTypeCode($record);
460 #    my ($tag,$subfield)=GetAuthMARCFromKohaField("auth_header.authid",$authtypecode);
461 #    if ($tag > 010) {return $record->subfield($tag,$subfield)}
462 #    else {return $record->field($tag)->data}
463     return $record->field('001')->data;
464 }
465
466 =head2 GetTagsLabels
467
468   $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
469
470 returns a ref to hashref of authorities tag and subfield structure.
471
472 tagslabel usage : 
473
474   $tagslabel->{$tag}->{$subfield}->{'attribute'}
475
476 where attribute takes values in :
477
478   lib
479   tab
480   mandatory
481   repeatable
482   authorised_value
483   authtypecode
484   value_builder
485   kohafield
486   seealso
487   hidden
488   isurl
489   link
490
491 =cut
492
493 sub GetTagsLabels {
494   my ($forlibrarian,$authtypecode)= @_;
495   my $dbh=C4::Context->dbh;
496   $authtypecode="" unless $authtypecode;
497   my $sth;
498   my $libfield = ($forlibrarian == 1)? 'liblibrarian' : 'libopac';
499
500
501   # check that authority exists
502   $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
503   $sth->execute($authtypecode);
504   my ($total) = $sth->fetchrow;
505   $authtypecode="" unless ($total >0);
506   $sth= $dbh->prepare(
507 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable 
508  FROM auth_tag_structure 
509  WHERE authtypecode=? 
510  ORDER BY tagfield"
511     );
512
513   $sth->execute($authtypecode);
514   my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
515
516   while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
517         $res->{$tag}->{lib}        = ($forlibrarian or !$libopac)?$liblibrarian:$libopac;
518         $res->{$tag}->{tab}        = " ";            # XXX
519         $res->{$tag}->{mandatory}  = $mandatory;
520         $res->{$tag}->{repeatable} = $repeatable;
521   }
522   $sth=      $dbh->prepare(
523 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl 
524 FROM auth_subfield_structure 
525 WHERE authtypecode=? 
526 ORDER BY tagfield,tagsubfield"
527     );
528     $sth->execute($authtypecode);
529
530     my $subfield;
531     my $authorised_value;
532     my $value_builder;
533     my $kohafield;
534     my $seealso;
535     my $hidden;
536     my $isurl;
537     my $link;
538
539     while (
540         ( $tag,         $subfield,   $liblibrarian,   , $libopac,      $tab,
541         $mandatory,     $repeatable, $authorised_value, $authtypecode,
542         $value_builder, $kohafield,  $seealso,          $hidden,
543         $isurl,            $link )
544         = $sth->fetchrow
545       )
546     {
547         $res->{$tag}->{$subfield}->{lib}              = ($forlibrarian or !$libopac)?$liblibrarian:$libopac;
548         $res->{$tag}->{$subfield}->{tab}              = $tab;
549         $res->{$tag}->{$subfield}->{mandatory}        = $mandatory;
550         $res->{$tag}->{$subfield}->{repeatable}       = $repeatable;
551         $res->{$tag}->{$subfield}->{authorised_value} = $authorised_value;
552         $res->{$tag}->{$subfield}->{authtypecode}     = $authtypecode;
553         $res->{$tag}->{$subfield}->{value_builder}    = $value_builder;
554         $res->{$tag}->{$subfield}->{kohafield}        = $kohafield;
555         $res->{$tag}->{$subfield}->{seealso}          = $seealso;
556         $res->{$tag}->{$subfield}->{hidden}           = $hidden;
557         $res->{$tag}->{$subfield}->{isurl}            = $isurl;
558         $res->{$tag}->{$subfield}->{link}            = $link;
559     }
560     return $res;
561 }
562
563 =head2 AddAuthority
564
565   $authid= &AddAuthority($record, $authid,$authtypecode)
566
567 Either Create Or Modify existing authority.
568 returns authid of the newly created authority
569
570 =cut
571
572 sub AddAuthority {
573 # pass the MARC::Record to this function, and it will create the records in the authority table
574   my ($record,$authid,$authtypecode) = @_;
575   my $dbh=C4::Context->dbh;
576         my $leader='     nz  a22     o  4500';#Leader for incomplete MARC21 record
577
578 # if authid empty => true add, find a new authid number
579     my $format;
580     if (uc(C4::Context->preference('marcflavour')) eq 'UNIMARC') {
581         $format= 'UNIMARCAUTH';
582     }
583     else {
584         $format= 'MARC21';
585     }
586
587     #update date/time to 005 for marc and unimarc
588     my $time=POSIX::strftime("%Y%m%d%H%M%S",localtime);
589     my $f5=$record->field('005');
590     if (!$f5) {
591       $record->insert_fields_ordered( MARC::Field->new('005',$time.".0") );
592     }
593     else {
594       $f5->update($time.".0");
595     }
596
597     SetUTF8Flag($record);
598         if ($format eq "MARC21") {
599                 if (!$record->leader) {
600                         $record->leader($leader);
601                 }
602                 if (!$record->field('003')) {
603                         $record->insert_fields_ordered(
604                                 MARC::Field->new('003',C4::Context->preference('MARCOrgCode'))
605                         );
606                 }
607                 my $date=POSIX::strftime("%y%m%d",localtime);
608                 if (!$record->field('008')) {
609             # Get a valid default value for field 008
610             my $default_008 = C4::Context->preference('MARCAuthorityControlField008');
611             if(!$default_008 or length($default_008)<34) {
612                 $default_008 = '|| aca||aabn           | a|a     d';
613             }
614             else {
615                 $default_008 = substr($default_008,0,34);
616             }
617
618             $record->insert_fields_ordered( MARC::Field->new('008',$date.$default_008) );
619                 }
620                 if (!$record->field('040')) {
621                  $record->insert_fields_ordered(
622         MARC::Field->new('040','','',
623                                 'a' => C4::Context->preference('MARCOrgCode'),
624                                 'c' => C4::Context->preference('MARCOrgCode')
625                                 ) 
626                         );
627     }
628         }
629
630   if ($format eq "UNIMARCAUTH") {
631         $record->leader("     nx  j22             ") unless ($record->leader());
632         my $date=POSIX::strftime("%Y%m%d",localtime);
633         my $defaultfield100 = C4::Context->preference('UNIMARCAuthorityField100');
634     if (my $string=$record->subfield('100',"a")){
635         $string=~s/fre50/frey50/;
636         $record->field('100')->update('a'=>$string);
637     }
638     elsif ($record->field('100')){
639           $record->field('100')->update('a'=>$date.$defaultfield100);
640     } else {      
641         $record->append_fields(
642         MARC::Field->new('100',' ',' '
643             ,'a'=>$date.$defaultfield100)
644         );
645     }      
646   }
647   my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location($authtypecode);
648   if (!$authid and $format eq "MARC21") {
649     # only need to do this fix when modifying an existing authority
650     C4::AuthoritiesMarc::MARC21::fix_marc21_auth_type_location($record, $auth_type_tag, $auth_type_subfield);
651   } 
652   if (my $field=$record->field($auth_type_tag)){
653     $field->update($auth_type_subfield=>$authtypecode);
654   }
655   else {
656     $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode); 
657   }
658
659   my $auth_exists=0;
660   my $oldRecord;
661   if (!$authid) {
662     my $sth=$dbh->prepare("select max(authid) from auth_header");
663     $sth->execute;
664     ($authid)=$sth->fetchrow;
665     $authid=$authid+1;
666   ##Insert the recordID in MARC record 
667     unless ($record->field('001') && $record->field('001')->data() eq $authid){
668         $record->delete_field($record->field('001'));
669         $record->insert_fields_ordered(MARC::Field->new('001',$authid));
670     }
671   } else {
672     $auth_exists=$dbh->do(qq(select authid from auth_header where authid=?),undef,$authid);
673 #     warn "auth_exists = $auth_exists";
674   }
675   if ($auth_exists>0){
676       $oldRecord=GetAuthority($authid);
677       $record->add_fields('001',$authid) unless ($record->field('001'));
678 #       warn "\n\n\n enregistrement".$record->as_formatted;
679       my $sth=$dbh->prepare("update auth_header set authtypecode=?,marc=?,marcxml=? where authid=?");
680       $sth->execute($authtypecode,$record->as_usmarc,$record->as_xml_record($format),$authid) or die $sth->errstr;
681       $sth->finish;
682   }
683   else {
684     my $sth=$dbh->prepare("insert into auth_header (authid,datecreated,authtypecode,marc,marcxml) values (?,now(),?,?,?)");
685     $sth->execute($authid,$authtypecode,$record->as_usmarc,$record->as_xml_record($format));
686     $sth->finish;
687     logaction( "AUTHORITIES", "ADD", $authid, "authority" ) if C4::Context->preference("AuthoritiesLog");
688   }
689   ModZebra($authid,'specialUpdate',"authorityserver",$oldRecord,$record);
690   return ($authid);
691 }
692
693
694 =head2 DelAuthority
695
696   $authid= &DelAuthority($authid)
697
698 Deletes $authid
699
700 =cut
701
702 sub DelAuthority {
703     my ($authid) = @_;
704     my $dbh=C4::Context->dbh;
705
706     logaction( "AUTHORITIES", "DELETE", $authid, "authority" ) if C4::Context->preference("AuthoritiesLog");
707     ModZebra($authid,"recordDelete","authorityserver",GetAuthority($authid),undef);
708     my $sth = $dbh->prepare("DELETE FROM auth_header WHERE authid=?");
709     $sth->execute($authid);
710 }
711
712 =head2 ModAuthority
713
714   $authid= &ModAuthority($authid,$record,$authtypecode)
715
716 Modifies authority record, optionally updates attached biblios.
717
718 =cut
719
720 sub ModAuthority {
721   my ($authid,$record,$authtypecode)=@_; # deprecated $merge parameter removed
722
723   my $dbh=C4::Context->dbh;
724   #Now rewrite the $record to table with an add
725   my $oldrecord=GetAuthority($authid);
726   $authid=AddAuthority($record,$authid,$authtypecode);
727
728   # If a library thinks that updating all biblios is a long process and wishes
729   # to leave that to a cron job, use misc/migration_tools/merge_authority.pl.
730   # In that case set system preference "dontmerge" to 1. Otherwise biblios will
731   # be updated.
732   unless(C4::Context->preference('dontmerge') eq '1'){
733       &merge($authid,$oldrecord,$authid,$record);
734   } else {
735       # save a record in need_merge_authorities table
736       my $sqlinsert="INSERT INTO need_merge_authorities (authid, done) ".
737         "VALUES (?,?)";
738       $dbh->do($sqlinsert,undef,($authid,0));
739   }
740   logaction( "AUTHORITIES", "MODIFY", $authid, "BEFORE=>" . $oldrecord->as_formatted ) if C4::Context->preference("AuthoritiesLog");
741   return $authid;
742 }
743
744 =head2 GetAuthorityXML 
745
746   $marcxml= &GetAuthorityXML( $authid)
747
748 returns xml form of record $authid
749
750 =cut
751
752 sub GetAuthorityXML {
753   # Returns MARC::XML of the authority passed in parameter.
754   my ( $authid ) = @_;
755   if (uc(C4::Context->preference('marcflavour')) eq 'UNIMARC') {
756       my $dbh=C4::Context->dbh;
757       my $sth = $dbh->prepare("select marcxml from auth_header where authid=? "  );
758       $sth->execute($authid);
759       my ($marcxml)=$sth->fetchrow;
760       return $marcxml;
761   }
762   else { 
763       # for MARC21, call GetAuthority instead of
764       # getting the XML directly since we may
765       # need to fix up the location of the authority
766       # code -- note that this is reasonably safe
767       # because GetAuthorityXML is used only by the 
768       # indexing processes like zebraqueue_start.pl
769       my $record = GetAuthority($authid);
770       return $record->as_xml_record('MARC21');
771   }
772 }
773
774 =head2 GetAuthority 
775
776   $record= &GetAuthority( $authid)
777
778 Returns MARC::Record of the authority passed in parameter.
779
780 =cut
781
782 sub GetAuthority {
783     my ($authid)=@_;
784     my $authority = Koha::Authority->get_from_authid($authid);
785     return unless $authority;
786     return ($authority->record);
787 }
788
789 =head2 GetAuthType 
790
791   $result = &GetAuthType($authtypecode)
792
793 If the authority type specified by C<$authtypecode> exists,
794 returns a hashref of the type's fields.  If the type
795 does not exist, returns undef.
796
797 =cut
798
799 sub GetAuthType {
800     my ($authtypecode) = @_;
801     my $dbh=C4::Context->dbh;
802     my $sth;
803     if (defined $authtypecode){ # NOTE - in MARC21 framework, '' is a valid authority 
804                                 # type (FIXME but why?)
805         $sth=$dbh->prepare("select * from auth_types where authtypecode=?");
806         $sth->execute($authtypecode);
807         if (my $res = $sth->fetchrow_hashref) {
808             return $res; 
809         }
810     }
811     return;
812 }
813
814
815 =head2 FindDuplicateAuthority
816
817   $record= &FindDuplicateAuthority( $record, $authtypecode)
818
819 return $authid,Summary if duplicate is found.
820
821 Comments : an improvement would be to return All the records that match.
822
823 =cut
824
825 sub FindDuplicateAuthority {
826
827     my ($record,$authtypecode)=@_;
828 #    warn "IN for ".$record->as_formatted;
829     my $dbh = C4::Context->dbh;
830 #    warn "".$record->as_formatted;
831     my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
832     $sth->execute($authtypecode);
833     my ($auth_tag_to_report) = $sth->fetchrow;
834     $sth->finish;
835 #     warn "record :".$record->as_formatted."  auth_tag_to_report :$auth_tag_to_report";
836     # build a request for SearchAuthorities
837     my $QParser;
838     $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser'));
839     my $op;
840     if ($QParser) {
841         $op = '&&';
842     } else {
843         $op = 'and';
844     }
845     my $query='at:'.$authtypecode.' ';
846     my $filtervalues=qr([\001-\040\!\'\"\`\#\$\%\&\*\+,\-\./:;<=>\?\@\(\)\{\[\]\}_\|\~]);
847     if ($record->field($auth_tag_to_report)) {
848       foreach ($record->field($auth_tag_to_report)->subfields()) {
849         $_->[1]=~s/$filtervalues/ /g; $query.= " $op he:\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/);
850       }
851     }
852     my ($error, $results, $total_hits) = C4::Search::SimpleSearch( $query, 0, 1, [ "authorityserver" ] );
853     # there is at least 1 result => return the 1st one
854     if (!defined $error && @{$results} ) {
855       my $marcrecord = MARC::File::USMARC::decode($results->[0]);
856       return $marcrecord->field('001')->data,BuildSummary($marcrecord,$marcrecord->field('001')->data,$authtypecode);
857     }
858     # no result, returns nothing
859     return;
860 }
861
862 =head2 BuildSummary
863
864   $summary= &BuildSummary( $record, $authid, $authtypecode)
865
866 Returns a hashref with a summary of the specified record.
867
868 Comment : authtypecode can be infered from both record and authid.
869 Moreover, authid can also be inferred from $record.
870 Would it be interesting to delete those things.
871
872 =cut
873
874 sub BuildSummary {
875     ## give this a Marc record to return summary
876     my ($record,$authid,$authtypecode)=@_;
877     my $dbh=C4::Context->dbh;
878     my %summary;
879     # handle $authtypecode is NULL or eq ""
880     if ($authtypecode) {
881         my $authref = GetAuthType($authtypecode);
882         $summary{authtypecode} = $authref->{authtypecode};
883         $summary{type} = $authref->{authtypetext};
884         $summary{summary} = $authref->{summary};
885     }
886     my $marc21subfields = 'abcdfghjklmnopqrstuvxyz68';
887     my %marc21controlrefs = ( 'a' => 'earlier',
888         'b' => 'later',
889         'd' => 'acronym',
890         'f' => 'musical',
891         'g' => 'broader',
892         'h' => 'narrower',
893         'n' => 'notapplicable',
894         'i' => 'subfi',
895         't' => 'parent'
896     );
897     my %unimarc_relation_from_code = (
898         g => 'broader',
899         h => 'narrower',
900         a => 'seealso',
901     );
902     my %thesaurus;
903     $thesaurus{'1'}="Peuples";
904     $thesaurus{'2'}="Anthroponymes";
905     $thesaurus{'3'}="Oeuvres";
906     $thesaurus{'4'}="Chronologie";
907     $thesaurus{'5'}="Lieux";
908     $thesaurus{'6'}="Sujets";
909     #thesaurus a remplir
910     my $reported_tag;
911 # if the library has a summary defined, use it. Otherwise, build a standard one
912 # FIXME - it appears that the summary field in the authority frameworks
913 #         can work as a display template.  However, this doesn't
914 #         suit the MARC21 version, so for now the "templating"
915 #         feature will be enabled only for UNIMARC for backwards
916 #         compatibility.
917     if ($summary{summary} and C4::Context->preference('marcflavour') eq 'UNIMARC') {
918         my @fields = $record->fields();
919 #             $reported_tag = '$9'.$result[$counter];
920         my @stringssummary;
921         foreach my $field (@fields) {
922             my $tag = $field->tag();
923             my $tagvalue = $field->as_string();
924             my $localsummary= $summary{summary};
925             $localsummary =~ s/\[(.?.?.?.?)$tag\*(.*?)\]/$1$tagvalue$2\[$1$tag$2\]/g;
926             if ($tag<10) {
927                 if ($tag eq '001') {
928                     $reported_tag.='$3'.$field->data();
929                 }
930             } else {
931                 my @subf = $field->subfields;
932                 for my $i (0..$#subf) {
933                     my $subfieldcode = $subf[$i][0];
934                     my $subfieldvalue = $subf[$i][1];
935                     my $tagsubf = $tag.$subfieldcode;
936                     $localsummary =~ s/\[(.?.?.?.?)$tagsubf(.*?)\]/$1$subfieldvalue$2\[$1$tagsubf$2\]/g;
937                 }
938             }
939             push @stringssummary, $localsummary if ($localsummary ne $summary{summary});
940         }
941         my $resultstring;
942         $resultstring = join(" -- ",@stringssummary);
943         $resultstring =~ s/\[(.*?)\]//g;
944         $resultstring =~ s/\n/<br>/g;
945         $summary{summary}      =  $resultstring;
946     }
947     my @authorized;
948     my @notes;
949     my @seefrom;
950     my @seealso;
951     my @otherscript;
952     if (C4::Context->preference('marcflavour') eq 'UNIMARC') {
953 # construct UNIMARC summary, that is quite different from MARC21 one
954 # accepted form
955         foreach my $field ($record->field('2..')) {
956             push @authorized, {
957                 heading => $field->as_string('abcdefghijlmnopqrstuvwxyz'),
958                 hemain  => $field->subfield('a'),
959                 field   => $field->tag(),
960             };
961         }
962 # rejected form(s)
963         foreach my $field ($record->field('3..')) {
964             push @notes, { note => $field->subfield('a'), field => $field->tag() };
965         }
966         foreach my $field ($record->field('4..')) {
967             my $thesaurus = $field->subfield('2') ? "thes. : ".$thesaurus{"$field->subfield('2')"}." : " : '';
968             push @seefrom, {
969                 heading => $thesaurus . $field->as_string('abcdefghijlmnopqrstuvwxyz'),
970                 hemain  => $field->subfield('a'),
971                 type    => 'seefrom',
972                 field   => $field->tag(),
973             };
974         }
975
976         # see :
977         @seealso = map {
978             my $type = $unimarc_relation_from_code{$_->subfield('5') || 'a'};
979             my $heading = $_->as_string('abcdefgjxyz');
980             {
981                 field   => $_->tag,
982                 type    => $type,
983                 heading => $heading,
984                 hemain  => $_->subfield('a'),
985                 search  => $heading,
986                 authid  => $_->subfield('9'),
987             }
988         } $record->field('5..');
989
990         # Other forms
991         @otherscript = map { {
992             lang      => length ($_->subfield('8')) == 6 ? substr ($_->subfield('8'), 3, 3) : $_->subfield('8') || '',
993             term      => $_->subfield('a') . ($_->subfield('b') ? ', ' . $_->subfield('b') : ''),
994             direction => 'ltr',
995             field     => $_->tag,
996         } } $record->field('7..');
997
998     } else {
999 # construct MARC21 summary
1000 # FIXME - looping over 1XX is questionable
1001 # since MARC21 authority should have only one 1XX
1002         my $subfields_to_report;
1003         foreach my $field ($record->field('1..')) {
1004             my $tag = $field->tag();
1005             next if "152" eq $tag;
1006 # FIXME - 152 is not a good tag to use
1007 # in MARC21 -- purely local tags really ought to be
1008 # 9XX
1009             if ($tag eq '100') {
1010                 $subfields_to_report = 'abcdefghjklmnopqrstvxyz';
1011             } elsif ($tag eq '110') {
1012                 $subfields_to_report = 'abcdefghklmnoprstvxyz';
1013             } elsif ($tag eq '111') {
1014                 $subfields_to_report = 'acdefghklnpqstvxyz';
1015             } elsif ($tag eq '130') {
1016                 $subfields_to_report = 'adfghklmnoprstvxyz';
1017             } elsif ($tag eq '148') {
1018                 $subfields_to_report = 'abvxyz';
1019             } elsif ($tag eq '150') {
1020                 $subfields_to_report = 'abvxyz';
1021             } elsif ($tag eq '151') {
1022                 $subfields_to_report = 'avxyz';
1023             } elsif ($tag eq '155') {
1024                 $subfields_to_report = 'abvxyz';
1025             } elsif ($tag eq '180') {
1026                 $subfields_to_report = 'vxyz';
1027             } elsif ($tag eq '181') {
1028                 $subfields_to_report = 'vxyz';
1029             } elsif ($tag eq '182') {
1030                 $subfields_to_report = 'vxyz';
1031             } elsif ($tag eq '185') {
1032                 $subfields_to_report = 'vxyz';
1033             }
1034             if ($subfields_to_report) {
1035                 push @authorized, {
1036                     heading => $field->as_string($subfields_to_report),
1037                     hemain  => $field->subfield( substr($subfields_to_report, 0, 1) ),
1038                     field   => $tag,
1039                 };
1040             } else {
1041                 push @authorized, {
1042                     heading => $field->as_string(),
1043                     hemain  => $field->subfield('a'),
1044                     field   => $tag,
1045                 };
1046             }
1047         }
1048         foreach my $field ($record->field('4..')) { #See From
1049             my $type = 'seefrom';
1050             $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1051             if ($type eq 'notapplicable') {
1052                 $type = substr $field->subfield('w'), 2, 1;
1053                 $type = 'earlier' if $type && $type ne 'n';
1054             }
1055             if ($type eq 'subfi') {
1056                 push @seefrom, {
1057                     heading => $field->as_string($marc21subfields),
1058                     hemain  => $field->subfield( substr($marc21subfields, 0, 1) ),
1059                     type    => ($field->subfield('i') || ''),
1060                     field   => $field->tag(),
1061                 };
1062             } else {
1063                 push @seefrom, {
1064                     heading => $field->as_string($marc21subfields),
1065                     hemain  => $field->subfield( substr($marc21subfields, 0, 1) ),
1066                     type    => $type,
1067                     field   => $field->tag(),
1068                 };
1069             }
1070         }
1071         foreach my $field ($record->field('5..')) { #See Also
1072             my $type = 'seealso';
1073             $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1074             if ($type eq 'notapplicable') {
1075                 $type = substr $field->subfield('w'), 2, 1;
1076                 $type = 'earlier' if $type && $type ne 'n';
1077             }
1078             if ($type eq 'subfi') {
1079                 push @seealso, {
1080                     heading => $field->as_string($marc21subfields),
1081                     hemain  => $field->subfield( substr($marc21subfields, 0, 1) ),
1082                     type    => $field->subfield('i'),
1083                     field   => $field->tag(),
1084                     search  => $field->as_string($marc21subfields) || '',
1085                     authid  => $field->subfield('9') || ''
1086                 };
1087             } else {
1088                 push @seealso, {
1089                     heading => $field->as_string($marc21subfields),
1090                     hemain  => $field->subfield( substr($marc21subfields, 0, 1) ),
1091                     type    => $type,
1092                     field   => $field->tag(),
1093                     search  => $field->as_string($marc21subfields) || '',
1094                     authid  => $field->subfield('9') || ''
1095                 };
1096             }
1097         }
1098         foreach my $field ($record->field('6..')) {
1099             push @notes, { note => $field->as_string(), field => $field->tag() };
1100         }
1101         foreach my $field ($record->field('880')) {
1102             my $linkage = $field->subfield('6');
1103             my $category = substr $linkage, 0, 1;
1104             if ($category eq '1') {
1105                 $category = 'preferred';
1106             } elsif ($category eq '4') {
1107                 $category = 'seefrom';
1108             } elsif ($category eq '5') {
1109                 $category = 'seealso';
1110             }
1111             my $type;
1112             if ($field->subfield('w')) {
1113                 $type = $marc21controlrefs{substr $field->subfield('w'), '0'};
1114             } else {
1115                 $type = $category;
1116             }
1117             my $direction = $linkage =~ m#/r$# ? 'rtl' : 'ltr';
1118             push @otherscript, { term => $field->as_string($subfields_to_report), category => $category, type => $type, direction => $direction, linkage => $linkage };
1119         }
1120     }
1121     $summary{mainentry} = $authorized[0]->{heading};
1122     $summary{mainmainentry} = $authorized[0]->{hemain};
1123     $summary{authorized} = \@authorized;
1124     $summary{notes} = \@notes;
1125     $summary{seefrom} = \@seefrom;
1126     $summary{seealso} = \@seealso;
1127     $summary{otherscript} = \@otherscript;
1128     return \%summary;
1129 }
1130
1131 =head2 GetAuthorizedHeading
1132
1133   $heading = &GetAuthorizedHeading({ record => $record, authid => $authid })
1134
1135 Takes a MARC::Record object describing an authority record or an authid, and
1136 returns a string representation of the first authorized heading. This routine
1137 should be considered a temporary shim to ease the future migration of authority
1138 data from C4::AuthoritiesMarc to the object-oriented Koha::*::Authority.
1139
1140 =cut
1141
1142 sub GetAuthorizedHeading {
1143     my $args = shift;
1144     my $record;
1145     unless ($record = $args->{record}) {
1146         return unless $args->{authid};
1147         $record = GetAuthority($args->{authid});
1148     }
1149     return unless (ref $record eq 'MARC::Record');
1150     if (C4::Context->preference('marcflavour') eq 'UNIMARC') {
1151 # construct UNIMARC summary, that is quite different from MARC21 one
1152 # accepted form
1153         foreach my $field ($record->field('2..')) {
1154             return $field->as_string('abcdefghijlmnopqrstuvwxyz');
1155         }
1156     } else {
1157         foreach my $field ($record->field('1..')) {
1158             my $tag = $field->tag();
1159             next if "152" eq $tag;
1160 # FIXME - 152 is not a good tag to use
1161 # in MARC21 -- purely local tags really ought to be
1162 # 9XX
1163             if ($tag eq '100') {
1164                 return $field->as_string('abcdefghjklmnopqrstvxyz68');
1165             } elsif ($tag eq '110') {
1166                 return $field->as_string('abcdefghklmnoprstvxyz68');
1167             } elsif ($tag eq '111') {
1168                 return $field->as_string('acdefghklnpqstvxyz68');
1169             } elsif ($tag eq '130') {
1170                 return $field->as_string('adfghklmnoprstvxyz68');
1171             } elsif ($tag eq '148') {
1172                 return $field->as_string('abvxyz68');
1173             } elsif ($tag eq '150') {
1174                 return $field->as_string('abvxyz68');
1175             } elsif ($tag eq '151') {
1176                 return $field->as_string('avxyz68');
1177             } elsif ($tag eq '155') {
1178                 return $field->as_string('abvxyz68');
1179             } elsif ($tag eq '180') {
1180                 return $field->as_string('vxyz68');
1181             } elsif ($tag eq '181') {
1182                 return $field->as_string('vxyz68');
1183             } elsif ($tag eq '182') {
1184                 return $field->as_string('vxyz68');
1185             } elsif ($tag eq '185') {
1186                 return $field->as_string('vxyz68');
1187             } else {
1188                 return $field->as_string();
1189             }
1190         }
1191     }
1192     return;
1193 }
1194
1195 =head2 BuildAuthHierarchies
1196
1197   $text= &BuildAuthHierarchies( $authid, $force)
1198
1199 return text containing trees for hierarchies
1200 for them to be stored in auth_header
1201
1202 Example of text:
1203 122,1314,2452;1324,2342,3,2452
1204
1205 =cut
1206
1207 sub BuildAuthHierarchies{
1208     my $authid = shift @_;
1209 #   warn "authid : $authid";
1210     my $force = shift @_ || (C4::Context->preference('marcflavour') eq 'UNIMARC' ? 0 : 1);
1211     my @globalresult;
1212     my $dbh=C4::Context->dbh;
1213     my $hierarchies;
1214     my $data = GetHeaderAuthority($authid);
1215     if ($data->{'authtrees'} and not $force){
1216         return $data->{'authtrees'};
1217 #  } elsif ($data->{'authtrees'}){
1218 #    $hierarchies=$data->{'authtrees'};
1219     } else {
1220         my $record = GetAuthority($authid);
1221         my $found;
1222         return unless $record;
1223         foreach my $field ($record->field('5..')){
1224             my $broader = 0;
1225             $broader = 1 if (
1226                     (C4::Context->preference('marcflavour') eq 'UNIMARC' && $field->subfield('5') && $field->subfield('5') eq 'g') ||
1227                     (C4::Context->preference('marcflavour') ne 'UNIMARC' && $field->subfield('w') && substr($field->subfield('w'), 0, 1) eq 'g'));
1228             if ($broader) {
1229                 my $subfauthid=_get_authid_subfield($field) || '';
1230                 next if ($subfauthid eq $authid);
1231                 my $parentrecord = GetAuthority($subfauthid);
1232                 next unless $parentrecord;
1233                 my $localresult=$hierarchies;
1234                 my $trees;
1235                 $trees = BuildAuthHierarchies($subfauthid);
1236                 my @trees;
1237                 if ($trees=~/;/){
1238                     @trees = split(/;/,$trees);
1239                 } else {
1240                     push @trees, $trees;
1241                 }
1242                 foreach (@trees){
1243                     $_.= ",$authid";
1244                 }
1245                 @globalresult = (@globalresult,@trees);
1246                 $found=1;
1247             }
1248             $hierarchies=join(";",@globalresult);
1249         }
1250 #Unless there is no ancestor, I am alone.
1251         $hierarchies="$authid" unless ($hierarchies);
1252     }
1253     AddAuthorityTrees($authid,$hierarchies);
1254     return $hierarchies;
1255 }
1256
1257 =head2 BuildAuthHierarchy
1258
1259   $ref= &BuildAuthHierarchy( $record, $class,$authid)
1260
1261 return a hashref in order to display hierarchy for record and final Authid $authid
1262
1263 "loopparents"
1264 "loopchildren"
1265 "class"
1266 "loopauthid"
1267 "current_value"
1268 "value"
1269
1270 =cut
1271
1272 sub BuildAuthHierarchy{
1273     my $record = shift @_;
1274     my $class = shift @_;
1275     my $authid_constructed = shift @_;
1276     return unless ($record && $record->field('001'));
1277     my $authid=$record->field('001')->data();
1278     my %cell;
1279     my $parents=""; my $children="";
1280     my (@loopparents,@loopchildren);
1281     my $marcflavour = C4::Context->preference('marcflavour');
1282     my $relationshipsf = $marcflavour eq 'UNIMARC' ? '5' : 'w';
1283     foreach my $field ($record->field('5..')){
1284         my $subfauthid=_get_authid_subfield($field);
1285         if ($subfauthid && $field->subfield($relationshipsf) && $field->subfield('a')){
1286             my $relationship = substr($field->subfield($relationshipsf), 0, 1);
1287             if ($relationship eq 'h'){
1288                 push @loopchildren, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1289             }
1290             elsif ($relationship eq 'g'){
1291                 push @loopparents, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1292             }
1293 # brothers could get in there with an else
1294         }
1295     }
1296     $cell{"parents"}=\@loopparents;
1297     $cell{"children"}=\@loopchildren;
1298     $cell{"class"}=$class;
1299     $cell{"authid"}=$authid;
1300     $cell{"current_value"} =1 if ($authid eq $authid_constructed);
1301     $cell{"value"}=C4::Context->preference('marcflavour') eq 'UNIMARC' ? $record->subfield('2..',"a") : $record->subfield('1..', 'a');
1302     return \%cell;
1303 }
1304
1305 =head2 BuildAuthHierarchyBranch
1306
1307   $branch = &BuildAuthHierarchyBranch( $tree, $authid[, $cnt])
1308
1309 Return a data structure representing an authority hierarchy
1310 given a list of authorities representing a single branch in
1311 an authority hierarchy tree. $authid is the current node in
1312 the tree (which may or may not be somewhere in the middle).
1313 $cnt represents the level of the upper-most item, and is only
1314 used when BuildAuthHierarchyBranch is called recursively (i.e.,
1315 don't ever pass in anything but zero to it).
1316
1317 =cut
1318
1319 sub BuildAuthHierarchyBranch {
1320     my ($tree, $authid, $cnt) = @_;
1321     $cnt |= 0;
1322     my $elementdata = GetAuthority(shift @$tree);
1323     my $branch = BuildAuthHierarchy($elementdata,"child".$cnt, $authid);
1324     if (scalar @$tree > 0) {
1325         my $nextBranch = BuildAuthHierarchyBranch($tree, $authid, ++$cnt);
1326         my $nextAuthid = $nextBranch->{authid};
1327         my $found;
1328         # If we already have the next branch listed as a child, let's
1329         # replace the old listing with the new one. If not, we will add
1330         # the branch at the end.
1331         foreach my $cell (@{$branch->{children}}) {
1332             if ($cell->{authid} eq $nextAuthid) {
1333                 $cell = $nextBranch;
1334                 $found = 1;
1335                 last;
1336             }
1337         }
1338         push @{$branch->{children}}, $nextBranch unless $found;
1339     }
1340     return $branch;
1341 }
1342
1343 =head2 GenerateHierarchy
1344
1345   $hierarchy = &GenerateHierarchy($authid);
1346
1347 Return an arrayref holding one or more "trees" representing
1348 authority hierarchies.
1349
1350 =cut
1351
1352 sub GenerateHierarchy {
1353     my ($authid) = @_;
1354     my $trees    = BuildAuthHierarchies($authid);
1355     my @trees    = split /;/,$trees ;
1356     push @trees,$trees unless (@trees);
1357     my @loophierarchies;
1358     foreach my $tree (@trees){
1359         my @tree=split /,/,$tree;
1360         push @tree, $tree unless (@tree);
1361         my $branch = BuildAuthHierarchyBranch(\@tree, $authid);
1362         push @loophierarchies, [ $branch ];
1363     }
1364     return \@loophierarchies;
1365 }
1366
1367 sub _get_authid_subfield{
1368     my ($field)=@_;
1369     return $field->subfield('9')||$field->subfield('3');
1370 }
1371 =head2 GetHeaderAuthority
1372
1373   $ref= &GetHeaderAuthority( $authid)
1374
1375 return a hashref in order auth_header table data
1376
1377 =cut
1378
1379 sub GetHeaderAuthority{
1380   my $authid = shift @_;
1381   my $sql= "SELECT * from auth_header WHERE authid = ?";
1382   my $dbh=C4::Context->dbh;
1383   my $rq= $dbh->prepare($sql);
1384   $rq->execute($authid);
1385   my $data= $rq->fetchrow_hashref;
1386   return $data;
1387 }
1388
1389 =head2 AddAuthorityTrees
1390
1391   $ref= &AddAuthorityTrees( $authid, $trees)
1392
1393 return success or failure
1394
1395 =cut
1396
1397 sub AddAuthorityTrees{
1398   my $authid = shift @_;
1399   my $trees = shift @_;
1400   my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1401   my $dbh=C4::Context->dbh;
1402   my $rq= $dbh->prepare($sql);
1403   return $rq->execute($trees,$authid);
1404 }
1405
1406 =head2 merge
1407
1408   $ref= &merge(mergefrom,$MARCfrom,$mergeto,$MARCto)
1409
1410 Could add some feature : Migrating from a typecode to an other for instance.
1411 Then we should add some new parameter : bibliotargettag, authtargettag
1412
1413 =cut
1414
1415 sub merge {
1416     my ($mergefrom,$MARCfrom,$mergeto,$MARCto) = @_;
1417     my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0);        
1418     my $dbh=C4::Context->dbh;
1419     my $authtypecodefrom = GetAuthTypeCode($mergefrom);
1420     my $authtypecodeto = GetAuthTypeCode($mergeto);
1421 #     warn "mergefrom : $authtypecodefrom $mergefrom mergeto : $authtypecodeto $mergeto ";
1422     # return if authority does not exist
1423     return "error MARCFROM not a marcrecord ".Data::Dumper::Dumper($MARCfrom) if scalar($MARCfrom->fields()) == 0;
1424     return "error MARCTO not a marcrecord".Data::Dumper::Dumper($MARCto) if scalar($MARCto->fields()) == 0;
1425     # search the tag to report
1426     my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
1427     $sth->execute($authtypecodefrom);
1428     my ($auth_tag_to_report_from) = $sth->fetchrow;
1429     $sth->execute($authtypecodeto);
1430     my ($auth_tag_to_report_to) = $sth->fetchrow;
1431     
1432     my @record_to;
1433     @record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $MARCto->field($auth_tag_to_report_to);
1434     my @record_from;
1435     @record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $MARCfrom->field($auth_tag_to_report_from);
1436     
1437     my @reccache;
1438     # search all biblio tags using this authority.
1439     #Getting marcbiblios impacted by the change.
1440     #zebra connection
1441     my $oConnection=C4::Context->Zconn("biblioserver",0);
1442     # We used to use XML syntax here, but that no longer works.
1443     # Thankfully, we don't need it.
1444     my $query;
1445     $query= "an=".$mergefrom;
1446     my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1447     my $count = 0;
1448     if  ($oResult) {
1449         $count=$oResult->size();
1450     }
1451     my $z=0;
1452     while ( $z<$count ) {
1453         my $rec;
1454         $rec=$oResult->record($z);
1455         my $marcdata = $rec->raw();
1456         my $marcrecordzebra= MARC::Record->new_from_usmarc($marcdata);
1457         my ( $biblionumbertagfield, $biblionumbertagsubfield ) = &GetMarcFromKohaField( "biblio.biblionumber", '' );
1458         my $i = ($biblionumbertagfield < 10) ? $marcrecordzebra->field($biblionumbertagfield)->data : $marcrecordzebra->subfield($biblionumbertagfield, $biblionumbertagsubfield);
1459         my $marcrecorddb=GetMarcBiblio($i);
1460         push @reccache, $marcrecorddb;
1461         $z++;
1462     }
1463     $oResult->destroy();
1464     #warn scalar(@reccache)." biblios to update";
1465     # Get All candidate Tags for the change 
1466     # (This will reduce the search scope in marc records).
1467     $sth = $dbh->prepare("select distinct tagfield from marc_subfield_structure where authtypecode=?");
1468     $sth->execute($authtypecodefrom);
1469     my @tags_using_authtype;
1470     while (my ($tagfield) = $sth->fetchrow) {
1471         push @tags_using_authtype,$tagfield ;
1472     }
1473     my $tag_to=0;  
1474     if ($authtypecodeto ne $authtypecodefrom){  
1475         # If many tags, take the first
1476         $sth->execute($authtypecodeto);    
1477         $tag_to=$sth->fetchrow;
1478         #warn $tag_to;    
1479     }  
1480     # BulkEdit marc records
1481     # May be used as a template for a bulkedit field  
1482     foreach my $marcrecord(@reccache){
1483         my $update;           
1484         foreach my $tagfield (@tags_using_authtype){
1485 #             warn "tagfield : $tagfield ";
1486             foreach my $field ($marcrecord->field($tagfield)){
1487                 # biblio is linked to authority with $9 subfield containing authid
1488                 my $auth_number=$field->subfield("9");
1489                 my $tag=$field->tag();          
1490                 if ($auth_number==$mergefrom) {
1491                 my $field_to=MARC::Field->new(($tag_to?$tag_to:$tag),$field->indicator(1),$field->indicator(2),"9"=>$mergeto);
1492                 my $exclude='9';
1493                 foreach my $subfield (grep {$_->[0] ne '9'} @record_to) {
1494                     $field_to->add_subfields($subfield->[0] =>$subfield->[1]);
1495                     $exclude.= $subfield->[0];
1496                 }
1497                 $exclude='['.$exclude.']';
1498 #               add subfields in $field not included in @record_to
1499                 my @restore= grep {$_->[0]!~/$exclude/} $field->subfields();
1500                 foreach my $subfield (@restore) {
1501                    $field_to->add_subfields($subfield->[0] =>$subfield->[1]);
1502                 }
1503                 $marcrecord->delete_field($field);
1504                 $marcrecord->insert_grouped_field($field_to);            
1505                 $update=1;
1506                 }
1507             }#for each tag
1508         }#foreach tagfield
1509         my ($bibliotag,$bibliosubf) = GetMarcFromKohaField("biblio.biblionumber","") ;
1510         my $biblionumber;
1511         if ($bibliotag<10){
1512             $biblionumber=$marcrecord->field($bibliotag)->data;
1513         }
1514         else {
1515             $biblionumber=$marcrecord->subfield($bibliotag,$bibliosubf);
1516         }
1517         unless ($biblionumber){
1518             warn "pas de numéro de notice bibliographique dans : ".$marcrecord->as_formatted;
1519             next;
1520         }
1521         if ($update==1){
1522             &ModBiblio($marcrecord,$biblionumber,GetFrameworkCode($biblionumber)) ;
1523             $counteditedbiblio++;
1524             warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG});
1525         }    
1526     }#foreach $marc
1527     return $counteditedbiblio;  
1528   # now, find every other authority linked with this authority
1529   # now, find every other authority linked with this authority
1530 #   my $oConnection=C4::Context->Zconn("authorityserver");
1531 #   my $query;
1532 # # att 9210               Auth-Internal-authtype
1533 # # att 9220               Auth-Internal-LN
1534 # # ccl.properties to add for authorities
1535 #   $query= "= ".$mergefrom;
1536 #   my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1537 #   my $count=$oResult->size() if  ($oResult);
1538 #   my @reccache;
1539 #   my $z=0;
1540 #   while ( $z<$count ) {
1541 #   my $rec;
1542 #           $rec=$oResult->record($z);
1543 #       my $marcdata = $rec->raw();
1544 #   push @reccache, $marcdata;
1545 #   $z++;
1546 #   }
1547 #   $oResult->destroy();
1548 #   foreach my $marc(@reccache){
1549 #     my $update;
1550 #     my $marcrecord;
1551 #     $marcrecord = MARC::File::USMARC::decode($marc);
1552 #     foreach my $tagfield (@tags_using_authtype){
1553 #       $tagfield=substr($tagfield,0,3);
1554 #       my @tags = $marcrecord->field($tagfield);
1555 #       foreach my $tag (@tags){
1556 #         my $tagsubs=$tag->subfield("9");
1557 #     #warn "$tagfield:$tagsubs:$mergefrom";
1558 #         if ($tagsubs== $mergefrom) {
1559 #           $tag->update("9" =>$mergeto);
1560 #           foreach my $subfield (@record_to) {
1561 #     #        warn "$subfield,$subfield->[0],$subfield->[1]";
1562 #             $tag->update($subfield->[0] =>$subfield->[1]);
1563 #           }#for $subfield
1564 #         }
1565 #         $marcrecord->delete_field($tag);
1566 #         $marcrecord->add_fields($tag);
1567 #         $update=1;
1568 #       }#for each tag
1569 #     }#foreach tagfield
1570 #     my $authoritynumber = TransformMarcToKoha($dbh,$marcrecord,"") ;
1571 #     if ($update==1){
1572 #       &ModAuthority($marcrecord,$authoritynumber,GetAuthTypeCode($authoritynumber)) ;
1573 #     }
1574
1575 #   }#foreach $marc
1576 }#sub
1577
1578 =head2 get_auth_type_location
1579
1580   my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1581
1582 Get the tag and subfield used to store the heading type
1583 for indexing purposes.  The C<$auth_type> parameter is
1584 optional; if it is not supplied, assume ''.
1585
1586 This routine searches the MARC authority framework
1587 for the tag and subfield whose kohafield is 
1588 C<auth_header.authtypecode>; if no such field is
1589 defined in the framework, default to the hardcoded value
1590 specific to the MARC format.
1591
1592 =cut
1593
1594 sub get_auth_type_location {
1595     my $auth_type_code = @_ ? shift : '';
1596
1597     my ($tag, $subfield) = GetAuthMARCFromKohaField('auth_header.authtypecode', $auth_type_code);
1598     if (defined $tag and defined $subfield and $tag != 0 and $subfield ne '' and $subfield ne ' ') {
1599         return ($tag, $subfield);
1600     } else {
1601         if (C4::Context->preference('marcflavour') eq "MARC21")  {
1602             return C4::AuthoritiesMarc::MARC21::default_auth_type_location();
1603         } else {
1604             return C4::AuthoritiesMarc::UNIMARC::default_auth_type_location();
1605         }
1606     }
1607 }
1608
1609 END { }       # module clean-up code here (global destructor)
1610
1611 1;
1612 __END__
1613
1614 =head1 AUTHOR
1615
1616 Koha Development Team <http://koha-community.org/>
1617
1618 Paul POULAIN paul.poulain@free.fr
1619
1620 =cut
1621