1 package C4
::AuthoritiesMarc
;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use C4
::AuthoritiesMarc
::MARC21
;
27 use C4
::AuthoritiesMarc
::UNIMARC
;
30 use Koha
::MetadataRecord
::Authority
;
31 use Koha
::Authorities
;
32 use Koha
::Authority
::MergeRequest
;
33 use Koha
::Authority
::Types
;
36 use Koha
::SearchEngine
;
37 use Koha
::SearchEngine
::Search
;
39 use vars
qw(@ISA @EXPORT);
47 &GetAuthMARCFromKohaField
63 &FindDuplicateAuthority
75 =head2 GetAuthMARCFromKohaField
77 ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
79 returns tag and subfield linked to kohafield
82 Suppose Kohafield is only linked to ONE subfield
86 sub GetAuthMARCFromKohaField
{
87 #AUTHfind_marc_from_kohafield
88 my ( $kohafield,$authtypecode ) = @_;
89 my $dbh=C4
::Context
->dbh;
90 return 0, 0 unless $kohafield;
91 $authtypecode="" unless $authtypecode;
92 my $sth = $dbh->prepare("select tagfield,tagsubfield from auth_subfield_structure where kohafield= ? and authtypecode=? ");
93 $sth->execute($kohafield,$authtypecode);
94 my ($tagfield,$tagsubfield) = $sth->fetchrow;
96 return ($tagfield,$tagsubfield);
99 =head2 SearchAuthorities
101 (\@finalresult, $nbresults)= &SearchAuthorities($tags, $and_or,
102 $excluding, $operator, $value, $offset,$length,$authtypecode,
103 $sortby[, $skipmetadata])
105 returns ref to array result and count of results returned
109 sub SearchAuthorities
{
110 my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby,$skipmetadata) = @_;
111 # warn Dumper($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby);
112 my $dbh=C4
::Context
->dbh;
113 $sortby="" unless $sortby;
117 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
119 # the marclist may contain "mainentry". In this case, search the tag_to_report, that depends on
120 # the authtypecode. Then, search on $a of this tag_to_report
121 # also store main entry MARC tag, to extract it at end of search
123 ##first set the authtype search and may be multiple authorities
127 my @auths=split / /,$authtypecode ;
128 foreach my $auth (@auths){
129 $query .=" \@attr 1=authtype \@attr 5=100 ".$auth; ##No truncation on authtype
130 push @authtypecode ,$auth;
134 while ($n>1){$query= "\@or ".$query;$n--;}
137 $qpquery .= '(authtype:' . join('|| authtype:', @auths) . ')';
145 for ( my $i = 0 ; $i <= $#{$value} ; $i++ ) {
148 if ( @
$tags[$i] eq "mainmainentry" ) {
149 $attr = " \@attr 1=Heading-Main ";
151 elsif ( @
$tags[$i] eq "mainentry" ) {
152 $attr = " \@attr 1=Heading ";
154 elsif ( @
$tags[$i] eq "match" ) {
155 $attr = " \@attr 1=Match ";
157 elsif ( @
$tags[$i] eq "match-heading" ) {
158 $attr = " \@attr 1=Match-heading ";
160 elsif ( @
$tags[$i] eq "see-from" ) {
161 $attr = " \@attr 1=Match-heading-see-from ";
163 elsif ( @
$tags[$i] eq "thesaurus" ) {
164 $attr = " \@attr 1=Subject-heading-thesaurus ";
166 elsif ( @
$tags[$i] eq "all" ) {
167 $attr = " \@attr 1=Any ";
169 else { # Use the index passed in params
170 $attr = " \@attr 1=" . @
$tags[$i] . " ";
173 else { # Assume any if no index was specified
174 $attr = " \@attr 1=Any ";
177 my $operator = @
$operator[$i];
178 if ( $operator and $operator eq 'is' ) {
179 $attr .= " \@attr 4=1 \@attr 5=100 "
180 ; ##Phrase, No truncation,all of subfield field must match
182 elsif ( $operator and $operator eq "=" ) {
183 $attr .= " \@attr 4=107 "; #Number Exact match
185 elsif ( $operator and $operator eq "start" ) {
186 $attr .= " \@attr 3=2 \@attr 4=1 \@attr 5=1 "
187 ; #Firstinfield Phrase, Right truncated
189 elsif ( $operator and $operator eq "exact" ) {
190 $attr .= " \@attr 4=1 \@attr 5=100 \@attr 6=3 "
191 ; ##Phrase, No truncation,all of subfield field must match
194 $attr .= " \@attr 5=1 \@attr 4=6 "
195 ; ## Word list, right truncated, anywhere
196 if ( $sortby eq 'Relevance' ) {
197 $attr .= "\@attr 2=102 ";
201 s/"/\\"/g; # Escape the double-quotes in the search value
202 $attr = $attr . "\"" . @
$value[$i] . "\"";
207 $qpquery .= " $tags->[$i]:\"$value->[$i]\"";
211 ##Add how many queries generated
212 if (defined $query && $query=~/\S+/){
213 $query= $and x
$attr_cnt . $query . (defined $q2 ?
$q2 : '');
218 #$query=' @or @attr 7=2 @attr 1=Heading 0 @or @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
220 if ($sortby eq 'HeadingAsc') {
221 $orderstring = '@attr 7=1 @attr 1=Heading 0';
222 } elsif ($sortby eq 'HeadingDsc') {
223 $orderstring = '@attr 7=2 @attr 1=Heading 0';
224 } elsif ($sortby eq 'AuthidAsc') {
225 $orderstring = '@attr 7=1 @attr 4=109 @attr 1=Local-Number 0';
226 } elsif ($sortby eq 'AuthidDsc') {
227 $orderstring = '@attr 7=2 @attr 4=109 @attr 1=Local-Number 0';
230 $qpquery .= ' all:all' unless $value->[0];
232 if ( $value->[0] =~ m/^qp=(.*)$/ ) {
236 $qpquery .= " #$sortby" unless $sortby eq '';
238 $QParser->parse( $qpquery );
239 $query = $QParser->target_syntax('authorityserver');
241 $query=($query?
$query:"\@attr 1=_ALLRECORDS \@attr 2=103 ''");
242 $query="\@or $orderstring $query" if $orderstring;
245 $offset = 0 if not defined $offset or $offset < 0;
246 my $counter = $offset;
247 $length=10 unless $length;
250 $oAuth[0]=C4
::Context
->Zconn("authorityserver" , 1);
251 my $Anewq= new ZOOM
::Query
::PQF
($query,$oAuth[0]);
253 $oAResult= $oAuth[0]->search($Anewq) ;
254 while (($i = ZOOM
::event
(\
@oAuth)) != 0) {
255 my $ev = $oAuth[$i-1]->last_event();
256 last if $ev == ZOOM
::Event
::ZEND
;
258 my($error, $errmsg, $addinfo, $diagset) = $oAuth[0]->error_x();
260 warn "oAuth error: $errmsg ($error) $addinfo $diagset\n";
265 $nbresults=$oAResult->size();
266 my $nremains=$nbresults;
268 my @finalresult = ();
272 ##Find authid and linkid fields
273 ##we may be searching multiple authoritytypes.
274 ## FIXME this assumes that all authid and linkid fields are the same for all authority types
275 # my ($authidfield,$authidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.authid",$authtypecode[0]);
276 # my ($linkidfield,$linkidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.linkid",$authtypecode[0]);
277 while (($counter < $nbresults) && ($counter < ($offset + $length))) {
279 ##Here we have to extract MARC record and $authid from ZEBRA AUTHORITIES
280 my $rec=$oAResult->record($counter);
281 my $separator=C4
::Context
->preference('AuthoritySeparator');
282 my $authrecord = C4
::Search
::new_record_from_zebra
(
287 if ( !defined $authrecord or !defined $authrecord->field('001') ) {
292 SetUTF8Flag
( $authrecord );
294 my $authid=$authrecord->field('001')->data();
296 $newline{authid
} = $authid;
297 if ( !$skipmetadata ) {
298 my $auth_tag_to_report;
299 $auth_tag_to_report = Koha
::Authority
::Types
->find($authtypecode)->auth_tag_to_report
302 my $mainentry = $authrecord->field($auth_tag_to_report);
304 foreach ( $mainentry->subfields() ) {
305 $reported_tag .= '$' . $_->[0] . $_->[1];
309 my ( $thisauthtype, $thisauthtypecode );
310 if ( my $authority = Koha
::Authorities
->find($authid) ) {
311 $thisauthtypecode = $authority->authtypecode;
312 $thisauthtype = Koha
::Authority
::Types
->find($thisauthtypecode);
314 unless (defined $thisauthtype) {
315 $thisauthtypecode = $authtypecode;
316 $thisauthtype = Koha
::Authority
::Types
->find($thisauthtypecode);
318 my $summary = BuildSummary
( $authrecord, $authid, $thisauthtypecode );
320 $newline{authtype
} = defined($thisauthtype) ?
321 $thisauthtype->authtypetext : '';
322 $newline{summary
} = $summary;
323 $newline{even
} = $counter % 2;
324 $newline{reported_tag
} = $reported_tag;
327 push @finalresult, \
%newline;
330 if (! $skipmetadata) {
331 for (my $z=0; $z<@finalresult; $z++){
332 my $count = Koha
::Authorities
->get_usage_count({ authid
=> $finalresult[$z]{authid
} });
333 $finalresult[$z]{used
}=$count;
339 $oAResult->destroy();
340 # $oAuth[0]->destroy();
342 return (\
@finalresult, $nbresults);
345 =head2 GuessAuthTypeCode
347 my $authtypecode = GuessAuthTypeCode($record);
349 Get the record and tries to guess the adequate authtypecode from its content.
353 sub GuessAuthTypeCode
{
354 my ($record, $heading_fields) = @_;
355 return unless defined $record;
356 $heading_fields //= {
358 '100'=>{authtypecode
=>'PERSO_NAME'},
359 '110'=>{authtypecode
=>'CORPO_NAME'},
360 '111'=>{authtypecode
=>'MEETI_NAME'},
361 '130'=>{authtypecode
=>'UNIF_TITLE'},
362 '148'=>{authtypecode
=>'CHRON_TERM'},
363 '150'=>{authtypecode
=>'TOPIC_TERM'},
364 '151'=>{authtypecode
=>'GEOGR_NAME'},
365 '155'=>{authtypecode
=>'GENRE/FORM'},
366 '180'=>{authtypecode
=>'GEN_SUBDIV'},
367 '181'=>{authtypecode
=>'GEO_SUBDIV'},
368 '182'=>{authtypecode
=>'CHRON_SUBD'},
369 '185'=>{authtypecode
=>'FORM_SUBD'},
371 #200 Personal name 700, 701, 702 4-- with embedded 700, 701, 702 600
372 # 604 with embedded 700, 701, 702
373 #210 Corporate or meeting name 710, 711, 712 4-- with embedded 710, 711, 712 601 604 with embedded 710, 711, 712
374 #215 Territorial or geographic name 710, 711, 712 4-- with embedded 710, 711, 712 601, 607 604 with embedded 710, 711, 712
375 #216 Trademark 716 [Reserved for future use]
376 #220 Family name 720, 721, 722 4-- with embedded 720, 721, 722 602 604 with embedded 720, 721, 722
377 #230 Title 500 4-- with embedded 500 605
378 #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
379 #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
380 #250 Topical subject 606
381 #260 Place access 620
382 #280 Form, genre or physical characteristics 608
385 # Could also be represented with :
387 #a = personal name entry
388 #b = corporate name entry
389 #c = territorial or geographical name
393 #g = collective uniform title
395 #i = name/collective uniform title
398 #l = form, genre or physical characteristics
400 '200'=>{authtypecode
=>'NP'},
401 '210'=>{authtypecode
=>'CO'},
402 '215'=>{authtypecode
=>'SNG'},
403 '216'=>{authtypecode
=>'TM'},
404 '220'=>{authtypecode
=>'FAM'},
405 '230'=>{authtypecode
=>'TU'},
406 '235'=>{authtypecode
=>'CO_UNI_TI'},
407 '240'=>{authtypecode
=>'SAUTTIT'},
408 '245'=>{authtypecode
=>'NAME_COL'},
409 '250'=>{authtypecode
=>'SNC'},
410 '260'=>{authtypecode
=>'PA'},
411 '280'=>{authtypecode
=>'GENRE/FORM'},
414 foreach my $field (keys %{$heading_fields->{uc(C4
::Context
->preference('marcflavour'))} }) {
415 return $heading_fields->{uc(C4
::Context
->preference('marcflavour'))}->{$field}->{'authtypecode'} if (defined $record->field($field));
422 my $authtid = GuessAuthId($record);
424 Get the record and tries to guess the adequate authtypecode from its content.
430 return unless ($record && $record->field('001'));
431 # my $authtypecode=GuessAuthTypeCode($record);
432 # my ($tag,$subfield)=GetAuthMARCFromKohaField("auth_header.authid",$authtypecode);
433 # if ($tag > 010) {return $record->subfield($tag,$subfield)}
434 # else {return $record->field($tag)->data}
435 return $record->field('001')->data;
440 $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
442 returns a ref to hashref of authorities tag and subfield structure.
446 $tagslabel->{$tag}->{$subfield}->{'attribute'}
448 where attribute takes values in :
466 my ($forlibrarian,$authtypecode)= @_;
467 my $dbh=C4
::Context
->dbh;
468 $authtypecode="" unless $authtypecode;
470 my $libfield = ($forlibrarian == 1)?
'liblibrarian' : 'libopac';
473 # check that authority exists
474 $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
475 $sth->execute($authtypecode);
476 my ($total) = $sth->fetchrow;
477 $authtypecode="" unless ($total >0);
479 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable
480 FROM auth_tag_structure
485 $sth->execute($authtypecode);
486 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
488 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
489 $res->{$tag}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
490 $res->{$tag}->{tab
} = " "; # XXX
491 $res->{$tag}->{mandatory
} = $mandatory;
492 $res->{$tag}->{repeatable
} = $repeatable;
495 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl,defaultvalue
496 FROM auth_subfield_structure
498 ORDER BY tagfield,tagsubfield"
500 $sth->execute($authtypecode);
503 my $authorised_value;
513 ( $tag, $subfield, $liblibrarian, , $libopac, $tab,
514 $mandatory, $repeatable, $authorised_value, $authtypecode,
515 $value_builder, $kohafield, $seealso, $hidden,
516 $isurl, $defaultvalue, $link )
520 $res->{$tag}->{$subfield}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
521 $res->{$tag}->{$subfield}->{tab
} = $tab;
522 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
523 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
524 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
525 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
526 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
527 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
528 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
529 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
530 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
531 $res->{$tag}->{$subfield}->{link} = $link;
532 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
539 $authid= &AddAuthority($record, $authid,$authtypecode)
541 Either Create Or Modify existing authority.
542 returns authid of the newly created authority
547 # pass the MARC::Record to this function, and it will create the records in the authority table
548 my ($record,$authid,$authtypecode) = @_;
549 my $dbh=C4
::Context
->dbh;
550 my $leader=' nz a22 o 4500';#Leader for incomplete MARC21 record
552 # if authid empty => true add, find a new authid number
554 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
555 $format= 'UNIMARCAUTH';
561 #update date/time to 005 for marc and unimarc
562 my $time=POSIX
::strftime
("%Y%m%d%H%M%S",localtime);
563 my $f5=$record->field('005');
565 $record->insert_fields_ordered( MARC
::Field
->new('005',$time.".0") );
568 $f5->update($time.".0");
571 SetUTF8Flag
($record);
572 if ($format eq "MARC21") {
573 my $userenv = C4
::Context
->userenv;
575 my $marcorgcode = C4
::Context
->preference('MARCOrgCode');
576 if ( $userenv && $userenv->{'branch'} ) {
577 $library = Koha
::Libraries
->find( $userenv->{'branch'} );
578 # userenv's library could not exist because of a trick in misc/commit_file.pl (see FIXME and set_userenv statement)
579 $marcorgcode = $library ?
$library->get_effective_marcorgcode : $marcorgcode;
581 if (!$record->leader) {
582 $record->leader($leader);
584 if (!$record->field('003')) {
585 $record->insert_fields_ordered(
586 MARC
::Field
->new('003', $marcorgcode),
589 my $date=POSIX
::strftime
("%y%m%d",localtime);
590 if (!$record->field('008')) {
591 # Get a valid default value for field 008
592 my $default_008 = C4
::Context
->preference('MARCAuthorityControlField008');
593 if(!$default_008 or length($default_008)<34) {
594 $default_008 = '|| aca||aabn | a|a d';
597 $default_008 = substr($default_008,0,34);
600 $record->insert_fields_ordered( MARC
::Field
->new('008',$date.$default_008) );
602 if (!$record->field('040')) {
603 $record->insert_fields_ordered(
604 MARC
::Field
->new('040','','',
612 if ($format eq "UNIMARCAUTH") {
613 $record->leader(" nx j22 ") unless ($record->leader());
614 my $date=POSIX
::strftime
("%Y%m%d",localtime);
615 my $defaultfield100 = C4
::Context
->preference('UNIMARCAuthorityField100');
616 if (my $string=$record->subfield('100',"a")){
617 $string=~s/fre50/frey50/;
618 $record->field('100')->update('a'=>$string);
620 elsif ($record->field('100')){
621 $record->field('100')->update('a'=>$date.$defaultfield100);
623 $record->append_fields(
624 MARC
::Field
->new('100',' ',' '
625 ,'a'=>$date.$defaultfield100)
629 my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location
($authtypecode);
630 if (!$authid and $format eq "MARC21") {
631 # only need to do this fix when modifying an existing authority
632 C4
::AuthoritiesMarc
::MARC21
::fix_marc21_auth_type_location
($record, $auth_type_tag, $auth_type_subfield);
634 if (my $field=$record->field($auth_type_tag)){
635 $field->update($auth_type_subfield=>$authtypecode);
638 $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode);
641 # Save record into auth_header, update 001
643 # Save a blank record, get authid
644 $dbh->do( "INSERT INTO auth_header (datecreated,marcxml) values (NOW(),?)", undef, '' );
645 $authid = $dbh->last_insert_id( undef, undef, 'auth_header', 'authid' );
646 logaction
( "AUTHORITIES", "ADD", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
648 # Insert/update the recordID in MARC record
649 $record->delete_field( $record->field('001') );
650 $record->insert_fields_ordered( MARC
::Field
->new( '001', $authid ) );
652 $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
;
653 ModZebra
( $authid, 'specialUpdate', 'authorityserver', $record );
660 DelAuthority({ authid => $authid, [ skip_merge => 1 ] });
662 Deletes $authid and calls merge to cleanup linked biblio records.
663 Parameter skip_merge is used in authorities/merge.pl. You should normally not
670 my $authid = $params->{authid
} || return;
671 my $skip_merge = $params->{skip_merge
};
672 my $dbh = C4
::Context
->dbh;
673 merge
({ mergefrom
=> $authid }) if !$skip_merge;
674 $dbh->do( "DELETE FROM auth_header WHERE authid=?", undef, $authid );
675 logaction
( "AUTHORITIES", "DELETE", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
676 ModZebra
( $authid, "recordDelete", "authorityserver", undef);
681 $authid= &ModAuthority($authid,$record,$authtypecode)
683 Modifies authority record, optionally updates attached biblios.
688 my ( $authid, $record, $authtypecode ) = @_;
689 my $oldrecord = GetAuthority
($authid);
690 #Now rewrite the $record to table with an add
691 $authid = AddAuthority
($record, $authid, $authtypecode);
692 merge
({ mergefrom
=> $authid, MARCfrom
=> $oldrecord, mergeto
=> $authid, MARCto
=> $record });
693 logaction
( "AUTHORITIES", "MODIFY", $authid, "authority BEFORE=>" . $oldrecord->as_formatted ) if C4
::Context
->preference("AuthoritiesLog");
697 =head2 GetAuthorityXML
699 $marcxml= &GetAuthorityXML( $authid)
701 returns xml form of record $authid
705 sub GetAuthorityXML
{
706 # Returns MARC::XML of the authority passed in parameter.
708 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
709 my $dbh=C4
::Context
->dbh;
710 my $sth = $dbh->prepare("select marcxml from auth_header where authid=? " );
711 $sth->execute($authid);
712 my ($marcxml)=$sth->fetchrow;
716 # for MARC21, call GetAuthority instead of
717 # getting the XML directly since we may
718 # need to fix up the location of the authority
719 # code -- note that this is reasonably safe
720 # because GetAuthorityXML is used only by the
721 # indexing processes like zebraqueue_start.pl
722 my $record = GetAuthority
($authid);
723 return $record->as_xml_record('MARC21');
729 $record= &GetAuthority( $authid)
731 Returns MARC::Record of the authority passed in parameter.
737 my $authority = Koha
::MetadataRecord
::Authority
->get_from_authid($authid);
738 return unless $authority;
739 return ($authority->record);
742 =head2 FindDuplicateAuthority
744 $record= &FindDuplicateAuthority( $record, $authtypecode)
746 return $authid,Summary if duplicate is found.
748 Comments : an improvement would be to return All the records that match.
752 sub FindDuplicateAuthority
{
754 my ($record,$authtypecode)=@_;
755 # warn "IN for ".$record->as_formatted;
756 my $dbh = C4
::Context
->dbh;
757 # warn "".$record->as_formatted;
758 my $auth_tag_to_report = Koha
::Authority
::Types
->find($authtypecode)->auth_tag_to_report;
759 # warn "record :".$record->as_formatted." auth_tag_to_report :$auth_tag_to_report";
760 # build a request for SearchAuthorities
762 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
769 my $query='at:'.$authtypecode.' ';
770 my $filtervalues=qr
([\001-\040\Q
!'"`#$%&*+,-./:;<=>?@(){[}_|~\E\]]);
771 if ($record->field($auth_tag_to_report)) {
772 foreach ($record->field($auth_tag_to_report)->subfields()) {
773 $_->[1]=~s/$filtervalues/ /g; $query.= " $op he:\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/);
776 my $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::AUTHORITIES_INDEX});
777 my ($error, $results, $total_hits) = $searcher->simple_search_compat( $query, 0, 1, [ 'authorityserver
' ] );
778 # there is at least 1 result => return the 1st one
779 if (!defined $error && @{$results} ) {
780 my $marcrecord = C4::Search::new_record_from_zebra(
784 return $marcrecord->field('001')->data,BuildSummary($marcrecord,$marcrecord->field('001')->data,$authtypecode);
786 # no result, returns nothing
792 $summary= &BuildSummary( $record, $authid, $authtypecode)
794 Returns a hashref with a summary of the specified record.
796 Comment : authtypecode can be inferred from both record and authid.
797 Moreover, authid can also be inferred from $record.
798 Would it be interesting to delete those things.
803 ## give this a Marc record to return summary
804 my ($record,$authid,$authtypecode)=@_;
805 my $dbh=C4::Context->dbh;
807 my $summary_template;
808 # handle $authtypecode is NULL or eq ""
810 my $authref = Koha::Authority::Types->find($authtypecode);
812 $summary{authtypecode} = $authref->authtypecode;
813 $summary{type} = $authref->authtypetext;
814 $summary_template = $authref->summary;
815 # for MARC21, the authority type summary displays a label meant for
817 if (C4::Context->preference('marcflavour
') ne 'UNIMARC
') {
818 $summary{label} = $authref->summary;
820 $summary{summary} = $authref->summary;
824 my $marc21subfields = 'abcdfghjklmnopqrstuvxyz68
';
825 my %marc21controlrefs = ( 'a
' => 'earlier
',
831 'n
' => 'notapplicable
',
835 my %unimarc_relation_from_code = (
841 $thesaurus{'1'}="Peuples";
842 $thesaurus{'2'}="Anthroponymes";
843 $thesaurus{'3'}="Oeuvres";
844 $thesaurus{'4'}="Chronologie";
845 $thesaurus{'5'}="Lieux";
846 $thesaurus{'6'}="Sujets";
849 # if the library has a summary defined, use it. Otherwise, build a standard one
850 # FIXME - it appears that the summary field in the authority frameworks
851 # can work as a display template. However, this doesn't
852 # suit the MARC21 version, so for now the "templating"
853 # feature will be enabled only for UNIMARC for backwards
855 if ($summary{summary
} and C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
856 my @matches = ($summary{summary
} =~ m/\[(.*?)(\d{3})([\*a-z0-9])(.*?)\]/g);
857 my (@textbefore, @tag, @subtag, @textafter);
858 for(my $i = 0; $i < scalar @matches; $i++){
859 push @textbefore, $matches[$i] if($i%4 == 0);
860 push @tag, $matches[$i] if($i%4 == 1);
861 push @subtag, $matches[$i] if($i%4 == 2);
862 push @textafter, $matches[$i] if($i%4 == 3);
864 for(my $i = scalar @tag; $i >= 0; $i--){
865 my $textbefore = $textbefore[$i] || '';
866 my $tag = $tag[$i] || '';
867 my $subtag = $subtag[$i] || '';
868 my $textafter = $textafter[$i] || '';
870 my $field = $record->field($tag);
874 $value = $textbefore . $field->data() . $textafter;
877 my @subfields = $field->subfield($subtag);
879 $value = $textbefore . join (" - ", @subfields) . $textafter;
883 $summary{summary
} =~ s/\[\Q$textbefore$tag$subtag$textafter\E\]/$value/;
885 $summary{summary
} =~ s/\\n/<br \/>/g
;
892 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
893 # construct UNIMARC summary, that is quite different from MARC21 one
895 foreach my $field ($record->field('2..')) {
897 heading
=> $field->as_string('abcdefghijlmnopqrstuvwxyz'),
898 hemain
=> ( $field->subfield('a') // undef ),
899 field
=> $field->tag(),
903 foreach my $field ($record->field('3..')) {
904 push @notes, { note
=> $field->subfield('a'), field
=> $field->tag() };
906 foreach my $field ($record->field('4..')) {
907 my $thesaurus = $field->subfield('2') ?
"thes. : ".$thesaurus{"$field->subfield('2')"}." : " : '';
909 heading
=> $thesaurus . $field->as_string('abcdefghijlmnopqrstuvwxyz'),
910 hemain
=> ( $field->subfield('a') // undef ),
912 field
=> $field->tag(),
918 my $type = $unimarc_relation_from_code{$_->subfield('5') || 'a'};
919 my $heading = $_->as_string('abcdefgjxyz');
924 hemain
=> ( $_->subfield('a') // undef ),
926 authid
=> ( $_->subfield('9') // undef ),
928 } $record->field('5..');
931 @otherscript = map { {
932 lang
=> length ($_->subfield('8')) == 6 ?
substr ($_->subfield('8'), 3, 3) : $_->subfield('8') || '',
933 term
=> $_->subfield('a') . ($_->subfield('b') ?
', ' . $_->subfield('b') : ''),
936 } } $record->field('7..');
939 # construct MARC21 summary
940 # FIXME - looping over 1XX is questionable
941 # since MARC21 authority should have only one 1XX
942 my $subfields_to_report;
943 foreach my $field ($record->field('1..')) {
944 my $tag = $field->tag();
945 next if "152" eq $tag;
946 # FIXME - 152 is not a good tag to use
947 # in MARC21 -- purely local tags really ought to be
950 $subfields_to_report = 'abcdefghjklmnopqrstvxyz';
951 } elsif ($tag eq '110') {
952 $subfields_to_report = 'abcdefghklmnoprstvxyz';
953 } elsif ($tag eq '111') {
954 $subfields_to_report = 'acdefghklnpqstvxyz';
955 } elsif ($tag eq '130') {
956 $subfields_to_report = 'adfghklmnoprstvxyz';
957 } elsif ($tag eq '148') {
958 $subfields_to_report = 'abvxyz';
959 } elsif ($tag eq '150') {
960 $subfields_to_report = 'abvxyz';
961 } elsif ($tag eq '151') {
962 $subfields_to_report = 'avxyz';
963 } elsif ($tag eq '155') {
964 $subfields_to_report = 'abvxyz';
965 } elsif ($tag eq '180') {
966 $subfields_to_report = 'vxyz';
967 } elsif ($tag eq '181') {
968 $subfields_to_report = 'vxyz';
969 } elsif ($tag eq '182') {
970 $subfields_to_report = 'vxyz';
971 } elsif ($tag eq '185') {
972 $subfields_to_report = 'vxyz';
974 if ($subfields_to_report) {
976 heading
=> $field->as_string($subfields_to_report),
977 hemain
=> ( $field->subfield( substr($subfields_to_report, 0, 1) ) // undef ),
982 heading
=> $field->as_string(),
983 hemain
=> ( $field->subfield( 'a' ) // undef ),
988 foreach my $field ($record->field('4..')) { #See From
989 my $type = 'seefrom';
990 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
991 if ($type eq 'notapplicable') {
992 $type = substr $field->subfield('w'), 2, 1;
993 $type = 'earlier' if $type && $type ne 'n';
995 if ($type eq 'subfi') {
997 heading
=> $field->as_string($marc21subfields),
998 hemain
=> scalar $field->subfield( substr($marc21subfields, 0, 1) ),
999 type
=> ($field->subfield('i') || ''),
1000 field
=> $field->tag(),
1004 heading
=> $field->as_string($marc21subfields),
1005 hemain
=> scalar $field->subfield( substr($marc21subfields, 0, 1) ),
1007 field
=> $field->tag(),
1011 foreach my $field ($record->field('5..')) { #See Also
1012 my $type = 'seealso';
1013 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1014 if ($type eq 'notapplicable') {
1015 $type = substr $field->subfield('w'), 2, 1;
1016 $type = 'earlier' if $type && $type ne 'n';
1018 if ($type eq 'subfi') {
1020 heading
=> $field->as_string($marc21subfields),
1021 hemain
=> scalar $field->subfield( substr($marc21subfields, 0, 1) ),
1022 type
=> scalar $field->subfield('i'),
1023 field
=> $field->tag(),
1024 search
=> $field->as_string($marc21subfields) || '',
1025 authid
=> $field->subfield('9') || ''
1029 heading
=> $field->as_string($marc21subfields),
1030 hemain
=> scalar $field->subfield( substr($marc21subfields, 0, 1) ),
1032 field
=> $field->tag(),
1033 search
=> $field->as_string($marc21subfields) || '',
1034 authid
=> $field->subfield('9') || ''
1038 foreach my $field ($record->field('6..')) {
1039 push @notes, { note
=> $field->as_string(), field
=> $field->tag() };
1041 foreach my $field ($record->field('880')) {
1042 my $linkage = $field->subfield('6');
1043 my $category = substr $linkage, 0, 1;
1044 if ($category eq '1') {
1045 $category = 'preferred';
1046 } elsif ($category eq '4') {
1047 $category = 'seefrom';
1048 } elsif ($category eq '5') {
1049 $category = 'seealso';
1052 if ($field->subfield('w')) {
1053 $type = $marc21controlrefs{substr $field->subfield('w'), '0'};
1057 my $direction = $linkage =~ m
#/r$# ? 'rtl' : 'ltr';
1058 push @otherscript, { term
=> $field->as_string($subfields_to_report), category
=> $category, type
=> $type, direction
=> $direction, linkage
=> $linkage };
1061 $summary{mainentry
} = $authorized[0]->{heading
};
1062 $summary{mainmainentry
} = $authorized[0]->{hemain
};
1063 $summary{authorized
} = \
@authorized;
1064 $summary{notes
} = \
@notes;
1065 $summary{seefrom
} = \
@seefrom;
1066 $summary{seealso
} = \
@seealso;
1067 $summary{otherscript
} = \
@otherscript;
1071 =head2 GetAuthorizedHeading
1073 $heading = &GetAuthorizedHeading({ record => $record, authid => $authid })
1075 Takes a MARC::Record object describing an authority record or an authid, and
1076 returns a string representation of the first authorized heading. This routine
1077 should be considered a temporary shim to ease the future migration of authority
1078 data from C4::AuthoritiesMarc to the object-oriented Koha::*::Authority.
1082 sub GetAuthorizedHeading
{
1085 unless ($record = $args->{record
}) {
1086 return unless $args->{authid
};
1087 $record = GetAuthority
($args->{authid
});
1089 return unless (ref $record eq 'MARC::Record');
1090 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
1091 # construct UNIMARC summary, that is quite different from MARC21 one
1093 foreach my $field ($record->field('2..')) {
1094 return $field->as_string('abcdefghijlmnopqrstuvwxyz');
1097 foreach my $field ($record->field('1..')) {
1098 my $tag = $field->tag();
1099 next if "152" eq $tag;
1100 # FIXME - 152 is not a good tag to use
1101 # in MARC21 -- purely local tags really ought to be
1103 if ($tag eq '100') {
1104 return $field->as_string('abcdefghjklmnopqrstvxyz68');
1105 } elsif ($tag eq '110') {
1106 return $field->as_string('abcdefghklmnoprstvxyz68');
1107 } elsif ($tag eq '111') {
1108 return $field->as_string('acdefghklnpqstvxyz68');
1109 } elsif ($tag eq '130') {
1110 return $field->as_string('adfghklmnoprstvxyz68');
1111 } elsif ($tag eq '148') {
1112 return $field->as_string('abvxyz68');
1113 } elsif ($tag eq '150') {
1114 return $field->as_string('abvxyz68');
1115 } elsif ($tag eq '151') {
1116 return $field->as_string('avxyz68');
1117 } elsif ($tag eq '155') {
1118 return $field->as_string('abvxyz68');
1119 } elsif ($tag eq '180') {
1120 return $field->as_string('vxyz68');
1121 } elsif ($tag eq '181') {
1122 return $field->as_string('vxyz68');
1123 } elsif ($tag eq '182') {
1124 return $field->as_string('vxyz68');
1125 } elsif ($tag eq '185') {
1126 return $field->as_string('vxyz68');
1128 return $field->as_string();
1135 =head2 BuildAuthHierarchies
1137 $text= &BuildAuthHierarchies( $authid, $force)
1139 return text containing trees for hierarchies
1140 for them to be stored in auth_header
1143 122,1314,2452;1324,2342,3,2452
1147 sub BuildAuthHierarchies
{
1148 my $authid = shift @_;
1149 # warn "authid : $authid";
1150 my $force = shift @_ || (C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
0 : 1);
1152 my $dbh=C4
::Context
->dbh;
1154 my $data = GetHeaderAuthority
($authid);
1155 if ($data->{'authtrees'} and not $force){
1156 return $data->{'authtrees'};
1157 # } elsif ($data->{'authtrees'}){
1158 # $hierarchies=$data->{'authtrees'};
1160 my $record = GetAuthority
($authid);
1162 return unless $record;
1163 foreach my $field ($record->field('5..')){
1166 (C4
::Context
->preference('marcflavour') eq 'UNIMARC' && $field->subfield('5') && $field->subfield('5') eq 'g') ||
1167 (C4
::Context
->preference('marcflavour') ne 'UNIMARC' && $field->subfield('w') && substr($field->subfield('w'), 0, 1) eq 'g'));
1169 my $subfauthid=_get_authid_subfield
($field) || '';
1170 next if ($subfauthid eq $authid);
1171 my $parentrecord = GetAuthority
($subfauthid);
1172 next unless $parentrecord;
1173 my $localresult=$hierarchies;
1175 $trees = BuildAuthHierarchies
($subfauthid);
1178 @trees = split(/;/,$trees);
1180 push @trees, $trees;
1185 @globalresult = (@globalresult,@trees);
1188 $hierarchies=join(";",@globalresult);
1190 #Unless there is no ancestor, I am alone.
1191 $hierarchies="$authid" unless ($hierarchies);
1193 AddAuthorityTrees
($authid,$hierarchies);
1194 return $hierarchies;
1197 =head2 BuildAuthHierarchy
1199 $ref= &BuildAuthHierarchy( $record, $class,$authid)
1201 return a hashref in order to display hierarchy for record and final Authid $authid
1212 sub BuildAuthHierarchy
{
1213 my $record = shift @_;
1214 my $class = shift @_;
1215 my $authid_constructed = shift @_;
1216 return unless ($record && $record->field('001'));
1217 my $authid=$record->field('001')->data();
1219 my $parents=""; my $children="";
1220 my (@loopparents,@loopchildren);
1221 my $marcflavour = C4
::Context
->preference('marcflavour');
1222 my $relationshipsf = $marcflavour eq 'UNIMARC' ?
'5' : 'w';
1223 foreach my $field ($record->field('5..')){
1224 my $subfauthid=_get_authid_subfield
($field);
1225 if ($subfauthid && $field->subfield($relationshipsf) && $field->subfield('a')){
1226 my $relationship = substr($field->subfield($relationshipsf), 0, 1);
1227 if ($relationship eq 'h'){
1228 push @loopchildren, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1230 elsif ($relationship eq 'g'){
1231 push @loopparents, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1233 # brothers could get in there with an else
1236 $cell{"parents"}=\
@loopparents;
1237 $cell{"children"}=\
@loopchildren;
1238 $cell{"class"}=$class;
1239 $cell{"authid"}=$authid;
1240 $cell{"current_value"} =1 if ($authid eq $authid_constructed);
1241 $cell{"value"}=C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
$record->subfield('2..',"a") : $record->subfield('1..', 'a');
1245 =head2 BuildAuthHierarchyBranch
1247 $branch = &BuildAuthHierarchyBranch( $tree, $authid[, $cnt])
1249 Return a data structure representing an authority hierarchy
1250 given a list of authorities representing a single branch in
1251 an authority hierarchy tree. $authid is the current node in
1252 the tree (which may or may not be somewhere in the middle).
1253 $cnt represents the level of the upper-most item, and is only
1254 used when BuildAuthHierarchyBranch is called recursively (i.e.,
1255 don't ever pass in anything but zero to it).
1259 sub BuildAuthHierarchyBranch
{
1260 my ($tree, $authid, $cnt) = @_;
1262 my $elementdata = GetAuthority
(shift @
$tree);
1263 my $branch = BuildAuthHierarchy
($elementdata,"child".$cnt, $authid);
1264 if (scalar @
$tree > 0) {
1265 my $nextBranch = BuildAuthHierarchyBranch
($tree, $authid, ++$cnt);
1266 my $nextAuthid = $nextBranch->{authid
};
1268 # If we already have the next branch listed as a child, let's
1269 # replace the old listing with the new one. If not, we will add
1270 # the branch at the end.
1271 foreach my $cell (@
{$branch->{children
}}) {
1272 if ($cell->{authid
} eq $nextAuthid) {
1273 $cell = $nextBranch;
1278 push @
{$branch->{children
}}, $nextBranch unless $found;
1283 =head2 GenerateHierarchy
1285 $hierarchy = &GenerateHierarchy($authid);
1287 Return an arrayref holding one or more "trees" representing
1288 authority hierarchies.
1292 sub GenerateHierarchy
{
1294 my $trees = BuildAuthHierarchies
($authid);
1295 my @trees = split /;/,$trees ;
1296 push @trees,$trees unless (@trees);
1297 my @loophierarchies;
1298 foreach my $tree (@trees){
1299 my @tree=split /,/,$tree;
1300 push @tree, $tree unless (@tree);
1301 my $branch = BuildAuthHierarchyBranch
(\
@tree, $authid);
1302 push @loophierarchies, [ $branch ];
1304 return \
@loophierarchies;
1307 sub _get_authid_subfield
{
1309 return $field->subfield('9')||$field->subfield('3');
1312 =head2 GetHeaderAuthority
1314 $ref= &GetHeaderAuthority( $authid)
1316 return a hashref in order auth_header table data
1320 sub GetHeaderAuthority
{
1321 my $authid = shift @_;
1322 my $sql= "SELECT * from auth_header WHERE authid = ?";
1323 my $dbh=C4
::Context
->dbh;
1324 my $rq= $dbh->prepare($sql);
1325 $rq->execute($authid);
1326 my $data= $rq->fetchrow_hashref;
1330 =head2 AddAuthorityTrees
1332 $ref= &AddAuthorityTrees( $authid, $trees)
1334 return success or failure
1338 sub AddAuthorityTrees
{
1339 my $authid = shift @_;
1340 my $trees = shift @_;
1341 my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1342 my $dbh=C4
::Context
->dbh;
1343 my $rq= $dbh->prepare($sql);
1344 return $rq->execute($trees,$authid);
1350 mergefrom => $mergefrom,
1351 [ MARCfrom => $MARCfrom, ]
1352 [ mergeto => $mergeto, ]
1353 [ MARCto => $MARCto, ]
1354 [ biblionumbers => [ $a, $b, $c ], ]
1355 [ override_limit => 1, ]
1358 Merge biblios linked to authority $mergefrom (mandatory parameter).
1359 If $mergeto equals mergefrom, the linked biblio field is updated.
1360 If $mergeto is different, the biblio field will be linked to $mergeto.
1361 If $mergeto is missing, the biblio field is deleted.
1363 MARCfrom is used to determine if a cleared subfield in the authority record
1364 should be removed from a biblio. MARCto is used to populate the biblio
1365 record with the updated values; if you do not pass it, the biblio field
1366 will be deleted (same as missing mergeto).
1368 Normally all biblio records linked to $mergefrom, will be considered. But
1369 you can pass specific numbers via the biblionumbers parameter.
1371 The parameter override_limit is used by the cron job to force larger
1374 Note: Although $mergefrom and $mergeto will normally be of the same
1375 authority type, merge also supports moving to another authority type.
1380 my ( $params ) = @_;
1381 my $mergefrom = $params->{mergefrom
} || return;
1382 my $MARCfrom = $params->{MARCfrom
};
1383 my $mergeto = $params->{mergeto
};
1384 my $MARCto = $params->{MARCto
};
1385 my $override_limit = $params->{override_limit
};
1387 # If we do not have biblionumbers, we get all linked biblios if the
1388 # number of linked records does not exceed the limit UNLESS we override.
1390 if( $params->{biblionumbers
} ) {
1391 @biblionumbers = @
{ $params->{biblionumbers
} };
1392 } elsif( $override_limit ) {
1393 @biblionumbers = Koha
::Authorities
->linked_biblionumbers({ authid
=> $mergefrom });
1394 } else { # now first check number of linked records
1395 my $max = C4
::Context
->preference('AuthorityMergeLimit') // 0;
1396 my $hits = Koha
::Authorities
->get_usage_count({ authid
=> $mergefrom });
1397 if( $hits > 0 && $hits <= $max ) {
1398 @biblionumbers = Koha
::Authorities
->linked_biblionumbers({ authid
=> $mergefrom });
1399 } elsif( $hits > $max ) { #postpone this merge to the cron job
1400 Koha
::Authority
::MergeRequest
->new({
1401 authid
=> $mergefrom,
1402 oldrecord
=> $MARCfrom,
1403 authid_new
=> $mergeto,
1407 return 0 if !@biblionumbers;
1409 # Search authtypes and reporting tags
1410 my $authfrom = Koha
::Authorities
->find($mergefrom);
1411 my $authto = Koha
::Authorities
->find($mergeto);
1412 my $authtypefrom = $authfrom ? Koha
::Authority
::Types
->find($authfrom->authtypecode) : undef;
1413 my $authtypeto = $authto ? Koha
::Authority
::Types
->find($authto->authtypecode) : undef;
1414 my $auth_tag_to_report_from = $authtypefrom ?
$authtypefrom->auth_tag_to_report : '';
1415 my $auth_tag_to_report_to = $authtypeto ?
$authtypeto->auth_tag_to_report : '';
1418 @record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $auth_tag_to_report_to && $MARCto && $MARCto->field($auth_tag_to_report_to);
1419 # Exceptional: If MARCto and authtypeto exist but $auth_tag_to_report_to
1420 # is empty, make sure that $9 and $a remain (instead of clearing the
1421 # reference) in order to allow for data recovery.
1422 # Note: We need $a too, since a single $9 does not pass ModBiblio.
1423 if( $MARCto && $authtypeto && !@record_to ) {
1424 push @record_to, [ 'a', ' ' ]; # do not remove the space
1428 if( !$authfrom && $MARCfrom && $MARCfrom->field('1..','2..') ) {
1429 # postponed merge, authfrom was deleted and MARCfrom only contains the old reporting tag (and possibly a 100 for UNIMARC)
1430 # 2XX is for UNIMARC; we use -1 in order to skip 100 in UNIMARC; this will not impact MARC21, since there is only one tag
1431 @record_from = ( $MARCfrom->field('1..','2..') )[-1]->subfields;
1432 } elsif( $auth_tag_to_report_from && $MARCfrom && $MARCfrom->field($auth_tag_to_report_from) ) {
1433 @record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields;
1436 # Get all candidate tags for the change
1437 # (This will reduce the search scope in marc records).
1438 # For a deleted authority record, we scan all auth controlled fields
1439 my $dbh = C4
::Context
->dbh;
1440 my $sql = "SELECT DISTINCT tagfield FROM marc_subfield_structure WHERE authtypecode=?";
1441 my $tags_using_authtype = $authtypefrom && $authtypefrom->authtypecode ?
$dbh->selectcol_arrayref( $sql, undef, ( $authtypefrom->authtypecode )) : $dbh->selectcol_arrayref( "SELECT DISTINCT tagfield FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>''" );
1443 if( $authtypeto && ( !$authtypefrom || $authtypeto->authtypecode ne $authtypefrom->authtypecode )) {
1444 $tags_new = $dbh->selectcol_arrayref( $sql, undef, ( $authtypeto->authtypecode ));
1447 my $overwrite = C4
::Context
->preference( 'AuthorityMergeMode' ) eq 'strict';
1448 my $skip_subfields = $overwrite
1449 # This hash contains all subfields from the authority report fields
1450 # Including $MARCfrom as well as $MARCto
1451 # We only need it in loose merge mode; replaces the former $exclude
1453 : { map { ( $_->[0], 1 ); } ( @record_from, @record_to ) };
1455 my $counteditedbiblio = 0;
1456 foreach my $biblionumber ( @biblionumbers ) {
1457 my $marcrecord = GetMarcBiblio
({ biblionumber
=> $biblionumber });
1458 next if !$marcrecord;
1460 foreach my $tagfield (@
$tags_using_authtype) {
1461 my $countfrom = 0; # used in strict mode to remove duplicates
1462 foreach my $field ( $marcrecord->field($tagfield) ) {
1463 my $auth_number = $field->subfield("9"); # link to authority
1464 my $tag = $field->tag();
1465 next if !defined($auth_number) || $auth_number ne $mergefrom;
1467 if ( !$mergeto || !@record_to ||
1468 ( $overwrite && $countfrom > 1 ) ) {
1469 # !mergeto or !record_to indicates a delete
1470 # Other condition: remove this duplicate in strict mode
1471 $marcrecord->delete_field($field);
1475 my $newtag = $tags_new && @
$tags_new
1476 ? _merge_newtag
( $tag, $tags_new )
1478 my $controlled_ind = $authto->controlled_indicators({ record
=> $MARCto, biblio_tag
=> $newtag });
1479 my $field_to = MARC
::Field
->new(
1481 $controlled_ind->{ind1
} // $field->indicator(1),
1482 $controlled_ind->{ind2
} // $field->indicator(2),
1483 9 => $mergeto, # Needed to create field, will be moved
1485 my ( @prefix, @postfix );
1486 if ( !$overwrite ) {
1487 # add subfields back in loose mode, check skip_subfields
1488 # The first extra subfields will be in front of the
1489 # controlled block, the rest at the end.
1490 my $prefix_flag = 1;
1491 foreach my $subfield ( $field->subfields ) {
1492 next if $subfield->[0] eq '9'; # skip but leave flag
1493 if ( $skip_subfields->{ $subfield->[0] } ) {
1494 # This marks the beginning of the controlled block
1499 push @prefix, [ $subfield->[0], $subfield->[1] ];
1501 push @postfix, [ $subfield->[0], $subfield->[1] ];
1505 foreach my $subfield ( @prefix, @record_to, @postfix ) {
1506 $field_to->add_subfields($subfield->[0] => $subfield->[1]);
1508 if( exists $controlled_ind->{sub2
} ) { # thesaurus info
1509 if( defined $controlled_ind->{sub2
} ) {
1511 $field_to->update( 2 => $controlled_ind->{sub2
} );
1513 # Key alerts us here to remove $2
1514 $field_to->delete_subfield( code
=> '2' );
1517 # Move $9 to the end
1518 $field_to->delete_subfield( code
=> '9' );
1519 $field_to->add_subfields( 9 => $mergeto );
1521 if ($tags_new && @
$tags_new) {
1522 $marcrecord->delete_field($field);
1523 append_fields_ordered
( $marcrecord, $field_to );
1525 $field->replace_with($field_to);
1531 ModBiblio
($marcrecord, $biblionumber, GetFrameworkCode
($biblionumber));
1532 $counteditedbiblio++;
1534 return $counteditedbiblio;
1538 # Routine is only called for an (exceptional) authtypecode change
1539 # Fixes old behavior of returning the first tag found
1540 my ( $oldtag, $new_tags ) = @_;
1542 # If we e.g. have 650 and 151,651,751 try 651 and check presence
1543 my $prefix = substr( $oldtag, 0, 1 );
1544 my $guess = $prefix . substr( $new_tags->[0], -2 );
1545 if( grep { $_ eq $guess } @
$new_tags ) {
1548 # Otherwise return one from the same block e.g. 6XX for 650
1549 # If not there too, fall back to first new tag (old behavior!)
1550 my @same_block = grep { /^$prefix/ } @
$new_tags;
1551 return @same_block ?
$same_block[0] : $new_tags->[0];
1554 sub append_fields_ordered
{
1555 # while we lack this function in MARC::Record
1556 # we do not want insert_fields_ordered since it inserts before
1557 my ( $record, $field ) = @_;
1558 if( my @flds = $record->field( $field->tag ) ) {
1559 $record->insert_fields_after( pop @flds, $field );
1560 } else { # now fallback to insert_fields_ordered
1561 $record->insert_fields_ordered( $field );
1565 =head2 get_auth_type_location
1567 my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1569 Get the tag and subfield used to store the heading type
1570 for indexing purposes. The C<$auth_type> parameter is
1571 optional; if it is not supplied, assume ''.
1573 This routine searches the MARC authority framework
1574 for the tag and subfield whose kohafield is
1575 C<auth_header.authtypecode>; if no such field is
1576 defined in the framework, default to the hardcoded value
1577 specific to the MARC format.
1581 sub get_auth_type_location
{
1582 my $auth_type_code = @_ ?
shift : '';
1584 my ($tag, $subfield) = GetAuthMARCFromKohaField
('auth_header.authtypecode', $auth_type_code);
1585 if (defined $tag and defined $subfield and $tag != 0 and $subfield ne '' and $subfield ne ' ') {
1586 return ($tag, $subfield);
1588 if (C4
::Context
->preference('marcflavour') eq "MARC21") {
1589 return C4
::AuthoritiesMarc
::MARC21
::default_auth_type_location
();
1591 return C4
::AuthoritiesMarc
::UNIMARC
::default_auth_type_location
();
1596 END { } # module clean-up code here (global destructor)
1603 Koha Development Team <http://koha-community.org/>
1605 Paul POULAIN paul.poulain@free.fr