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>.
25 use C4
::AuthoritiesMarc
::MARC21
;
26 use C4
::AuthoritiesMarc
::UNIMARC
;
29 use Koha
::MetadataRecord
::Authority
;
30 use Koha
::Authorities
;
31 use Koha
::Authority
::Types
;
33 use Koha
::SearchEngine
;
34 use Koha
::SearchEngine
::Search
;
36 use vars
qw(@ISA @EXPORT);
44 &GetAuthMARCFromKohaField
62 &FindDuplicateAuthority
74 =head2 GetAuthMARCFromKohaField
76 ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
78 returns tag and subfield linked to kohafield
81 Suppose Kohafield is only linked to ONE subfield
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 $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
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;
116 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
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
122 ##first set the authtype search and may be multiple authorities
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;
133 while ($n>1){$query= "\@or ".$query;$n--;}
136 $qpquery .= '(authtype:' . join('|| authtype:', @auths) . ')';
144 for ( my $i = 0 ; $i <= $#{$value} ; $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 ";
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
190 $attr .= " \@attr 5=1 \@attr 4=6 "
191 ; ## Word list, right truncated, anywhere
192 if ( $sortby eq 'Relevance' ) {
193 $attr .= "\@attr 2=102 ";
197 s/"/\\"/g; # Escape the double-quotes in the search value
198 $attr = $attr . "\"" . @
$value[$i] . "\"";
203 $qpquery .= " $tags->[$i]:\"$value->[$i]\"";
207 ##Add how many queries generated
208 if (defined $query && $query=~/\S+/){
209 $query= $and x
$attr_cnt . $query . (defined $q2 ?
$q2 : '');
214 #$query=' @or @attr 7=2 @attr 1=Heading 0 @or @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
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';
226 $qpquery .= ' all:all' unless $value->[0];
228 if ( $value->[0] =~ m/^qp=(.*)$/ ) {
232 $qpquery .= " #$sortby" unless $sortby eq '';
234 $QParser->parse( $qpquery );
235 $query = $QParser->target_syntax('authorityserver');
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;
246 $oAuth[0]=C4
::Context
->Zconn("authorityserver" , 1);
247 my $Anewq= new ZOOM
::Query
::PQF
($query,$oAuth[0]);
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();
256 warn "oAuth error: $errmsg ($error) $addinfo $diagset\n";
261 $nbresults=$oAResult->size();
262 my $nremains=$nbresults;
264 my @finalresult = ();
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
(
283 if ( !defined $authrecord or !defined $authrecord->field('001') ) {
288 SetUTF8Flag
( $authrecord );
290 my $authid=$authrecord->field('001')->data();
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
298 my $mainentry = $authrecord->field($auth_tag_to_report);
300 foreach ( $mainentry->subfields() ) {
301 $reported_tag .= '$' . $_->[0] . $_->[1];
305 my ( $thisauthtype, $thisauthtypecode );
306 if ( my $authority = Koha
::Authorities
->find($authid) ) {
307 $thisauthtypecode = $authority->authtypecode;
308 $thisauthtype = Koha
::Authority
::Types
->find($thisauthtypecode);
310 unless (defined $thisauthtype) {
311 $thisauthtypecode = $authtypecode;
312 $thisauthtype = Koha
::Authority
::Types
->find($thisauthtypecode);
314 my $summary = BuildSummary
( $authrecord, $authid, $thisauthtypecode );
316 $newline{authtype
} = defined($thisauthtype) ?
317 $thisauthtype->authtypetext : '';
318 $newline{summary
} = $summary;
319 $newline{even
} = $counter % 2;
320 $newline{reported_tag
} = $reported_tag;
323 push @finalresult, \
%newline;
326 if (! $skipmetadata) {
327 for (my $z=0; $z<@finalresult; $z++){
328 my $count=CountUsage
($finalresult[$z]{authid
});
329 $finalresult[$z]{used
}=$count;
335 $oAResult->destroy();
336 # $oAuth[0]->destroy();
338 return (\
@finalresult, $nbresults);
343 $count= &CountUsage($authid)
345 counts Usage of Authid in bibliorecords.
353 $query= "an:".$authid;
354 # Should really be replaced with a real count call, this is a
356 my $searcher = Koha
::SearchEngine
::Search
->new({index => $Koha::SearchEngine
::BIBLIOS_INDEX
});
357 my ($err,$res,$result) = $searcher->simple_search_compat($query,0,1);
359 warn "Error: $err from search $query";
366 =head2 CountUsageChildren
368 $count= &CountUsageChildren($authid)
370 counts Usage of narrower terms of Authid in bibliorecords.
374 sub CountUsageChildren
{
378 =head2 GuessAuthTypeCode
380 my $authtypecode = GuessAuthTypeCode($record);
382 Get the record and tries to guess the adequate authtypecode from its content.
386 sub GuessAuthTypeCode
{
387 my ($record, $heading_fields) = @_;
388 return unless defined $record;
389 $heading_fields //= {
391 '100'=>{authtypecode
=>'PERSO_NAME'},
392 '110'=>{authtypecode
=>'CORPO_NAME'},
393 '111'=>{authtypecode
=>'MEETI_NAME'},
394 '130'=>{authtypecode
=>'UNIF_TITLE'},
395 '148'=>{authtypecode
=>'CHRON_TERM'},
396 '150'=>{authtypecode
=>'TOPIC_TERM'},
397 '151'=>{authtypecode
=>'GEOGR_NAME'},
398 '155'=>{authtypecode
=>'GENRE/FORM'},
399 '180'=>{authtypecode
=>'GEN_SUBDIV'},
400 '181'=>{authtypecode
=>'GEO_SUBDIV'},
401 '182'=>{authtypecode
=>'CHRON_SUBD'},
402 '185'=>{authtypecode
=>'FORM_SUBD'},
404 #200 Personal name 700, 701, 702 4-- with embedded 700, 701, 702 600
405 # 604 with embedded 700, 701, 702
406 #210 Corporate or meeting name 710, 711, 712 4-- with embedded 710, 711, 712 601 604 with embedded 710, 711, 712
407 #215 Territorial or geographic name 710, 711, 712 4-- with embedded 710, 711, 712 601, 607 604 with embedded 710, 711, 712
408 #216 Trademark 716 [Reserved for future use]
409 #220 Family name 720, 721, 722 4-- with embedded 720, 721, 722 602 604 with embedded 720, 721, 722
410 #230 Title 500 4-- with embedded 500 605
411 #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
412 #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
413 #250 Topical subject 606
414 #260 Place access 620
415 #280 Form, genre or physical characteristics 608
418 # Could also be represented with :
420 #a = personal name entry
421 #b = corporate name entry
422 #c = territorial or geographical name
426 #g = collective uniform title
428 #i = name/collective uniform title
431 #l = form, genre or physical characteristics
433 '200'=>{authtypecode
=>'NP'},
434 '210'=>{authtypecode
=>'CO'},
435 '215'=>{authtypecode
=>'SNG'},
436 '216'=>{authtypecode
=>'TM'},
437 '220'=>{authtypecode
=>'FAM'},
438 '230'=>{authtypecode
=>'TU'},
439 '235'=>{authtypecode
=>'CO_UNI_TI'},
440 '240'=>{authtypecode
=>'SAUTTIT'},
441 '245'=>{authtypecode
=>'NAME_COL'},
442 '250'=>{authtypecode
=>'SNC'},
443 '260'=>{authtypecode
=>'PA'},
444 '280'=>{authtypecode
=>'GENRE/FORM'},
447 foreach my $field (keys %{$heading_fields->{uc(C4
::Context
->preference('marcflavour'))} }) {
448 return $heading_fields->{uc(C4
::Context
->preference('marcflavour'))}->{$field}->{'authtypecode'} if (defined $record->field($field));
455 my $authtid = GuessAuthId($record);
457 Get the record and tries to guess the adequate authtypecode from its content.
463 return unless ($record && $record->field('001'));
464 # my $authtypecode=GuessAuthTypeCode($record);
465 # my ($tag,$subfield)=GetAuthMARCFromKohaField("auth_header.authid",$authtypecode);
466 # if ($tag > 010) {return $record->subfield($tag,$subfield)}
467 # else {return $record->field($tag)->data}
468 return $record->field('001')->data;
473 $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
475 returns a ref to hashref of authorities tag and subfield structure.
479 $tagslabel->{$tag}->{$subfield}->{'attribute'}
481 where attribute takes values in :
499 my ($forlibrarian,$authtypecode)= @_;
500 my $dbh=C4
::Context
->dbh;
501 $authtypecode="" unless $authtypecode;
503 my $libfield = ($forlibrarian == 1)?
'liblibrarian' : 'libopac';
506 # check that authority exists
507 $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
508 $sth->execute($authtypecode);
509 my ($total) = $sth->fetchrow;
510 $authtypecode="" unless ($total >0);
512 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable
513 FROM auth_tag_structure
518 $sth->execute($authtypecode);
519 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
521 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
522 $res->{$tag}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
523 $res->{$tag}->{tab
} = " "; # XXX
524 $res->{$tag}->{mandatory
} = $mandatory;
525 $res->{$tag}->{repeatable
} = $repeatable;
528 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl,defaultvalue
529 FROM auth_subfield_structure
531 ORDER BY tagfield,tagsubfield"
533 $sth->execute($authtypecode);
536 my $authorised_value;
546 ( $tag, $subfield, $liblibrarian, , $libopac, $tab,
547 $mandatory, $repeatable, $authorised_value, $authtypecode,
548 $value_builder, $kohafield, $seealso, $hidden,
549 $isurl, $defaultvalue, $link )
553 $res->{$tag}->{$subfield}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
554 $res->{$tag}->{$subfield}->{tab
} = $tab;
555 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
556 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
557 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
558 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
559 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
560 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
561 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
562 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
563 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
564 $res->{$tag}->{$subfield}->{link} = $link;
565 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
572 $authid= &AddAuthority($record, $authid,$authtypecode)
574 Either Create Or Modify existing authority.
575 returns authid of the newly created authority
580 # pass the MARC::Record to this function, and it will create the records in the authority table
581 my ($record,$authid,$authtypecode) = @_;
582 my $dbh=C4
::Context
->dbh;
583 my $leader=' nz a22 o 4500';#Leader for incomplete MARC21 record
585 # if authid empty => true add, find a new authid number
587 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
588 $format= 'UNIMARCAUTH';
594 #update date/time to 005 for marc and unimarc
595 my $time=POSIX
::strftime
("%Y%m%d%H%M%S",localtime);
596 my $f5=$record->field('005');
598 $record->insert_fields_ordered( MARC
::Field
->new('005',$time.".0") );
601 $f5->update($time.".0");
604 SetUTF8Flag
($record);
605 if ($format eq "MARC21") {
606 if (!$record->leader) {
607 $record->leader($leader);
609 if (!$record->field('003')) {
610 $record->insert_fields_ordered(
611 MARC
::Field
->new('003',C4
::Context
->preference('MARCOrgCode'))
614 my $date=POSIX
::strftime
("%y%m%d",localtime);
615 if (!$record->field('008')) {
616 # Get a valid default value for field 008
617 my $default_008 = C4
::Context
->preference('MARCAuthorityControlField008');
618 if(!$default_008 or length($default_008)<34) {
619 $default_008 = '|| aca||aabn | a|a d';
622 $default_008 = substr($default_008,0,34);
625 $record->insert_fields_ordered( MARC
::Field
->new('008',$date.$default_008) );
627 if (!$record->field('040')) {
628 $record->insert_fields_ordered(
629 MARC
::Field
->new('040','','',
630 'a' => C4
::Context
->preference('MARCOrgCode'),
631 'c' => C4
::Context
->preference('MARCOrgCode')
637 if ($format eq "UNIMARCAUTH") {
638 $record->leader(" nx j22 ") unless ($record->leader());
639 my $date=POSIX
::strftime
("%Y%m%d",localtime);
640 my $defaultfield100 = C4
::Context
->preference('UNIMARCAuthorityField100');
641 if (my $string=$record->subfield('100',"a")){
642 $string=~s/fre50/frey50/;
643 $record->field('100')->update('a'=>$string);
645 elsif ($record->field('100')){
646 $record->field('100')->update('a'=>$date.$defaultfield100);
648 $record->append_fields(
649 MARC
::Field
->new('100',' ',' '
650 ,'a'=>$date.$defaultfield100)
654 my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location
($authtypecode);
655 if (!$authid and $format eq "MARC21") {
656 # only need to do this fix when modifying an existing authority
657 C4
::AuthoritiesMarc
::MARC21
::fix_marc21_auth_type_location
($record, $auth_type_tag, $auth_type_subfield);
659 if (my $field=$record->field($auth_type_tag)){
660 $field->update($auth_type_subfield=>$authtypecode);
663 $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode);
666 # Save record into auth_header, update 001
668 # Save a blank record, get authid
669 $dbh->do( "INSERT INTO auth_header (datecreated,marcxml) values (NOW(),?)", undef, '' );
670 $authid = $dbh->last_insert_id( undef, undef, 'auth_header', 'authid' );
671 logaction
( "AUTHORITIES", "ADD", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
673 # Insert/update the recordID in MARC record
674 $record->delete_field( $record->field('001') );
675 $record->insert_fields_ordered( MARC
::Field
->new( '001', $authid ) );
677 $dbh->do( "UPDATE auth_header SET authtypecode=?, marc=?, marcxml=? WHERE authid=?", undef, $authtypecode, $record->as_usmarc, $record->as_xml_record($format), $authid ) or die $DBI::errstr
;
678 ModZebra
( $authid, 'specialUpdate', 'authorityserver', $record );
685 DelAuthority({ authid => $authid });
687 Deletes $authid and calls merge to cleanup in linked biblio records
693 my $authid = $params->{authid
} || return;
694 my $dbh=C4
::Context
->dbh;
696 unless( C4
::Context
->preference('dontmerge') eq '1' ) {
697 &merge
({ mergefrom
=> $authid, MARCfrom
=> GetAuthority
($authid) });
699 # save a record in need_merge_authorities table
700 my $sqlinsert="INSERT INTO need_merge_authorities (authid, done) VALUES (?,?)";
701 $dbh->do( $sqlinsert, undef, $authid, 0 );
703 $dbh->do( "DELETE FROM auth_header WHERE authid=?", undef, $authid );
704 logaction
( "AUTHORITIES", "DELETE", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
705 ModZebra
( $authid, "recordDelete", "authorityserver", undef);
710 $authid= &ModAuthority($authid,$record,$authtypecode)
712 Modifies authority record, optionally updates attached biblios.
717 my ($authid,$record,$authtypecode)=@_; # deprecated $merge parameter removed
719 my $dbh=C4
::Context
->dbh;
720 #Now rewrite the $record to table with an add
721 my $oldrecord=GetAuthority
($authid);
722 $authid=AddAuthority
($record,$authid,$authtypecode);
724 # If a library thinks that updating all biblios is a long process and wishes
725 # to leave that to a cron job, use misc/migration_tools/merge_authority.pl.
726 # In that case set system preference "dontmerge" to 1. Otherwise biblios will
728 unless(C4
::Context
->preference('dontmerge') eq '1'){
729 &merge
({ mergefrom
=> $authid, MARCfrom
=> $oldrecord, mergeto
=> $authid, MARCto
=> $record });
731 # save a record in need_merge_authorities table
732 my $sqlinsert="INSERT INTO need_merge_authorities (authid, done) ".
734 $dbh->do($sqlinsert,undef,($authid,0));
736 logaction
( "AUTHORITIES", "MODIFY", $authid, "authority BEFORE=>" . $oldrecord->as_formatted ) if C4
::Context
->preference("AuthoritiesLog");
740 =head2 GetAuthorityXML
742 $marcxml= &GetAuthorityXML( $authid)
744 returns xml form of record $authid
748 sub GetAuthorityXML
{
749 # Returns MARC::XML of the authority passed in parameter.
751 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
752 my $dbh=C4
::Context
->dbh;
753 my $sth = $dbh->prepare("select marcxml from auth_header where authid=? " );
754 $sth->execute($authid);
755 my ($marcxml)=$sth->fetchrow;
759 # for MARC21, call GetAuthority instead of
760 # getting the XML directly since we may
761 # need to fix up the location of the authority
762 # code -- note that this is reasonably safe
763 # because GetAuthorityXML is used only by the
764 # indexing processes like zebraqueue_start.pl
765 my $record = GetAuthority
($authid);
766 return $record->as_xml_record('MARC21');
772 $record= &GetAuthority( $authid)
774 Returns MARC::Record of the authority passed in parameter.
780 my $authority = Koha
::MetadataRecord
::Authority
->get_from_authid($authid);
781 return unless $authority;
782 return ($authority->record);
785 =head2 FindDuplicateAuthority
787 $record= &FindDuplicateAuthority( $record, $authtypecode)
789 return $authid,Summary if duplicate is found.
791 Comments : an improvement would be to return All the records that match.
795 sub FindDuplicateAuthority
{
797 my ($record,$authtypecode)=@_;
798 # warn "IN for ".$record->as_formatted;
799 my $dbh = C4
::Context
->dbh;
800 # warn "".$record->as_formatted;
801 my $auth_tag_to_report = Koha
::Authority
::Types
->find($authtypecode)->auth_tag_to_report;
802 # warn "record :".$record->as_formatted." auth_tag_to_report :$auth_tag_to_report";
803 # build a request for SearchAuthorities
805 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
812 my $query='at:'.$authtypecode.' ';
813 my $filtervalues=qr
([\001-\040\Q
!'"`#$%&*+,-./:;<=>?@(){[}_|~\E\]]);
814 if ($record->field($auth_tag_to_report)) {
815 foreach ($record->field($auth_tag_to_report)->subfields()) {
816 $_->[1]=~s/$filtervalues/ /g; $query.= " $op he:\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/);
819 my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::AUTHORITIES_INDEX});
820 my ($error, $results, $total_hits) = $searcher->simple_search_compat( $query, 0, 1 );
821 # there is at least 1 result => return the 1st one
822 if (!defined $error && @{$results} ) {
823 my $marcrecord = C4::Search::new_record_from_zebra(
827 return $marcrecord->field('001')->data,BuildSummary($marcrecord,$marcrecord->field('001')->data,$authtypecode);
829 # no result, returns nothing
835 $summary= &BuildSummary( $record, $authid, $authtypecode)
837 Returns a hashref with a summary of the specified record.
839 Comment : authtypecode can be inferred from both record and authid.
840 Moreover, authid can also be inferred from $record.
841 Would it be interesting to delete those things.
846 ## give this a Marc record to return summary
847 my ($record,$authid,$authtypecode)=@_;
848 my $dbh=C4::Context->dbh;
850 my $summary_template;
851 # handle $authtypecode is NULL or eq ""
853 my $authref = Koha::Authority::Types->find($authtypecode);
855 $summary{authtypecode} = $authref->authtypecode;
856 $summary{type} = $authref->authtypetext;
857 $summary_template = $authref->summary;
858 # for MARC21, the authority type summary displays a label meant for
860 if (C4::Context->preference('marcflavour
') ne 'UNIMARC
') {
861 $summary{label} = $authref->summary;
863 $summary{summary} = $authref->summary;
867 my $marc21subfields = 'abcdfghjklmnopqrstuvxyz68
';
868 my %marc21controlrefs = ( 'a
' => 'earlier
',
874 'n
' => 'notapplicable
',
878 my %unimarc_relation_from_code = (
884 $thesaurus{'1'}="Peuples";
885 $thesaurus{'2'}="Anthroponymes";
886 $thesaurus{'3'}="Oeuvres";
887 $thesaurus{'4'}="Chronologie";
888 $thesaurus{'5'}="Lieux";
889 $thesaurus{'6'}="Sujets";
892 # if the library has a summary defined, use it. Otherwise, build a standard one
893 # FIXME - it appears that the summary field in the authority frameworks
894 # can work as a display template. However, this doesn't
895 # suit the MARC21 version, so for now the "templating"
896 # feature will be enabled only for UNIMARC for backwards
898 if ($summary{summary
} and C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
899 my @matches = ($summary{summary
} =~ m/\[(.*?)(\d{3})([\*a-z0-9])(.*?)\]/g);
900 my (@textbefore, @tag, @subtag, @textafter);
901 for(my $i = 0; $i < scalar @matches; $i++){
902 push @textbefore, $matches[$i] if($i%4 == 0);
903 push @tag, $matches[$i] if($i%4 == 1);
904 push @subtag, $matches[$i] if($i%4 == 2);
905 push @textafter, $matches[$i] if($i%4 == 3);
907 for(my $i = scalar @tag; $i >= 0; $i--){
908 my $textbefore = $textbefore[$i] || '';
909 my $tag = $tag[$i] || '';
910 my $subtag = $subtag[$i] || '';
911 my $textafter = $textafter[$i] || '';
913 my $field = $record->field($tag);
917 $value = $textbefore . $field->data() . $textafter;
920 my @subfields = $field->subfield($subtag);
922 $value = $textbefore . join (" - ", @subfields) . $textafter;
926 $summary{summary
} =~ s/\[\Q$textbefore$tag$subtag$textafter\E\]/$value/;
928 $summary{summary
} =~ s/\\n/<br \/>/g
;
935 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
936 # construct UNIMARC summary, that is quite different from MARC21 one
938 foreach my $field ($record->field('2..')) {
940 heading
=> $field->as_string('abcdefghijlmnopqrstuvwxyz'),
941 hemain
=> ( $field->subfield('a') // undef ),
942 field
=> $field->tag(),
946 foreach my $field ($record->field('3..')) {
947 push @notes, { note
=> $field->subfield('a'), field
=> $field->tag() };
949 foreach my $field ($record->field('4..')) {
950 my $thesaurus = $field->subfield('2') ?
"thes. : ".$thesaurus{"$field->subfield('2')"}." : " : '';
952 heading
=> $thesaurus . $field->as_string('abcdefghijlmnopqrstuvwxyz'),
953 hemain
=> ( $field->subfield('a') // undef ),
955 field
=> $field->tag(),
961 my $type = $unimarc_relation_from_code{$_->subfield('5') || 'a'};
962 my $heading = $_->as_string('abcdefgjxyz');
967 hemain
=> ( $_->subfield('a') // undef ),
969 authid
=> ( $_->subfield('9') // undef ),
971 } $record->field('5..');
974 @otherscript = map { {
975 lang
=> length ($_->subfield('8')) == 6 ?
substr ($_->subfield('8'), 3, 3) : $_->subfield('8') || '',
976 term
=> $_->subfield('a') . ($_->subfield('b') ?
', ' . $_->subfield('b') : ''),
979 } } $record->field('7..');
982 # construct MARC21 summary
983 # FIXME - looping over 1XX is questionable
984 # since MARC21 authority should have only one 1XX
985 my $subfields_to_report;
986 foreach my $field ($record->field('1..')) {
987 my $tag = $field->tag();
988 next if "152" eq $tag;
989 # FIXME - 152 is not a good tag to use
990 # in MARC21 -- purely local tags really ought to be
993 $subfields_to_report = 'abcdefghjklmnopqrstvxyz';
994 } elsif ($tag eq '110') {
995 $subfields_to_report = 'abcdefghklmnoprstvxyz';
996 } elsif ($tag eq '111') {
997 $subfields_to_report = 'acdefghklnpqstvxyz';
998 } elsif ($tag eq '130') {
999 $subfields_to_report = 'adfghklmnoprstvxyz';
1000 } elsif ($tag eq '148') {
1001 $subfields_to_report = 'abvxyz';
1002 } elsif ($tag eq '150') {
1003 $subfields_to_report = 'abvxyz';
1004 } elsif ($tag eq '151') {
1005 $subfields_to_report = 'avxyz';
1006 } elsif ($tag eq '155') {
1007 $subfields_to_report = 'abvxyz';
1008 } elsif ($tag eq '180') {
1009 $subfields_to_report = 'vxyz';
1010 } elsif ($tag eq '181') {
1011 $subfields_to_report = 'vxyz';
1012 } elsif ($tag eq '182') {
1013 $subfields_to_report = 'vxyz';
1014 } elsif ($tag eq '185') {
1015 $subfields_to_report = 'vxyz';
1017 if ($subfields_to_report) {
1019 heading
=> $field->as_string($subfields_to_report),
1020 hemain
=> ( $field->subfield( substr($subfields_to_report, 0, 1) ) // undef ),
1025 heading
=> $field->as_string(),
1026 hemain
=> ( $field->subfield( 'a' ) // undef ),
1031 foreach my $field ($record->field('4..')) { #See From
1032 my $type = 'seefrom';
1033 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1034 if ($type eq 'notapplicable') {
1035 $type = substr $field->subfield('w'), 2, 1;
1036 $type = 'earlier' if $type && $type ne 'n';
1038 if ($type eq 'subfi') {
1040 heading
=> $field->as_string($marc21subfields),
1041 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1042 type
=> ($field->subfield('i') || ''),
1043 field
=> $field->tag(),
1047 heading
=> $field->as_string($marc21subfields),
1048 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1050 field
=> $field->tag(),
1054 foreach my $field ($record->field('5..')) { #See Also
1055 my $type = 'seealso';
1056 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1057 if ($type eq 'notapplicable') {
1058 $type = substr $field->subfield('w'), 2, 1;
1059 $type = 'earlier' if $type && $type ne 'n';
1061 if ($type eq 'subfi') {
1063 heading
=> $field->as_string($marc21subfields),
1064 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1065 type
=> $field->subfield('i'),
1066 field
=> $field->tag(),
1067 search
=> $field->as_string($marc21subfields) || '',
1068 authid
=> $field->subfield('9') || ''
1072 heading
=> $field->as_string($marc21subfields),
1073 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1075 field
=> $field->tag(),
1076 search
=> $field->as_string($marc21subfields) || '',
1077 authid
=> $field->subfield('9') || ''
1081 foreach my $field ($record->field('6..')) {
1082 push @notes, { note
=> $field->as_string(), field
=> $field->tag() };
1084 foreach my $field ($record->field('880')) {
1085 my $linkage = $field->subfield('6');
1086 my $category = substr $linkage, 0, 1;
1087 if ($category eq '1') {
1088 $category = 'preferred';
1089 } elsif ($category eq '4') {
1090 $category = 'seefrom';
1091 } elsif ($category eq '5') {
1092 $category = 'seealso';
1095 if ($field->subfield('w')) {
1096 $type = $marc21controlrefs{substr $field->subfield('w'), '0'};
1100 my $direction = $linkage =~ m
#/r$# ? 'rtl' : 'ltr';
1101 push @otherscript, { term
=> $field->as_string($subfields_to_report), category
=> $category, type
=> $type, direction
=> $direction, linkage
=> $linkage };
1104 $summary{mainentry
} = $authorized[0]->{heading
};
1105 $summary{mainmainentry
} = $authorized[0]->{hemain
};
1106 $summary{authorized
} = \
@authorized;
1107 $summary{notes
} = \
@notes;
1108 $summary{seefrom
} = \
@seefrom;
1109 $summary{seealso
} = \
@seealso;
1110 $summary{otherscript
} = \
@otherscript;
1114 =head2 GetAuthorizedHeading
1116 $heading = &GetAuthorizedHeading({ record => $record, authid => $authid })
1118 Takes a MARC::Record object describing an authority record or an authid, and
1119 returns a string representation of the first authorized heading. This routine
1120 should be considered a temporary shim to ease the future migration of authority
1121 data from C4::AuthoritiesMarc to the object-oriented Koha::*::Authority.
1125 sub GetAuthorizedHeading
{
1128 unless ($record = $args->{record
}) {
1129 return unless $args->{authid
};
1130 $record = GetAuthority
($args->{authid
});
1132 return unless (ref $record eq 'MARC::Record');
1133 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
1134 # construct UNIMARC summary, that is quite different from MARC21 one
1136 foreach my $field ($record->field('2..')) {
1137 return $field->as_string('abcdefghijlmnopqrstuvwxyz');
1140 foreach my $field ($record->field('1..')) {
1141 my $tag = $field->tag();
1142 next if "152" eq $tag;
1143 # FIXME - 152 is not a good tag to use
1144 # in MARC21 -- purely local tags really ought to be
1146 if ($tag eq '100') {
1147 return $field->as_string('abcdefghjklmnopqrstvxyz68');
1148 } elsif ($tag eq '110') {
1149 return $field->as_string('abcdefghklmnoprstvxyz68');
1150 } elsif ($tag eq '111') {
1151 return $field->as_string('acdefghklnpqstvxyz68');
1152 } elsif ($tag eq '130') {
1153 return $field->as_string('adfghklmnoprstvxyz68');
1154 } elsif ($tag eq '148') {
1155 return $field->as_string('abvxyz68');
1156 } elsif ($tag eq '150') {
1157 return $field->as_string('abvxyz68');
1158 } elsif ($tag eq '151') {
1159 return $field->as_string('avxyz68');
1160 } elsif ($tag eq '155') {
1161 return $field->as_string('abvxyz68');
1162 } elsif ($tag eq '180') {
1163 return $field->as_string('vxyz68');
1164 } elsif ($tag eq '181') {
1165 return $field->as_string('vxyz68');
1166 } elsif ($tag eq '182') {
1167 return $field->as_string('vxyz68');
1168 } elsif ($tag eq '185') {
1169 return $field->as_string('vxyz68');
1171 return $field->as_string();
1178 =head2 BuildAuthHierarchies
1180 $text= &BuildAuthHierarchies( $authid, $force)
1182 return text containing trees for hierarchies
1183 for them to be stored in auth_header
1186 122,1314,2452;1324,2342,3,2452
1190 sub BuildAuthHierarchies
{
1191 my $authid = shift @_;
1192 # warn "authid : $authid";
1193 my $force = shift @_ || (C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
0 : 1);
1195 my $dbh=C4
::Context
->dbh;
1197 my $data = GetHeaderAuthority
($authid);
1198 if ($data->{'authtrees'} and not $force){
1199 return $data->{'authtrees'};
1200 # } elsif ($data->{'authtrees'}){
1201 # $hierarchies=$data->{'authtrees'};
1203 my $record = GetAuthority
($authid);
1205 return unless $record;
1206 foreach my $field ($record->field('5..')){
1209 (C4
::Context
->preference('marcflavour') eq 'UNIMARC' && $field->subfield('5') && $field->subfield('5') eq 'g') ||
1210 (C4
::Context
->preference('marcflavour') ne 'UNIMARC' && $field->subfield('w') && substr($field->subfield('w'), 0, 1) eq 'g'));
1212 my $subfauthid=_get_authid_subfield
($field) || '';
1213 next if ($subfauthid eq $authid);
1214 my $parentrecord = GetAuthority
($subfauthid);
1215 next unless $parentrecord;
1216 my $localresult=$hierarchies;
1218 $trees = BuildAuthHierarchies
($subfauthid);
1221 @trees = split(/;/,$trees);
1223 push @trees, $trees;
1228 @globalresult = (@globalresult,@trees);
1231 $hierarchies=join(";",@globalresult);
1233 #Unless there is no ancestor, I am alone.
1234 $hierarchies="$authid" unless ($hierarchies);
1236 AddAuthorityTrees
($authid,$hierarchies);
1237 return $hierarchies;
1240 =head2 BuildAuthHierarchy
1242 $ref= &BuildAuthHierarchy( $record, $class,$authid)
1244 return a hashref in order to display hierarchy for record and final Authid $authid
1255 sub BuildAuthHierarchy
{
1256 my $record = shift @_;
1257 my $class = shift @_;
1258 my $authid_constructed = shift @_;
1259 return unless ($record && $record->field('001'));
1260 my $authid=$record->field('001')->data();
1262 my $parents=""; my $children="";
1263 my (@loopparents,@loopchildren);
1264 my $marcflavour = C4
::Context
->preference('marcflavour');
1265 my $relationshipsf = $marcflavour eq 'UNIMARC' ?
'5' : 'w';
1266 foreach my $field ($record->field('5..')){
1267 my $subfauthid=_get_authid_subfield
($field);
1268 if ($subfauthid && $field->subfield($relationshipsf) && $field->subfield('a')){
1269 my $relationship = substr($field->subfield($relationshipsf), 0, 1);
1270 if ($relationship eq 'h'){
1271 push @loopchildren, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1273 elsif ($relationship eq 'g'){
1274 push @loopparents, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1276 # brothers could get in there with an else
1279 $cell{"parents"}=\
@loopparents;
1280 $cell{"children"}=\
@loopchildren;
1281 $cell{"class"}=$class;
1282 $cell{"authid"}=$authid;
1283 $cell{"current_value"} =1 if ($authid eq $authid_constructed);
1284 $cell{"value"}=C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
$record->subfield('2..',"a") : $record->subfield('1..', 'a');
1288 =head2 BuildAuthHierarchyBranch
1290 $branch = &BuildAuthHierarchyBranch( $tree, $authid[, $cnt])
1292 Return a data structure representing an authority hierarchy
1293 given a list of authorities representing a single branch in
1294 an authority hierarchy tree. $authid is the current node in
1295 the tree (which may or may not be somewhere in the middle).
1296 $cnt represents the level of the upper-most item, and is only
1297 used when BuildAuthHierarchyBranch is called recursively (i.e.,
1298 don't ever pass in anything but zero to it).
1302 sub BuildAuthHierarchyBranch
{
1303 my ($tree, $authid, $cnt) = @_;
1305 my $elementdata = GetAuthority
(shift @
$tree);
1306 my $branch = BuildAuthHierarchy
($elementdata,"child".$cnt, $authid);
1307 if (scalar @
$tree > 0) {
1308 my $nextBranch = BuildAuthHierarchyBranch
($tree, $authid, ++$cnt);
1309 my $nextAuthid = $nextBranch->{authid
};
1311 # If we already have the next branch listed as a child, let's
1312 # replace the old listing with the new one. If not, we will add
1313 # the branch at the end.
1314 foreach my $cell (@
{$branch->{children
}}) {
1315 if ($cell->{authid
} eq $nextAuthid) {
1316 $cell = $nextBranch;
1321 push @
{$branch->{children
}}, $nextBranch unless $found;
1326 =head2 GenerateHierarchy
1328 $hierarchy = &GenerateHierarchy($authid);
1330 Return an arrayref holding one or more "trees" representing
1331 authority hierarchies.
1335 sub GenerateHierarchy
{
1337 my $trees = BuildAuthHierarchies
($authid);
1338 my @trees = split /;/,$trees ;
1339 push @trees,$trees unless (@trees);
1340 my @loophierarchies;
1341 foreach my $tree (@trees){
1342 my @tree=split /,/,$tree;
1343 push @tree, $tree unless (@tree);
1344 my $branch = BuildAuthHierarchyBranch
(\
@tree, $authid);
1345 push @loophierarchies, [ $branch ];
1347 return \
@loophierarchies;
1350 sub _get_authid_subfield
{
1352 return $field->subfield('9')||$field->subfield('3');
1355 =head2 GetHeaderAuthority
1357 $ref= &GetHeaderAuthority( $authid)
1359 return a hashref in order auth_header table data
1363 sub GetHeaderAuthority
{
1364 my $authid = shift @_;
1365 my $sql= "SELECT * from auth_header WHERE authid = ?";
1366 my $dbh=C4
::Context
->dbh;
1367 my $rq= $dbh->prepare($sql);
1368 $rq->execute($authid);
1369 my $data= $rq->fetchrow_hashref;
1373 =head2 AddAuthorityTrees
1375 $ref= &AddAuthorityTrees( $authid, $trees)
1377 return success or failure
1381 sub AddAuthorityTrees
{
1382 my $authid = shift @_;
1383 my $trees = shift @_;
1384 my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1385 my $dbh=C4
::Context
->dbh;
1386 my $rq= $dbh->prepare($sql);
1387 return $rq->execute($trees,$authid);
1393 mergefrom => mergefrom,
1394 MARCfrom => $MARCfrom,
1395 [ mergeto => $mergeto, ]
1396 [ MARCto => $MARCto, ]
1399 Merge biblios linked to authority $mergefrom.
1400 If $mergeto equals mergefrom, the linked biblio field is updated.
1401 If $mergeto is different, the biblio field will be linked to $mergeto.
1402 If $mergeto is missing, the biblio field is deleted.
1404 Note: Although $mergefrom and $mergeto will normally be of the same
1405 authority type, merge also supports moving to another authority type.
1410 my ( $params ) = @_;
1411 my $mergefrom = $params->{mergefrom
};
1412 my $MARCfrom = $params->{MARCfrom
};
1413 my $mergeto = $params->{mergeto
};
1414 my $MARCto = $params->{MARCto
};
1416 return 0 unless $mergefrom > 0; # prevent abuse
1417 my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0);
1418 my $dbh=C4
::Context
->dbh;
1419 my $authfrom = Koha
::Authorities
->find($mergefrom);
1420 my $authto = Koha
::Authorities
->find($mergeto);
1421 my $authtypefrom = $authfrom ? Koha
::Authority
::Types
->find($authfrom->authtypecode) : undef;
1422 my $authtypeto = $authto ? Koha
::Authority
::Types
->find($authto->authtypecode) : undef;
1424 # search the tag to report
1425 my $auth_tag_to_report_from = $authtypefrom ?
$authtypefrom->auth_tag_to_report : '';
1426 my $auth_tag_to_report_to = $authtypeto ?
$authtypeto->auth_tag_to_report : '';
1429 @record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $auth_tag_to_report_to && $MARCto && $MARCto->field($auth_tag_to_report_to);
1431 @record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $auth_tag_to_report_from && $MARCfrom && $MARCfrom->field($auth_tag_to_report_from);
1434 # search all biblio tags using this authority.
1435 #Getting marcbiblios impacted by the change.
1437 my $oConnection=C4
::Context
->Zconn("biblioserver",0);
1438 # We used to use XML syntax here, but that no longer works.
1439 # Thankfully, we don't need it.
1441 $query= "an=".$mergefrom;
1442 my $oResult = $oConnection->search(new ZOOM
::Query
::CCL2RPN
( $query, $oConnection ));
1445 $count=$oResult->size();
1448 while ( $z<$count ) {
1449 my $marcrecordzebra = C4
::Search
::new_record_from_zebra
(
1451 $oResult->record($z)->raw()
1453 my ( $biblionumbertagfield, $biblionumbertagsubfield ) = &GetMarcFromKohaField
( "biblio.biblionumber", '' );
1454 my $i = ($biblionumbertagfield < 10)
1455 ?
$marcrecordzebra->field( $biblionumbertagfield )->data
1456 : $marcrecordzebra->subfield( $biblionumbertagfield, $biblionumbertagsubfield );
1457 my $marcrecorddb = GetMarcBiblio
($i);
1458 push @reccache, $marcrecorddb;
1461 $oResult->destroy();
1462 # Get All candidate Tags for the change
1463 # (This will reduce the search scope in marc records).
1464 # For a deleted authority record, we scan all auth controlled fields
1465 my $sql = "SELECT DISTINCT tagfield FROM marc_subfield_structure WHERE authtypecode=?";
1466 my $tags_using_authtype = $authtypefrom ?
$dbh->selectcol_arrayref( $sql, undef, ( $authtypefrom->authtypecode )) : $dbh->selectcol_arrayref( "SELECT DISTINCT tagfield FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>''" );
1468 if( $authtypefrom && $authtypeto && $authtypeto->authtypecode ne $authtypefrom->authtypecode ) {
1469 $tags_new = $dbh->selectcol_arrayref( $sql, undef, ( $authtypeto->authtypecode ));
1472 my $overwrite = C4
::Context
->preference( 'AuthorityMergeMode' ) eq 'strict';
1473 my $skip_subfields = $overwrite
1474 # This hash contains all subfields from the authority report fields
1475 # Including $MARCfrom as well as $MARCto
1476 # We only need it in loose merge mode; replaces the former $exclude
1478 : { map { ( $_->[0], 1 ); } ( @record_from, @record_to ) };
1479 # And we need to add $9 in order not to duplicate
1480 $skip_subfields->{9} = 1 if !$overwrite;
1482 foreach my $marcrecord(@reccache){
1484 foreach my $tagfield (@
$tags_using_authtype) {
1485 my $countfrom = 0; # used in strict mode to remove duplicates
1486 foreach my $field ( $marcrecord->field($tagfield) ) {
1487 my $auth_number = $field->subfield("9"); # link to authority
1488 my $tag = $field->tag();
1489 next if !defined($auth_number) || $auth_number ne $mergefrom;
1491 if ( !$mergeto || ( $overwrite && $countfrom > 1 ) ) {
1492 # if mergeto is missing, this indicates a delete
1493 # Or: remove this duplicate in strict mode
1494 $marcrecord->delete_field($field);
1498 my $newtag = $tags_new
1499 ? _merge_newtag
( $tag, $tags_new )
1501 my $field_to = MARC
::Field
->new(
1503 $field->indicator(1),
1504 $field->indicator(2),
1507 foreach my $subfield ( grep { $_->[0] ne '9' } @record_to ) {
1508 $field_to->add_subfields( $subfield->[0] => $subfield->[1] );
1510 if ( !$overwrite ) {
1511 # add subfields back in loose mode, check skip_subfields
1512 foreach my $subfield ( $field->subfields ) {
1513 next if $skip_subfields->{ $subfield->[0] };
1514 $field_to->add_subfields( $subfield->[0], $subfield->[1] );
1518 $marcrecord->delete_field($field);
1519 append_fields_ordered
( $marcrecord, $field_to );
1521 $field->replace_with($field_to);
1526 my ($bibliotag,$bibliosubf) = GetMarcFromKohaField
("biblio.biblionumber","") ;
1529 $biblionumber=$marcrecord->field($bibliotag)->data;
1532 $biblionumber=$marcrecord->subfield($bibliotag,$bibliosubf);
1534 unless ($biblionumber){
1535 warn "pas de numéro de notice bibliographique dans : ".$marcrecord->as_formatted;
1539 &ModBiblio
($marcrecord,$biblionumber,GetFrameworkCode
($biblionumber)) ;
1540 $counteditedbiblio++;
1541 warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG
});
1544 return $counteditedbiblio;
1548 # Routine is only called for an (exceptional) authtypecode change
1549 # Fixes old behavior of returning the first tag found
1550 my ( $oldtag, $new_tags ) = @_;
1552 # If we e.g. have 650 and 151,651,751 try 651 and check presence
1553 my $prefix = substr( $oldtag, 0, 1 );
1554 my $guess = $prefix . substr( $new_tags->[0], -2 );
1555 if( grep { $_ eq $guess } @
$new_tags ) {
1558 # Otherwise return one from the same block e.g. 6XX for 650
1559 # If not there too, fall back to first new tag (old behavior!)
1560 my @same_block = grep { /^$prefix/ } @
$new_tags;
1561 return @same_block ?
$same_block[0] : $new_tags->[0];
1564 sub append_fields_ordered
{
1565 # while we lack this function in MARC::Record
1566 # we do not want insert_fields_ordered since it inserts before
1567 my ( $record, $field ) = @_;
1568 if( my @flds = $record->field( $field->tag ) ) {
1569 $record->insert_fields_after( pop @flds, $field );
1570 } else { # now fallback to insert_fields_ordered
1571 $record->insert_fields_ordered( $field );
1575 =head2 get_auth_type_location
1577 my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1579 Get the tag and subfield used to store the heading type
1580 for indexing purposes. The C<$auth_type> parameter is
1581 optional; if it is not supplied, assume ''.
1583 This routine searches the MARC authority framework
1584 for the tag and subfield whose kohafield is
1585 C<auth_header.authtypecode>; if no such field is
1586 defined in the framework, default to the hardcoded value
1587 specific to the MARC format.
1591 sub get_auth_type_location
{
1592 my $auth_type_code = @_ ?
shift : '';
1594 my ($tag, $subfield) = GetAuthMARCFromKohaField
('auth_header.authtypecode', $auth_type_code);
1595 if (defined $tag and defined $subfield and $tag != 0 and $subfield ne '' and $subfield ne ' ') {
1596 return ($tag, $subfield);
1598 if (C4
::Context
->preference('marcflavour') eq "MARC21") {
1599 return C4
::AuthoritiesMarc
::MARC21
::default_auth_type_location
();
1601 return C4
::AuthoritiesMarc
::UNIMARC
::default_auth_type_location
();
1606 END { } # module clean-up code here (global destructor)
1613 Koha Development Team <http://koha-community.org/>
1615 Paul POULAIN paul.poulain@free.fr