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