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