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
;
31 use vars
qw($VERSION @ISA @EXPORT);
34 # set the version for version checking
35 $VERSION = 3.07.00.049;
43 &GetAuthMARCFromKohaField
61 &FindDuplicateAuthority
73 =head2 GetAuthMARCFromKohaField
75 ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
77 returns tag and subfield linked to kohafield
80 Suppose Kohafield is only linked to ONE subfield
84 sub GetAuthMARCFromKohaField
{
85 #AUTHfind_marc_from_kohafield
86 my ( $kohafield,$authtypecode ) = @_;
87 my $dbh=C4
::Context
->dbh;
88 return 0, 0 unless $kohafield;
89 $authtypecode="" unless $authtypecode;
90 my $marcfromkohafield;
91 my $sth = $dbh->prepare("select tagfield,tagsubfield from auth_subfield_structure where kohafield= ? and authtypecode=? ");
92 $sth->execute($kohafield,$authtypecode);
93 my ($tagfield,$tagsubfield) = $sth->fetchrow;
95 return ($tagfield,$tagsubfield);
98 =head2 SearchAuthorities
100 (\@finalresult, $nbresults)= &SearchAuthorities($tags, $and_or,
101 $excluding, $operator, $value, $offset,$length,$authtypecode,
102 $sortby[, $skipmetadata])
104 returns ref to array result and count of results returned
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;
115 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
117 # the marclist may contain "mainentry". In this case, search the tag_to_report, that depends on
118 # the authtypecode. Then, search on $a of this tag_to_report
119 # also store main entry MARC tag, to extract it at end of search
121 ##first set the authtype search and may be multiple authorities
125 my @auths=split / /,$authtypecode ;
126 foreach my $auth (@auths){
127 $query .=" \@attr 1=authtype \@attr 5=100 ".$auth; ##No truncation on authtype
128 push @authtypecode ,$auth;
132 while ($n>1){$query= "\@or ".$query;$n--;}
135 $qpquery .= '(authtype:' . join('|| authtype:', @auths) . ')';
143 for ( my $i = 0 ; $i <= $#{$value} ; $i++ ) {
146 if ( @
$tags[$i] eq "mainmainentry" ) {
147 $attr = " \@attr 1=Heading-Main ";
149 elsif ( @
$tags[$i] eq "mainentry" ) {
150 $attr = " \@attr 1=Heading ";
152 elsif ( @
$tags[$i] eq "match" ) {
153 $attr = " \@attr 1=Match ";
155 elsif ( @
$tags[$i] eq "match-heading" ) {
156 $attr = " \@attr 1=Match-heading ";
158 elsif ( @
$tags[$i] eq "see-from" ) {
159 $attr = " \@attr 1=Match-heading-see-from ";
161 elsif ( @
$tags[$i] eq "thesaurus" ) {
162 $attr = " \@attr 1=Subject-heading-thesaurus ";
164 else { # Assume any if no index was specified
165 $attr = " \@attr 1=Any ";
168 else { # Assume any if no index was specified
169 $attr = " \@attr 1=Any ";
172 my $operator = @
$operator[$i];
173 if ( $operator and $operator eq 'is' ) {
174 $attr .= " \@attr 4=1 \@attr 5=100 "
175 ; ##Phrase, No truncation,all of subfield field must match
177 elsif ( $operator and $operator eq "=" ) {
178 $attr .= " \@attr 4=107 "; #Number Exact match
180 elsif ( $operator and $operator eq "start" ) {
181 $attr .= " \@attr 3=2 \@attr 4=1 \@attr 5=1 "
182 ; #Firstinfield Phrase, Right truncated
184 elsif ( $operator and $operator eq "exact" ) {
185 $attr .= " \@attr 4=1 \@attr 5=100 \@attr 6=3 "
186 ; ##Phrase, No truncation,all of subfield field must match
189 $attr .= " \@attr 5=1 \@attr 4=6 "
190 ; ## Word list, right truncated, anywhere
191 if ( $sortby eq 'Relevance' ) {
192 $attr .= "\@attr 2=102 ";
196 s/"/\\"/g; # Escape the double-quotes in the search value
197 $attr = $attr . "\"" . @
$value[$i] . "\"";
202 $qpquery .= " $tags->[$i]:\"$value->[$i]\"";
206 ##Add how many queries generated
207 if (defined $query && $query=~/\S+/){
208 $query= $and x
$attr_cnt . $query . (defined $q2 ?
$q2 : '');
213 #$query=' @or @attr 7=2 @attr 1=Heading 0 @or @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
215 if ($sortby eq 'HeadingAsc') {
216 $orderstring = '@attr 7=1 @attr 1=Heading 0';
217 } elsif ($sortby eq 'HeadingDsc') {
218 $orderstring = '@attr 7=2 @attr 1=Heading 0';
219 } elsif ($sortby eq 'AuthidAsc') {
220 $orderstring = '@attr 7=1 @attr 4=109 @attr 1=Local-Number 0';
221 } elsif ($sortby eq 'AuthidDsc') {
222 $orderstring = '@attr 7=2 @attr 4=109 @attr 1=Local-Number 0';
225 $qpquery .= ' all:all' unless $value->[0];
227 if ( $value->[0] =~ m/^qp=(.*)$/ ) {
231 $qpquery .= " #$sortby" unless $sortby eq '';
233 $QParser->parse( $qpquery );
234 $query = $QParser->target_syntax('authorityserver');
236 $query=($query?
$query:"\@attr 1=_ALLRECORDS \@attr 2=103 ''");
237 $query="\@or $orderstring $query" if $orderstring;
240 $offset=0 unless $offset;
241 my $counter = $offset;
242 $length=10 unless $length;
245 $oAuth[0]=C4
::Context
->Zconn("authorityserver" , 1);
246 my $Anewq= new ZOOM
::Query
::PQF
($query,$oAuth[0]);
248 $oAResult= $oAuth[0]->search($Anewq) ;
249 while (($i = ZOOM
::event
(\
@oAuth)) != 0) {
250 my $ev = $oAuth[$i-1]->last_event();
251 last if $ev == ZOOM
::Event
::ZEND
;
253 my($error, $errmsg, $addinfo, $diagset) = $oAuth[0]->error_x();
255 warn "oAuth error: $errmsg ($error) $addinfo $diagset\n";
260 $nbresults=$oAResult->size();
261 my $nremains=$nbresults;
263 my @finalresult = ();
267 ##Find authid and linkid fields
268 ##we may be searching multiple authoritytypes.
269 ## FIXME this assumes that all authid and linkid fields are the same for all authority types
270 # my ($authidfield,$authidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.authid",$authtypecode[0]);
271 # my ($linkidfield,$linkidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.linkid",$authtypecode[0]);
272 while (($counter < $nbresults) && ($counter < ($offset + $length))) {
274 ##Here we have to extract MARC record and $authid from ZEBRA AUTHORITIES
275 my $rec=$oAResult->record($counter);
276 my $separator=C4
::Context
->preference('AuthoritySeparator');
277 my $authrecord = C4
::Search
::new_record_from_zebra
(
282 if ( !defined $authrecord or !defined $authrecord->field('001') ) {
287 SetUTF8Flag
( $authrecord );
289 my $authid=$authrecord->field('001')->data();
291 $newline{authid
} = $authid;
292 if ( !$skipmetadata ) {
294 "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
295 my $sth = $dbh->prepare($query_auth_tag);
296 $sth->execute($authtypecode);
297 my $auth_tag_to_report = $sth->fetchrow;
299 my $mainentry = $authrecord->field($auth_tag_to_report);
301 foreach ( $mainentry->subfields() ) {
302 $reported_tag .= '$' . $_->[0] . $_->[1];
305 my $thisauthtypecode = GetAuthTypeCode
($authid);
306 my $thisauthtype = GetAuthType
($thisauthtypecode);
307 unless (defined $thisauthtype) {
308 $thisauthtypecode = $authtypecode;
309 $thisauthtype = GetAuthType
($authtypecode);
311 my $summary = BuildSummary
( $authrecord, $authid, $thisauthtypecode );
313 $newline{authtype
} = defined($thisauthtype) ?
314 $thisauthtype->{'authtypetext'} : '';
315 $newline{summary
} = $summary;
316 $newline{even
} = $counter % 2;
317 $newline{reported_tag
} = $reported_tag;
320 push @finalresult, \
%newline;
323 if (! $skipmetadata) {
324 for (my $z=0; $z<@finalresult; $z++){
325 my $count=CountUsage
($finalresult[$z]{authid
});
326 $finalresult[$z]{used
}=$count;
332 $oAResult->destroy();
333 # $oAuth[0]->destroy();
335 return (\
@finalresult, $nbresults);
340 $count= &CountUsage($authid)
342 counts Usage of Authid in bibliorecords.
350 $query= "an:".$authid;
351 my ($err,$res,$result) = C4
::Search
::SimpleSearch
($query,0,10);
353 warn "Error: $err from search $query";
360 =head2 CountUsageChildren
362 $count= &CountUsageChildren($authid)
364 counts Usage of narrower terms of Authid in bibliorecords.
368 sub CountUsageChildren
{
372 =head2 GetAuthTypeCode
374 $authtypecode= &GetAuthTypeCode($authid)
376 returns authtypecode of an authid
380 sub GetAuthTypeCode
{
381 #AUTHfind_authtypecode
383 my $dbh=C4
::Context
->dbh;
384 my $sth = $dbh->prepare("select authtypecode from auth_header where authid=?");
385 $sth->execute($authid);
386 my $authtypecode = $sth->fetchrow;
387 return $authtypecode;
390 =head2 GuessAuthTypeCode
392 my $authtypecode = GuessAuthTypeCode($record);
394 Get the record and tries to guess the adequate authtypecode from its content.
398 sub GuessAuthTypeCode
{
399 my ($record, $heading_fields) = @_;
400 return unless defined $record;
401 $heading_fields //= {
403 '100'=>{authtypecode
=>'PERSO_NAME'},
404 '110'=>{authtypecode
=>'CORPO_NAME'},
405 '111'=>{authtypecode
=>'MEETI_NAME'},
406 '130'=>{authtypecode
=>'UNIF_TITLE'},
407 '148'=>{authtypecode
=>'CHRON_TERM'},
408 '150'=>{authtypecode
=>'TOPIC_TERM'},
409 '151'=>{authtypecode
=>'GEOGR_NAME'},
410 '155'=>{authtypecode
=>'GENRE/FORM'},
411 '180'=>{authtypecode
=>'GEN_SUBDIV'},
412 '181'=>{authtypecode
=>'GEO_SUBDIV'},
413 '182'=>{authtypecode
=>'CHRON_SUBD'},
414 '185'=>{authtypecode
=>'FORM_SUBD'},
416 #200 Personal name 700, 701, 702 4-- with embedded 700, 701, 702 600
417 # 604 with embedded 700, 701, 702
418 #210 Corporate or meeting name 710, 711, 712 4-- with embedded 710, 711, 712 601 604 with embedded 710, 711, 712
419 #215 Territorial or geographic name 710, 711, 712 4-- with embedded 710, 711, 712 601, 607 604 with embedded 710, 711, 712
420 #216 Trademark 716 [Reserved for future use]
421 #220 Family name 720, 721, 722 4-- with embedded 720, 721, 722 602 604 with embedded 720, 721, 722
422 #230 Title 500 4-- with embedded 500 605
423 #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
424 #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
425 #250 Topical subject 606
426 #260 Place access 620
427 #280 Form, genre or physical characteristics 608
430 # Could also be represented with :
432 #a = personal name entry
433 #b = corporate name entry
434 #c = territorial or geographical name
438 #g = collective uniform title
440 #i = name/collective uniform title
443 #l = form, genre or physical characteristics
445 '200'=>{authtypecode
=>'NP'},
446 '210'=>{authtypecode
=>'CO'},
447 '215'=>{authtypecode
=>'SNG'},
448 '216'=>{authtypecode
=>'TM'},
449 '220'=>{authtypecode
=>'FAM'},
450 '230'=>{authtypecode
=>'TU'},
451 '235'=>{authtypecode
=>'CO_UNI_TI'},
452 '240'=>{authtypecode
=>'SAUTTIT'},
453 '245'=>{authtypecode
=>'NAME_COL'},
454 '250'=>{authtypecode
=>'SNC'},
455 '260'=>{authtypecode
=>'PA'},
456 '280'=>{authtypecode
=>'GENRE/FORM'},
459 foreach my $field (keys %{$heading_fields->{uc(C4
::Context
->preference('marcflavour'))} }) {
460 return $heading_fields->{uc(C4
::Context
->preference('marcflavour'))}->{$field}->{'authtypecode'} if (defined $record->field($field));
467 my $authtid = GuessAuthId($record);
469 Get the record and tries to guess the adequate authtypecode from its content.
475 return unless ($record && $record->field('001'));
476 # my $authtypecode=GuessAuthTypeCode($record);
477 # my ($tag,$subfield)=GetAuthMARCFromKohaField("auth_header.authid",$authtypecode);
478 # if ($tag > 010) {return $record->subfield($tag,$subfield)}
479 # else {return $record->field($tag)->data}
480 return $record->field('001')->data;
485 $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
487 returns a ref to hashref of authorities tag and subfield structure.
491 $tagslabel->{$tag}->{$subfield}->{'attribute'}
493 where attribute takes values in :
511 my ($forlibrarian,$authtypecode)= @_;
512 my $dbh=C4
::Context
->dbh;
513 $authtypecode="" unless $authtypecode;
515 my $libfield = ($forlibrarian == 1)?
'liblibrarian' : 'libopac';
518 # check that authority exists
519 $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
520 $sth->execute($authtypecode);
521 my ($total) = $sth->fetchrow;
522 $authtypecode="" unless ($total >0);
524 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable
525 FROM auth_tag_structure
530 $sth->execute($authtypecode);
531 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
533 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
534 $res->{$tag}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
535 $res->{$tag}->{tab
} = " "; # XXX
536 $res->{$tag}->{mandatory
} = $mandatory;
537 $res->{$tag}->{repeatable
} = $repeatable;
540 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl,defaultvalue
541 FROM auth_subfield_structure
543 ORDER BY tagfield,tagsubfield"
545 $sth->execute($authtypecode);
548 my $authorised_value;
558 ( $tag, $subfield, $liblibrarian, , $libopac, $tab,
559 $mandatory, $repeatable, $authorised_value, $authtypecode,
560 $value_builder, $kohafield, $seealso, $hidden,
561 $isurl, $defaultvalue, $link )
565 $res->{$tag}->{$subfield}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
566 $res->{$tag}->{$subfield}->{tab
} = $tab;
567 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
568 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
569 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
570 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
571 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
572 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
573 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
574 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
575 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
576 $res->{$tag}->{$subfield}->{link} = $link;
577 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
584 $authid= &AddAuthority($record, $authid,$authtypecode)
586 Either Create Or Modify existing authority.
587 returns authid of the newly created authority
592 # pass the MARC::Record to this function, and it will create the records in the authority table
593 my ($record,$authid,$authtypecode) = @_;
594 my $dbh=C4
::Context
->dbh;
595 my $leader=' nz a22 o 4500';#Leader for incomplete MARC21 record
597 # if authid empty => true add, find a new authid number
599 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
600 $format= 'UNIMARCAUTH';
606 #update date/time to 005 for marc and unimarc
607 my $time=POSIX
::strftime
("%Y%m%d%H%M%S",localtime);
608 my $f5=$record->field('005');
610 $record->insert_fields_ordered( MARC
::Field
->new('005',$time.".0") );
613 $f5->update($time.".0");
616 SetUTF8Flag
($record);
617 if ($format eq "MARC21") {
618 if (!$record->leader) {
619 $record->leader($leader);
621 if (!$record->field('003')) {
622 $record->insert_fields_ordered(
623 MARC
::Field
->new('003',C4
::Context
->preference('MARCOrgCode'))
626 my $date=POSIX
::strftime
("%y%m%d",localtime);
627 if (!$record->field('008')) {
628 # Get a valid default value for field 008
629 my $default_008 = C4
::Context
->preference('MARCAuthorityControlField008');
630 if(!$default_008 or length($default_008)<34) {
631 $default_008 = '|| aca||aabn | a|a d';
634 $default_008 = substr($default_008,0,34);
637 $record->insert_fields_ordered( MARC
::Field
->new('008',$date.$default_008) );
639 if (!$record->field('040')) {
640 $record->insert_fields_ordered(
641 MARC
::Field
->new('040','','',
642 'a' => C4
::Context
->preference('MARCOrgCode'),
643 'c' => C4
::Context
->preference('MARCOrgCode')
649 if ($format eq "UNIMARCAUTH") {
650 $record->leader(" nx j22 ") unless ($record->leader());
651 my $date=POSIX
::strftime
("%Y%m%d",localtime);
652 my $defaultfield100 = C4
::Context
->preference('UNIMARCAuthorityField100');
653 if (my $string=$record->subfield('100',"a")){
654 $string=~s/fre50/frey50/;
655 $record->field('100')->update('a'=>$string);
657 elsif ($record->field('100')){
658 $record->field('100')->update('a'=>$date.$defaultfield100);
660 $record->append_fields(
661 MARC
::Field
->new('100',' ',' '
662 ,'a'=>$date.$defaultfield100)
666 my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location
($authtypecode);
667 if (!$authid and $format eq "MARC21") {
668 # only need to do this fix when modifying an existing authority
669 C4
::AuthoritiesMarc
::MARC21
::fix_marc21_auth_type_location
($record, $auth_type_tag, $auth_type_subfield);
671 if (my $field=$record->field($auth_type_tag)){
672 $field->update($auth_type_subfield=>$authtypecode);
675 $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode);
681 my $sth=$dbh->prepare("select max(authid) from auth_header");
683 ($authid)=$sth->fetchrow;
685 ##Insert the recordID in MARC record
686 unless ($record->field('001') && $record->field('001')->data() eq $authid){
687 $record->delete_field($record->field('001'));
688 $record->insert_fields_ordered(MARC
::Field
->new('001',$authid));
691 $auth_exists=$dbh->do(qq(select authid from auth_header where authid
=?
),undef,$authid);
692 # warn "auth_exists = $auth_exists";
695 $oldRecord=GetAuthority
($authid);
696 $record->add_fields('001',$authid) unless ($record->field('001'));
697 # warn "\n\n\n enregistrement".$record->as_formatted;
698 my $sth=$dbh->prepare("update auth_header set authtypecode=?,marc=?,marcxml=? where authid=?");
699 $sth->execute($authtypecode,$record->as_usmarc,$record->as_xml_record($format),$authid) or die $sth->errstr;
703 my $sth=$dbh->prepare("insert into auth_header (authid,datecreated,authtypecode,marc,marcxml) values (?,now(),?,?,?)");
704 $sth->execute($authid,$authtypecode,$record->as_usmarc,$record->as_xml_record($format));
706 logaction
( "AUTHORITIES", "ADD", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
708 ModZebra
($authid,'specialUpdate',"authorityserver",$oldRecord,$record);
715 $authid= &DelAuthority($authid)
723 my $dbh=C4
::Context
->dbh;
725 logaction
( "AUTHORITIES", "DELETE", $authid, "authority" ) if C4
::Context
->preference("AuthoritiesLog");
726 ModZebra
($authid,"recordDelete","authorityserver",GetAuthority
($authid),undef);
727 my $sth = $dbh->prepare("DELETE FROM auth_header WHERE authid=?");
728 $sth->execute($authid);
733 $authid= &ModAuthority($authid,$record,$authtypecode)
735 Modifies authority record, optionally updates attached biblios.
740 my ($authid,$record,$authtypecode)=@_; # deprecated $merge parameter removed
742 my $dbh=C4
::Context
->dbh;
743 #Now rewrite the $record to table with an add
744 my $oldrecord=GetAuthority
($authid);
745 $authid=AddAuthority
($record,$authid,$authtypecode);
747 # If a library thinks that updating all biblios is a long process and wishes
748 # to leave that to a cron job, use misc/migration_tools/merge_authority.pl.
749 # In that case set system preference "dontmerge" to 1. Otherwise biblios will
751 unless(C4
::Context
->preference('dontmerge') eq '1'){
752 &merge
($authid,$oldrecord,$authid,$record);
754 # save a record in need_merge_authorities table
755 my $sqlinsert="INSERT INTO need_merge_authorities (authid, done) ".
757 $dbh->do($sqlinsert,undef,($authid,0));
759 logaction
( "AUTHORITIES", "MODIFY", $authid, "authority BEFORE=>" . $oldrecord->as_formatted ) if C4
::Context
->preference("AuthoritiesLog");
763 =head2 GetAuthorityXML
765 $marcxml= &GetAuthorityXML( $authid)
767 returns xml form of record $authid
771 sub GetAuthorityXML
{
772 # Returns MARC::XML of the authority passed in parameter.
774 if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC') {
775 my $dbh=C4
::Context
->dbh;
776 my $sth = $dbh->prepare("select marcxml from auth_header where authid=? " );
777 $sth->execute($authid);
778 my ($marcxml)=$sth->fetchrow;
782 # for MARC21, call GetAuthority instead of
783 # getting the XML directly since we may
784 # need to fix up the location of the authority
785 # code -- note that this is reasonably safe
786 # because GetAuthorityXML is used only by the
787 # indexing processes like zebraqueue_start.pl
788 my $record = GetAuthority
($authid);
789 return $record->as_xml_record('MARC21');
795 $record= &GetAuthority( $authid)
797 Returns MARC::Record of the authority passed in parameter.
803 my $authority = Koha
::Authority
->get_from_authid($authid);
804 return unless $authority;
805 return ($authority->record);
810 $result = &GetAuthType($authtypecode)
812 If the authority type specified by C<$authtypecode> exists,
813 returns a hashref of the type's fields. If the type
814 does not exist, returns undef.
819 my ($authtypecode) = @_;
820 my $dbh=C4
::Context
->dbh;
822 if (defined $authtypecode){ # NOTE - in MARC21 framework, '' is a valid authority
823 # type (FIXME but why?)
824 $sth=$dbh->prepare("select * from auth_types where authtypecode=?");
825 $sth->execute($authtypecode);
826 if (my $res = $sth->fetchrow_hashref) {
834 =head2 FindDuplicateAuthority
836 $record= &FindDuplicateAuthority( $record, $authtypecode)
838 return $authid,Summary if duplicate is found.
840 Comments : an improvement would be to return All the records that match.
844 sub FindDuplicateAuthority
{
846 my ($record,$authtypecode)=@_;
847 # warn "IN for ".$record->as_formatted;
848 my $dbh = C4
::Context
->dbh;
849 # warn "".$record->as_formatted;
850 my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
851 $sth->execute($authtypecode);
852 my ($auth_tag_to_report) = $sth->fetchrow;
854 # warn "record :".$record->as_formatted." auth_tag_to_report :$auth_tag_to_report";
855 # build a request for SearchAuthorities
857 $QParser = C4
::Context
->queryparser if (C4
::Context
->preference('UseQueryParser'));
864 my $query='at:'.$authtypecode.' ';
865 my $filtervalues=qr
([\001-\040\Q
!'"`#$%&*+,-./:;<=>?@(){[}_|~\E\]]);
866 if ($record->field($auth_tag_to_report)) {
867 foreach ($record->field($auth_tag_to_report)->subfields()) {
868 $_->[1]=~s/$filtervalues/ /g; $query.= " $op he:\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/);
871 my ($error, $results, $total_hits) = C4::Search::SimpleSearch( $query, 0, 1, [ "authorityserver" ] );
872 # there is at least 1 result => return the 1st one
873 if (!defined $error && @{$results} ) {
874 my $marcrecord = C4::Search::new_record_from_zebra(
878 return $marcrecord->field('001')->data,BuildSummary($marcrecord,$marcrecord->field('001')->data,$authtypecode);
880 # no result, returns nothing
886 $summary= &BuildSummary( $record, $authid, $authtypecode)
888 Returns a hashref with a summary of the specified record.
890 Comment : authtypecode can be infered from both record and authid.
891 Moreover, authid can also be inferred from $record.
892 Would it be interesting to delete those things.
897 ## give this a Marc record to return summary
898 my ($record,$authid,$authtypecode)=@_;
899 my $dbh=C4::Context->dbh;
901 my $summary_template;
902 # handle $authtypecode is NULL or eq ""
904 my $authref = GetAuthType($authtypecode);
905 $summary{authtypecode} = $authref->{authtypecode};
906 $summary{type} = $authref->{authtypetext};
907 $summary_template = $authref->{summary};
908 # for MARC21, the authority type summary displays a label meant for
910 if (C4::Context->preference('marcflavour
') ne 'UNIMARC
') {
911 $summary{label} = $authref->{summary};
913 $summary{summary} = $authref->{summary};
916 my $marc21subfields = 'abcdfghjklmnopqrstuvxyz68
';
917 my %marc21controlrefs = ( 'a
' => 'earlier
',
923 'n
' => 'notapplicable
',
927 my %unimarc_relation_from_code = (
933 $thesaurus{'1'}="Peuples";
934 $thesaurus{'2'}="Anthroponymes";
935 $thesaurus{'3'}="Oeuvres";
936 $thesaurus{'4'}="Chronologie";
937 $thesaurus{'5'}="Lieux";
938 $thesaurus{'6'}="Sujets";
941 # if the library has a summary defined, use it. Otherwise, build a standard one
942 # FIXME - it appears that the summary field in the authority frameworks
943 # can work as a display template. However, this doesn't
944 # suit the MARC21 version, so for now the "templating"
945 # feature will be enabled only for UNIMARC for backwards
947 if ($summary{summary
} and C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
948 my @matches = ($summary{summary
} =~ m/\[(.*?)(\d{3})([\*a-z0-9])(.*?)\]/g);
949 my (@textbefore, @tag, @subtag, @textafter);
950 for(my $i = 0; $i < scalar @matches; $i++){
951 push @textbefore, $matches[$i] if($i%4 == 0);
952 push @tag, $matches[$i] if($i%4 == 1);
953 push @subtag, $matches[$i] if($i%4 == 2);
954 push @textafter, $matches[$i] if($i%4 == 3);
956 for(my $i = scalar @tag; $i >= 0; $i--){
957 my $textbefore = $textbefore[$i] || '';
958 my $tag = $tag[$i] || '';
959 my $subtag = $subtag[$i] || '';
960 my $textafter = $textafter[$i] || '';
962 my $field = $record->field($tag);
966 $value = $textbefore . $field->data() . $textafter;
969 my @subfields = $field->subfield($subtag);
971 $value = $textbefore . join (" - ", @subfields) . $textafter;
975 $summary{summary
} =~ s/\[\Q$textbefore$tag$subtag$textafter\E\]/$value/;
977 $summary{summary
} =~ s/\\n/<br \/>/g
;
984 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
985 # construct UNIMARC summary, that is quite different from MARC21 one
987 foreach my $field ($record->field('2..')) {
989 heading
=> $field->as_string('abcdefghijlmnopqrstuvwxyz'),
990 hemain
=> ( $field->subfield('a') // undef ),
991 field
=> $field->tag(),
995 foreach my $field ($record->field('3..')) {
996 push @notes, { note
=> $field->subfield('a'), field
=> $field->tag() };
998 foreach my $field ($record->field('4..')) {
999 my $thesaurus = $field->subfield('2') ?
"thes. : ".$thesaurus{"$field->subfield('2')"}." : " : '';
1001 heading
=> $thesaurus . $field->as_string('abcdefghijlmnopqrstuvwxyz'),
1002 hemain
=> ( $field->subfield('a') // undef ),
1004 field
=> $field->tag(),
1010 my $type = $unimarc_relation_from_code{$_->subfield('5') || 'a'};
1011 my $heading = $_->as_string('abcdefgjxyz');
1015 heading
=> $heading,
1016 hemain
=> ( $_->subfield('a') // undef ),
1018 authid
=> ( $_->subfield('9') // undef ),
1020 } $record->field('5..');
1023 @otherscript = map { {
1024 lang
=> length ($_->subfield('8')) == 6 ?
substr ($_->subfield('8'), 3, 3) : $_->subfield('8') || '',
1025 term
=> $_->subfield('a') . ($_->subfield('b') ?
', ' . $_->subfield('b') : ''),
1028 } } $record->field('7..');
1031 # construct MARC21 summary
1032 # FIXME - looping over 1XX is questionable
1033 # since MARC21 authority should have only one 1XX
1034 my $subfields_to_report;
1035 foreach my $field ($record->field('1..')) {
1036 my $tag = $field->tag();
1037 next if "152" eq $tag;
1038 # FIXME - 152 is not a good tag to use
1039 # in MARC21 -- purely local tags really ought to be
1041 if ($tag eq '100') {
1042 $subfields_to_report = 'abcdefghjklmnopqrstvxyz';
1043 } elsif ($tag eq '110') {
1044 $subfields_to_report = 'abcdefghklmnoprstvxyz';
1045 } elsif ($tag eq '111') {
1046 $subfields_to_report = 'acdefghklnpqstvxyz';
1047 } elsif ($tag eq '130') {
1048 $subfields_to_report = 'adfghklmnoprstvxyz';
1049 } elsif ($tag eq '148') {
1050 $subfields_to_report = 'abvxyz';
1051 } elsif ($tag eq '150') {
1052 $subfields_to_report = 'abvxyz';
1053 } elsif ($tag eq '151') {
1054 $subfields_to_report = 'avxyz';
1055 } elsif ($tag eq '155') {
1056 $subfields_to_report = 'abvxyz';
1057 } elsif ($tag eq '180') {
1058 $subfields_to_report = 'vxyz';
1059 } elsif ($tag eq '181') {
1060 $subfields_to_report = 'vxyz';
1061 } elsif ($tag eq '182') {
1062 $subfields_to_report = 'vxyz';
1063 } elsif ($tag eq '185') {
1064 $subfields_to_report = 'vxyz';
1066 if ($subfields_to_report) {
1068 heading
=> $field->as_string($subfields_to_report),
1069 hemain
=> ( $field->subfield( substr($subfields_to_report, 0, 1) ) // undef ),
1074 heading
=> $field->as_string(),
1075 hemain
=> ( $field->subfield( 'a' ) // undef ),
1080 foreach my $field ($record->field('4..')) { #See From
1081 my $type = 'seefrom';
1082 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1083 if ($type eq 'notapplicable') {
1084 $type = substr $field->subfield('w'), 2, 1;
1085 $type = 'earlier' if $type && $type ne 'n';
1087 if ($type eq 'subfi') {
1089 heading
=> $field->as_string($marc21subfields),
1090 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1091 type
=> ($field->subfield('i') || ''),
1092 field
=> $field->tag(),
1096 heading
=> $field->as_string($marc21subfields),
1097 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1099 field
=> $field->tag(),
1103 foreach my $field ($record->field('5..')) { #See Also
1104 my $type = 'seealso';
1105 $type = ($marc21controlrefs{substr $field->subfield('w'), 0, 1} || '') if ($field->subfield('w'));
1106 if ($type eq 'notapplicable') {
1107 $type = substr $field->subfield('w'), 2, 1;
1108 $type = 'earlier' if $type && $type ne 'n';
1110 if ($type eq 'subfi') {
1112 heading
=> $field->as_string($marc21subfields),
1113 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1114 type
=> $field->subfield('i'),
1115 field
=> $field->tag(),
1116 search
=> $field->as_string($marc21subfields) || '',
1117 authid
=> $field->subfield('9') || ''
1121 heading
=> $field->as_string($marc21subfields),
1122 hemain
=> $field->subfield( substr($marc21subfields, 0, 1) ),
1124 field
=> $field->tag(),
1125 search
=> $field->as_string($marc21subfields) || '',
1126 authid
=> $field->subfield('9') || ''
1130 foreach my $field ($record->field('6..')) {
1131 push @notes, { note
=> $field->as_string(), field
=> $field->tag() };
1133 foreach my $field ($record->field('880')) {
1134 my $linkage = $field->subfield('6');
1135 my $category = substr $linkage, 0, 1;
1136 if ($category eq '1') {
1137 $category = 'preferred';
1138 } elsif ($category eq '4') {
1139 $category = 'seefrom';
1140 } elsif ($category eq '5') {
1141 $category = 'seealso';
1144 if ($field->subfield('w')) {
1145 $type = $marc21controlrefs{substr $field->subfield('w'), '0'};
1149 my $direction = $linkage =~ m
#/r$# ? 'rtl' : 'ltr';
1150 push @otherscript, { term
=> $field->as_string($subfields_to_report), category
=> $category, type
=> $type, direction
=> $direction, linkage
=> $linkage };
1153 $summary{mainentry
} = $authorized[0]->{heading
};
1154 $summary{mainmainentry
} = $authorized[0]->{hemain
};
1155 $summary{authorized
} = \
@authorized;
1156 $summary{notes
} = \
@notes;
1157 $summary{seefrom
} = \
@seefrom;
1158 $summary{seealso
} = \
@seealso;
1159 $summary{otherscript
} = \
@otherscript;
1163 =head2 GetAuthorizedHeading
1165 $heading = &GetAuthorizedHeading({ record => $record, authid => $authid })
1167 Takes a MARC::Record object describing an authority record or an authid, and
1168 returns a string representation of the first authorized heading. This routine
1169 should be considered a temporary shim to ease the future migration of authority
1170 data from C4::AuthoritiesMarc to the object-oriented Koha::*::Authority.
1174 sub GetAuthorizedHeading
{
1177 unless ($record = $args->{record
}) {
1178 return unless $args->{authid
};
1179 $record = GetAuthority
($args->{authid
});
1181 return unless (ref $record eq 'MARC::Record');
1182 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
1183 # construct UNIMARC summary, that is quite different from MARC21 one
1185 foreach my $field ($record->field('2..')) {
1186 return $field->as_string('abcdefghijlmnopqrstuvwxyz');
1189 foreach my $field ($record->field('1..')) {
1190 my $tag = $field->tag();
1191 next if "152" eq $tag;
1192 # FIXME - 152 is not a good tag to use
1193 # in MARC21 -- purely local tags really ought to be
1195 if ($tag eq '100') {
1196 return $field->as_string('abcdefghjklmnopqrstvxyz68');
1197 } elsif ($tag eq '110') {
1198 return $field->as_string('abcdefghklmnoprstvxyz68');
1199 } elsif ($tag eq '111') {
1200 return $field->as_string('acdefghklnpqstvxyz68');
1201 } elsif ($tag eq '130') {
1202 return $field->as_string('adfghklmnoprstvxyz68');
1203 } elsif ($tag eq '148') {
1204 return $field->as_string('abvxyz68');
1205 } elsif ($tag eq '150') {
1206 return $field->as_string('abvxyz68');
1207 } elsif ($tag eq '151') {
1208 return $field->as_string('avxyz68');
1209 } elsif ($tag eq '155') {
1210 return $field->as_string('abvxyz68');
1211 } elsif ($tag eq '180') {
1212 return $field->as_string('vxyz68');
1213 } elsif ($tag eq '181') {
1214 return $field->as_string('vxyz68');
1215 } elsif ($tag eq '182') {
1216 return $field->as_string('vxyz68');
1217 } elsif ($tag eq '185') {
1218 return $field->as_string('vxyz68');
1220 return $field->as_string();
1227 =head2 BuildAuthHierarchies
1229 $text= &BuildAuthHierarchies( $authid, $force)
1231 return text containing trees for hierarchies
1232 for them to be stored in auth_header
1235 122,1314,2452;1324,2342,3,2452
1239 sub BuildAuthHierarchies
{
1240 my $authid = shift @_;
1241 # warn "authid : $authid";
1242 my $force = shift @_ || (C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
0 : 1);
1244 my $dbh=C4
::Context
->dbh;
1246 my $data = GetHeaderAuthority
($authid);
1247 if ($data->{'authtrees'} and not $force){
1248 return $data->{'authtrees'};
1249 # } elsif ($data->{'authtrees'}){
1250 # $hierarchies=$data->{'authtrees'};
1252 my $record = GetAuthority
($authid);
1254 return unless $record;
1255 foreach my $field ($record->field('5..')){
1258 (C4
::Context
->preference('marcflavour') eq 'UNIMARC' && $field->subfield('5') && $field->subfield('5') eq 'g') ||
1259 (C4
::Context
->preference('marcflavour') ne 'UNIMARC' && $field->subfield('w') && substr($field->subfield('w'), 0, 1) eq 'g'));
1261 my $subfauthid=_get_authid_subfield
($field) || '';
1262 next if ($subfauthid eq $authid);
1263 my $parentrecord = GetAuthority
($subfauthid);
1264 next unless $parentrecord;
1265 my $localresult=$hierarchies;
1267 $trees = BuildAuthHierarchies
($subfauthid);
1270 @trees = split(/;/,$trees);
1272 push @trees, $trees;
1277 @globalresult = (@globalresult,@trees);
1280 $hierarchies=join(";",@globalresult);
1282 #Unless there is no ancestor, I am alone.
1283 $hierarchies="$authid" unless ($hierarchies);
1285 AddAuthorityTrees
($authid,$hierarchies);
1286 return $hierarchies;
1289 =head2 BuildAuthHierarchy
1291 $ref= &BuildAuthHierarchy( $record, $class,$authid)
1293 return a hashref in order to display hierarchy for record and final Authid $authid
1304 sub BuildAuthHierarchy
{
1305 my $record = shift @_;
1306 my $class = shift @_;
1307 my $authid_constructed = shift @_;
1308 return unless ($record && $record->field('001'));
1309 my $authid=$record->field('001')->data();
1311 my $parents=""; my $children="";
1312 my (@loopparents,@loopchildren);
1313 my $marcflavour = C4
::Context
->preference('marcflavour');
1314 my $relationshipsf = $marcflavour eq 'UNIMARC' ?
'5' : 'w';
1315 foreach my $field ($record->field('5..')){
1316 my $subfauthid=_get_authid_subfield
($field);
1317 if ($subfauthid && $field->subfield($relationshipsf) && $field->subfield('a')){
1318 my $relationship = substr($field->subfield($relationshipsf), 0, 1);
1319 if ($relationship eq 'h'){
1320 push @loopchildren, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1322 elsif ($relationship eq 'g'){
1323 push @loopparents, { "authid"=>$subfauthid,"value"=>$field->subfield('a')};
1325 # brothers could get in there with an else
1328 $cell{"parents"}=\
@loopparents;
1329 $cell{"children"}=\
@loopchildren;
1330 $cell{"class"}=$class;
1331 $cell{"authid"}=$authid;
1332 $cell{"current_value"} =1 if ($authid eq $authid_constructed);
1333 $cell{"value"}=C4
::Context
->preference('marcflavour') eq 'UNIMARC' ?
$record->subfield('2..',"a") : $record->subfield('1..', 'a');
1337 =head2 BuildAuthHierarchyBranch
1339 $branch = &BuildAuthHierarchyBranch( $tree, $authid[, $cnt])
1341 Return a data structure representing an authority hierarchy
1342 given a list of authorities representing a single branch in
1343 an authority hierarchy tree. $authid is the current node in
1344 the tree (which may or may not be somewhere in the middle).
1345 $cnt represents the level of the upper-most item, and is only
1346 used when BuildAuthHierarchyBranch is called recursively (i.e.,
1347 don't ever pass in anything but zero to it).
1351 sub BuildAuthHierarchyBranch
{
1352 my ($tree, $authid, $cnt) = @_;
1354 my $elementdata = GetAuthority
(shift @
$tree);
1355 my $branch = BuildAuthHierarchy
($elementdata,"child".$cnt, $authid);
1356 if (scalar @
$tree > 0) {
1357 my $nextBranch = BuildAuthHierarchyBranch
($tree, $authid, ++$cnt);
1358 my $nextAuthid = $nextBranch->{authid
};
1360 # If we already have the next branch listed as a child, let's
1361 # replace the old listing with the new one. If not, we will add
1362 # the branch at the end.
1363 foreach my $cell (@
{$branch->{children
}}) {
1364 if ($cell->{authid
} eq $nextAuthid) {
1365 $cell = $nextBranch;
1370 push @
{$branch->{children
}}, $nextBranch unless $found;
1375 =head2 GenerateHierarchy
1377 $hierarchy = &GenerateHierarchy($authid);
1379 Return an arrayref holding one or more "trees" representing
1380 authority hierarchies.
1384 sub GenerateHierarchy
{
1386 my $trees = BuildAuthHierarchies
($authid);
1387 my @trees = split /;/,$trees ;
1388 push @trees,$trees unless (@trees);
1389 my @loophierarchies;
1390 foreach my $tree (@trees){
1391 my @tree=split /,/,$tree;
1392 push @tree, $tree unless (@tree);
1393 my $branch = BuildAuthHierarchyBranch
(\
@tree, $authid);
1394 push @loophierarchies, [ $branch ];
1396 return \
@loophierarchies;
1399 sub _get_authid_subfield
{
1401 return $field->subfield('9')||$field->subfield('3');
1403 =head2 GetHeaderAuthority
1405 $ref= &GetHeaderAuthority( $authid)
1407 return a hashref in order auth_header table data
1411 sub GetHeaderAuthority
{
1412 my $authid = shift @_;
1413 my $sql= "SELECT * from auth_header WHERE authid = ?";
1414 my $dbh=C4
::Context
->dbh;
1415 my $rq= $dbh->prepare($sql);
1416 $rq->execute($authid);
1417 my $data= $rq->fetchrow_hashref;
1421 =head2 AddAuthorityTrees
1423 $ref= &AddAuthorityTrees( $authid, $trees)
1425 return success or failure
1429 sub AddAuthorityTrees
{
1430 my $authid = shift @_;
1431 my $trees = shift @_;
1432 my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1433 my $dbh=C4
::Context
->dbh;
1434 my $rq= $dbh->prepare($sql);
1435 return $rq->execute($trees,$authid);
1440 $ref= &merge(mergefrom,$MARCfrom,$mergeto,$MARCto)
1442 Could add some feature : Migrating from a typecode to an other for instance.
1443 Then we should add some new parameter : bibliotargettag, authtargettag
1448 my ($mergefrom,$MARCfrom,$mergeto,$MARCto) = @_;
1449 my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0);
1450 my $dbh=C4
::Context
->dbh;
1451 my $authtypecodefrom = GetAuthTypeCode
($mergefrom);
1452 my $authtypecodeto = GetAuthTypeCode
($mergeto);
1453 # warn "mergefrom : $authtypecodefrom $mergefrom mergeto : $authtypecodeto $mergeto ";
1454 # return if authority does not exist
1455 return "error MARCFROM not a marcrecord ".Data
::Dumper
::Dumper
($MARCfrom) if scalar($MARCfrom->fields()) == 0;
1456 return "error MARCTO not a marcrecord".Data
::Dumper
::Dumper
($MARCto) if scalar($MARCto->fields()) == 0;
1457 # search the tag to report
1458 my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
1459 $sth->execute($authtypecodefrom);
1460 my ($auth_tag_to_report_from) = $sth->fetchrow;
1461 $sth->execute($authtypecodeto);
1462 my ($auth_tag_to_report_to) = $sth->fetchrow;
1465 @record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $MARCto->field($auth_tag_to_report_to);
1467 @record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $MARCfrom->field($auth_tag_to_report_from);
1470 # search all biblio tags using this authority.
1471 #Getting marcbiblios impacted by the change.
1473 my $oConnection=C4
::Context
->Zconn("biblioserver",0);
1474 # We used to use XML syntax here, but that no longer works.
1475 # Thankfully, we don't need it.
1477 $query= "an=".$mergefrom;
1478 my $oResult = $oConnection->search(new ZOOM
::Query
::CCL2RPN
( $query, $oConnection ));
1481 $count=$oResult->size();
1484 while ( $z<$count ) {
1485 my $marcrecordzebra = C4
::Search
::new_record_from_zebra
(
1487 $oResult->record($z)->raw()
1489 my ( $biblionumbertagfield, $biblionumbertagsubfield ) = &GetMarcFromKohaField
( "biblio.biblionumber", '' );
1490 my $i = ($biblionumbertagfield < 10)
1491 ?
$marcrecordzebra->field( $biblionumbertagfield )->data
1492 : $marcrecordzebra->subfield( $biblionumbertagfield, $biblionumbertagsubfield );
1493 my $marcrecorddb = GetMarcBiblio
($i);
1494 push @reccache, $marcrecorddb;
1497 $oResult->destroy();
1498 #warn scalar(@reccache)." biblios to update";
1499 # Get All candidate Tags for the change
1500 # (This will reduce the search scope in marc records).
1501 $sth = $dbh->prepare("select distinct tagfield from marc_subfield_structure where authtypecode=?");
1502 $sth->execute($authtypecodefrom);
1503 my @tags_using_authtype;
1504 while (my ($tagfield) = $sth->fetchrow) {
1505 push @tags_using_authtype,$tagfield ;
1508 if ($authtypecodeto ne $authtypecodefrom){
1509 # If many tags, take the first
1510 $sth->execute($authtypecodeto);
1511 $tag_to=$sth->fetchrow;
1514 # BulkEdit marc records
1515 # May be used as a template for a bulkedit field
1516 foreach my $marcrecord(@reccache){
1518 foreach my $tagfield (@tags_using_authtype){
1519 # warn "tagfield : $tagfield ";
1520 foreach my $field ($marcrecord->field($tagfield)){
1521 # biblio is linked to authority with $9 subfield containing authid
1522 my $auth_number=$field->subfield("9");
1523 my $tag=$field->tag();
1524 if ($auth_number==$mergefrom) {
1525 my $field_to=MARC
::Field
->new(($tag_to?
$tag_to:$tag),$field->indicator(1),$field->indicator(2),"9"=>$mergeto);
1527 foreach my $subfield (grep {$_->[0] ne '9'} @record_to) {
1528 $field_to->add_subfields($subfield->[0] =>$subfield->[1]);
1529 $exclude.= $subfield->[0];
1531 $exclude='['.$exclude.']';
1532 # add subfields in $field not included in @record_to
1533 my @restore= grep {$_->[0]!~/$exclude/} $field->subfields();
1534 foreach my $subfield (@restore) {
1535 $field_to->add_subfields($subfield->[0] =>$subfield->[1]);
1537 $marcrecord->delete_field($field);
1538 $marcrecord->insert_grouped_field($field_to);
1543 my ($bibliotag,$bibliosubf) = GetMarcFromKohaField
("biblio.biblionumber","") ;
1546 $biblionumber=$marcrecord->field($bibliotag)->data;
1549 $biblionumber=$marcrecord->subfield($bibliotag,$bibliosubf);
1551 unless ($biblionumber){
1552 warn "pas de numéro de notice bibliographique dans : ".$marcrecord->as_formatted;
1556 &ModBiblio
($marcrecord,$biblionumber,GetFrameworkCode
($biblionumber)) ;
1557 $counteditedbiblio++;
1558 warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG
});
1561 return $counteditedbiblio;
1562 # now, find every other authority linked with this authority
1563 # now, find every other authority linked with this authority
1564 # my $oConnection=C4::Context->Zconn("authorityserver");
1566 # # att 9210 Auth-Internal-authtype
1567 # # att 9220 Auth-Internal-LN
1568 # # ccl.properties to add for authorities
1569 # $query= "= ".$mergefrom;
1570 # my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1571 # my $count=$oResult->size() if ($oResult);
1574 # while ( $z<$count ) {
1576 # $rec=$oResult->record($z);
1577 # my $marcdata = $rec->raw();
1578 # push @reccache, $marcdata;
1581 # $oResult->destroy();
1582 # foreach my $marc(@reccache){
1585 # $marcrecord = MARC::File::USMARC::decode($marc);
1586 # foreach my $tagfield (@tags_using_authtype){
1587 # $tagfield=substr($tagfield,0,3);
1588 # my @tags = $marcrecord->field($tagfield);
1589 # foreach my $tag (@tags){
1590 # my $tagsubs=$tag->subfield("9");
1591 # #warn "$tagfield:$tagsubs:$mergefrom";
1592 # if ($tagsubs== $mergefrom) {
1593 # $tag->update("9" =>$mergeto);
1594 # foreach my $subfield (@record_to) {
1595 # # warn "$subfield,$subfield->[0],$subfield->[1]";
1596 # $tag->update($subfield->[0] =>$subfield->[1]);
1599 # $marcrecord->delete_field($tag);
1600 # $marcrecord->add_fields($tag);
1603 # }#foreach tagfield
1604 # my $authoritynumber = TransformMarcToKoha($dbh,$marcrecord,"") ;
1606 # &ModAuthority($marcrecord,$authoritynumber,GetAuthTypeCode($authoritynumber)) ;
1612 =head2 get_auth_type_location
1614 my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1616 Get the tag and subfield used to store the heading type
1617 for indexing purposes. The C<$auth_type> parameter is
1618 optional; if it is not supplied, assume ''.
1620 This routine searches the MARC authority framework
1621 for the tag and subfield whose kohafield is
1622 C<auth_header.authtypecode>; if no such field is
1623 defined in the framework, default to the hardcoded value
1624 specific to the MARC format.
1628 sub get_auth_type_location
{
1629 my $auth_type_code = @_ ?
shift : '';
1631 my ($tag, $subfield) = GetAuthMARCFromKohaField
('auth_header.authtypecode', $auth_type_code);
1632 if (defined $tag and defined $subfield and $tag != 0 and $subfield ne '' and $subfield ne ' ') {
1633 return ($tag, $subfield);
1635 if (C4
::Context
->preference('marcflavour') eq "MARC21") {
1636 return C4
::AuthoritiesMarc
::MARC21
::default_auth_type_location
();
1638 return C4
::AuthoritiesMarc
::UNIMARC
::default_auth_type_location
();
1643 END { } # module clean-up code here (global destructor)
1650 Koha Development Team <http://koha-community.org/>
1652 Paul POULAIN paul.poulain@free.fr