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 under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA 02111-1307 USA
25 use C4
::AuthoritiesMarc
::MARC21
;
26 use C4
::AuthoritiesMarc
::UNIMARC
;
29 use vars
qw($VERSION @ISA @EXPORT);
32 # set the version for version checking
41 &GetAuthMARCFromKohaField
55 &BuildUnimarcHierarchies
56 &BuildUnimarcHierarchy
59 &FindDuplicateAuthority
63 =head2 GetAuthMARCFromKohaField
67 ( $tag, $subfield ) = &GetAuthMARCFromKohaField ($kohafield,$authtypecode);
68 returns tag and subfield linked to kohafield
71 Suppose Kohafield is only linked to ONE subfield
77 sub GetAuthMARCFromKohaField
{
78 #AUTHfind_marc_from_kohafield
79 my ( $kohafield,$authtypecode ) = @_;
80 my $dbh=C4
::Context
->dbh;
81 return 0, 0 unless $kohafield;
82 $authtypecode="" unless $authtypecode;
83 my $marcfromkohafield;
84 my $sth = $dbh->prepare("select tagfield,tagsubfield from auth_subfield_structure where kohafield= ? and authtypecode=? ");
85 $sth->execute($kohafield,$authtypecode);
86 my ($tagfield,$tagsubfield) = $sth->fetchrow;
88 return ($tagfield,$tagsubfield);
91 =head2 SearchAuthorities
95 (\@finalresult, $nbresults)= &SearchAuthorities($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby)
96 returns ref to array result and count of results returned
102 sub SearchAuthorities
{
103 my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby) = @_;
104 # warn "CALL : $tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby";
105 my $dbh=C4
::Context
->dbh;
106 if (C4
::Context
->preference('NoZebra')) {
112 my @auths=split / /,$authtypecode ;
113 foreach my $auth (@auths){
114 $query .="AND auth_type= $auth ";
118 for(my $i = 0 ; $i <= $#{$value} ; $i++)
121 if (@
$tags[$i] eq "mainmainentry") {
122 $query .=" AND mainmainentry";
123 }elsif (@
$tags[$i] eq "mainentry") {
124 $query .=" AND mainentry";
128 if (@
$operator[$i] eq 'is') {
129 $query.=(@
$tags[$i]?
"=":""). '"'.@
$value[$i].'"';
130 }elsif (@
$operator[$i] eq "="){
131 $query.=(@
$tags[$i]?
"=":""). '"'.@
$value[$i].'"';
132 }elsif (@
$operator[$i] eq "start"){
133 $query.=(@
$tags[$i]?
"=":"").'"'.@
$value[$i].'%"';
135 $query.=(@
$tags[$i]?
"=":"").'"'.@
$value[$i].'%"';
141 # do the query (if we had some search term
144 # warn "QUERY : $query";
145 my $result = C4
::Search
::NZanalyse
($query,'authorityserver');
146 # warn "result : $result";
148 foreach (split /;/,$result) {
149 my ($authid,$title) = split /,/,$_;
150 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
151 # and we don't want to get only 1 result for each of them !!!
152 # hint & speed improvement : we can order without reading the record
153 # so order, and read records only for the requested page !
154 $result{$title.$authid}=$authid;
156 # sort the hash and return the same structure as GetRecords (Zebra querying)
159 if ($sortby eq 'HeadingDsc') { # sort by mainmainentry desc
160 foreach my $key (sort {$b cmp $a} (keys %result)) {
161 push @listresult, $result{$key};
162 # warn "push..."$#finalresult;
165 } else { # sort by mainmainentry ASC
166 foreach my $key (sort (keys %result)) {
167 push @listresult, $result{$key};
168 # warn "push..."$#finalresult;
172 # limit the $results_per_page to result size if it's more
173 $length = $numbers-$offset if $numbers < ($offset+$length);
174 # for the requested page, replace authid by the complete record
175 # speed improvement : avoid reading too much things
177 for (my $counter=$offset;$counter<=$offset+$length-1;$counter++) {
178 # $finalresult[$counter] = GetAuthority($finalresult[$counter])->as_usmarc;
179 my $separator=C4
::Context
->preference('authoritysep');
180 my $authrecord =GetAuthority
($listresult[$counter]);
181 my $authid=$listresult[$counter];
182 my $summary=BuildSummary
($authrecord,$authid,$authtypecode);
183 my $query_auth_tag = "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
184 my $sth = $dbh->prepare($query_auth_tag);
185 $sth->execute($authtypecode);
186 my $auth_tag_to_report = $sth->fetchrow;
188 $newline{used
}=CountUsage
($authid);
189 $newline{summary
} = $summary;
190 $newline{authid
} = $authid;
191 $newline{even
} = $counter % 2;
192 push @finalresult, \
%newline;
194 return (\
@finalresult, $numbers);
201 # the marclist may contain "mainentry". In this case, search the tag_to_report, that depends on
202 # the authtypecode. Then, search on $a of this tag_to_report
203 # also store main entry MARC tag, to extract it at end of search
205 ##first set the authtype search and may be multiple authorities
208 my @auths=split / /,$authtypecode ;
209 foreach my $auth (@auths){
210 $query .=" \@attr 1=authtype \@attr 5=100 ".$auth; ##No truncation on authtype
211 push @authtypecode ,$auth;
215 while ($n>1){$query= "\@or ".$query;$n--;}
221 for(my $i = 0 ; $i <= $#{$value} ; $i++)
224 ##If mainentry search $a tag
225 if (@
$tags[$i] eq "mainmainentry") {
226 $attr =" \@attr 1=Heading ";
227 }elsif (@
$tags[$i] eq "mainentry") {
228 $attr =" \@attr 1=Heading ";
230 $attr =" \@attr 1=Any ";
232 if (@
$operator[$i] eq 'is') {
233 $attr.=" \@attr 4=1 \@attr 5=100 ";##Phrase, No truncation,all of subfield field must match
234 }elsif (@
$operator[$i] eq "="){
235 $attr.=" \@attr 4=107 "; #Number Exact match
236 }elsif (@
$operator[$i] eq "start"){
237 $attr.=" \@attr 4=1 \@attr 5=1 ";#Phrase, Right truncated
239 $attr .=" \@attr 5=1 \@attr 4=6 ";## Word list, right truncated, anywhere
242 $attr =$attr."\"".@
$value[$i]."\"";
247 ##Add how many queries generated
249 $query= $and.$query.$q2
254 #$query=' @or @attr 7=2 @attr 1=Heading 0 @or @attr 7=1 @attr 1=Heading 1'.$query if ($sortby eq "HeadingDsc");
255 $query=' @or @attr 7=1 @attr 1=Heading 0'.$query if ($sortby eq "HeadingAsc");
256 $query=' @or @attr 7=2 @attr 1=Heading 0'.$query if ($sortby eq "HeadingDsc");
258 $offset=0 unless $offset;
259 my $counter = $offset;
260 $length=10 unless $length;
263 $oAuth[0]=C4
::Context
->Zconn("authorityserver" , 1);
264 my $Anewq= new ZOOM
::Query
::PQF
($query,$oAuth[0]);
266 $oAResult= $oAuth[0]->search($Anewq) ;
267 while (($i = ZOOM
::event
(\
@oAuth)) != 0) {
268 my $ev = $oAuth[$i-1]->last_event();
269 last if $ev == ZOOM
::Event
::ZEND
;
271 my($error, $errmsg, $addinfo, $diagset) = $oAuth[0]->error_x();
273 warn "oAuth error: $errmsg ($error) $addinfo $diagset\n";
278 $nbresults=$oAResult->size();
279 my $nremains=$nbresults;
281 my @finalresult = ();
285 ##Find authid and linkid fields
286 ##we may be searching multiple authoritytypes.
287 ## FIXME this assumes that all authid and linkid fields are the same for all authority types
288 # my ($authidfield,$authidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.authid",$authtypecode[0]);
289 # my ($linkidfield,$linkidsubfield)=GetAuthMARCFromKohaField($dbh,"auth_header.linkid",$authtypecode[0]);
290 while (($counter < $nbresults) && ($counter < ($offset + $length))) {
292 ##Here we have to extract MARC record and $authid from ZEBRA AUTHORITIES
293 my $rec=$oAResult->record($counter);
294 my $marcdata=$rec->raw();
296 my $separator=C4
::Context
->preference('authoritysep');
297 $authrecord = MARC
::File
::USMARC
::decode
($marcdata);
298 my $authid=$authrecord->field('001')->data();
299 my $summary=BuildSummary
($authrecord,$authid,$authtypecode);
300 my $query_auth_tag = "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?";
301 my $sth = $dbh->prepare($query_auth_tag);
302 $sth->execute($authtypecode);
303 my $auth_tag_to_report = $sth->fetchrow;
305 my $mainentry = $authrecord->field($auth_tag_to_report);
307 foreach ($mainentry->subfields()) {
308 $reported_tag .='$'.$_->[0].$_->[1];
312 $newline{summary
} = $summary;
313 $newline{authid
} = $authid;
314 $newline{even
} = $counter % 2;
315 $newline{reported_tag
} = $reported_tag;
317 push @finalresult, \
%newline;
320 for (my $z=0; $z<@finalresult; $z++){
321 my $count=CountUsage
($finalresult[$z]{authid
});
322 $finalresult[$z]{used
}=$count;
327 # $oAResult->destroy();
328 # $oAuth[0]->destroy();
330 return (\
@finalresult, $nbresults);
338 $count= &CountUsage($authid)
339 counts Usage of Authid in bibliorecords.
347 if (C4
::Context
->preference('NoZebra')) {
348 # Read the index Koha-Auth-Number for this authid and count the lines
349 my $result = C4
::Search
::NZanalyse
("an=$authid");
350 my @tab = split /;/,$result;
354 my $oConnection=C4
::Context
->Zconn("biblioserver",1);
356 $query= "an=".$authid;
357 my $oResult = $oConnection->search(new ZOOM
::Query
::CCL2RPN
( $query, $oConnection ));
359 while ((my $i = ZOOM
::event
([ $oConnection ])) != 0) {
360 my $ev = $oConnection->last_event();
361 if ($ev == ZOOM
::Event
::ZEND
) {
362 $result = $oResult->size();
369 =head2 CountUsageChildren
373 $count= &CountUsageChildren($authid)
374 counts Usage of narrower terms of Authid in bibliorecords.
380 sub CountUsageChildren
{
384 =head2 GetAuthTypeCode
388 $authtypecode= &GetAuthTypeCode($authid)
389 returns authtypecode of an authid
395 sub GetAuthTypeCode
{
396 #AUTHfind_authtypecode
398 my $dbh=C4
::Context
->dbh;
399 my $sth = $dbh->prepare("select authtypecode from auth_header where authid=?");
400 $sth->execute($authid);
401 my ($authtypecode) = $sth->fetchrow;
402 return $authtypecode;
409 $tagslabel= &GetTagsLabels($forlibrarian,$authtypecode)
410 returns a ref to hashref of authorities tag and subfield structure.
413 $tagslabel->{$tag}->{$subfield}->{'attribute'}
414 where attribute takes values in :
433 my ($forlibrarian,$authtypecode)= @_;
434 my $dbh=C4
::Context
->dbh;
435 $authtypecode="" unless $authtypecode;
437 my $libfield = ($forlibrarian eq 1)?
'liblibrarian' : 'libopac';
440 # check that authority exists
441 $sth=$dbh->prepare("SELECT count(*) FROM auth_tag_structure WHERE authtypecode=?");
442 $sth->execute($authtypecode);
443 my ($total) = $sth->fetchrow;
444 $authtypecode="" unless ($total >0);
446 "SELECT auth_tag_structure.tagfield,auth_tag_structure.liblibrarian,auth_tag_structure.libopac,auth_tag_structure.mandatory,auth_tag_structure.repeatable
447 FROM auth_tag_structure
452 $sth->execute($authtypecode);
453 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
455 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
456 $res->{$tag}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
457 $res->{$tag}->{tab
} = " "; # XXX
458 $res->{$tag}->{mandatory
} = $mandatory;
459 $res->{$tag}->{repeatable
} = $repeatable;
462 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab, mandatory, repeatable,authorised_value,frameworkcode as authtypecode,value_builder,kohafield,seealso,hidden,isurl
463 FROM auth_subfield_structure
465 ORDER BY tagfield,tagsubfield"
467 $sth->execute($authtypecode);
470 my $authorised_value;
479 ( $tag, $subfield, $liblibrarian, , $libopac, $tab,
480 $mandatory, $repeatable, $authorised_value, $authtypecode,
481 $value_builder, $kohafield, $seealso, $hidden,
486 $res->{$tag}->{$subfield}->{lib
} = ($forlibrarian or !$libopac)?
$liblibrarian:$libopac;
487 $res->{$tag}->{$subfield}->{tab
} = $tab;
488 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
489 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
490 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
491 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
492 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
493 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
494 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
495 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
496 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
497 $res->{$tag}->{$subfield}->{link} = $link;
506 $authid= &AddAuthority($record, $authid,$authtypecode)
507 returns authid of the newly created authority
509 Either Create Or Modify existing authority.
516 # pass the MARC::Record to this function, and it will create the records in the authority table
517 my ($record,$authid,$authtypecode) = @_;
518 my $dbh=C4
::Context
->dbh;
519 my $leader=' a ';##Fixme correct leader as this one just adds utf8 to MARC21
521 # if authid empty => true add, find a new authid number
522 my $format= 'UNIMARCAUTH' if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC');
523 $format= 'MARC21' if (uc(C4
::Context
->preference('marcflavour')) ne 'UNIMARC');
524 if (($format eq "UNIMARCAUTH") && (!$record->subfield('100','a'))){
525 $record->leader(" nx j22 ");
526 my $date=POSIX
::strftime
("%Y%m%d",localtime);
527 if ($record->field('100')){
528 $record->field('100')->update('a'=>$date."afrey50 ba0");
530 $record->append_fields(
531 MARC
::Field
->new('100',' ',' '
532 ,'a'=>$date."afrey50 ba0")
537 my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location
($authtypecode);
538 if (!$authid and $format eq "MARC21") {
539 # only need to do this fix when modifying an existing authority
540 C4
::AuthoritiesMarc
::MARC21
::fix_marc21_auth_type_location
($record, $auth_type_tag, $auth_type_subfield);
543 unless ($record->field($auth_type_tag) && $record->subfield($auth_type_tag, $auth_type_subfield)) {
544 $record->add_fields($auth_type_tag,'','', $auth_type_subfield=>$authtypecode);
548 my $sth=$dbh->prepare("select max(authid) from auth_header");
550 ($authid)=$sth->fetchrow;
552 ##Insert the recordID in MARC record
553 unless ($record->field('001') && $record->field('001')->data() eq $authid){
554 $record->delete_field($record->field('001'));
555 $record->insert_fields_ordered(MARC
::Field
->new('001',$authid));
557 # warn $record->as_formatted;
558 $dbh->do("lock tables auth_header WRITE");
559 $sth=$dbh->prepare("insert into auth_header (authid,datecreated,authtypecode,marc,marcxml) values (?,now(),?,?,?)");
560 $sth->execute($authid,$authtypecode,$record->as_usmarc,$record->as_xml_record($format));
563 $record->add_fields('001',$authid) unless ($record->field('001'));
564 $dbh->do("lock tables auth_header WRITE");
565 my $sth=$dbh->prepare("update auth_header set marc=?,marcxml=? where authid=?");
566 $sth->execute($record->as_usmarc,$record->as_xml_record($format),$authid);
569 $dbh->do("unlock tables");
570 ModZebra
($authid,'specialUpdate',"authorityserver",$record);
579 $authid= &DelAuthority($authid)
589 my $dbh=C4
::Context
->dbh;
591 ModZebra
($authid,"recordDelete","authorityserver",GetAuthority
($authid));
592 $dbh->do("delete from auth_header where authid=$authid") ;
597 my ($authid,$record,$authtypecode,$merge)=@_;
598 my $dbh=C4
::Context
->dbh;
599 # my ($oldrecord)=&GetAuthority($authid);
600 # if ($oldrecord eq $record) {
603 # my $sth=$dbh->prepare("update auth_header set marc=?,marcxml=? where authid=?");
604 #Now rewrite the $record to table with an add
605 $authid=AddAuthority
($record,$authid,$authtypecode);
607 ### If a library thinks that updating all biblios is a long process and wishes to leave that to a cron job to use merge_authotities.p
608 ### they should have a system preference "dontmerge=1" otherwise by default biblios will be updated
609 ### the $merge flag is now depreceated and will be removed at code cleaning
610 if (C4
::Context
->preference('dontmerge') ){
611 # save the file in tmp/modified_authorities
612 my $cgidir = C4
::Context
->intranetdir ."/cgi-bin";
613 unless (opendir(DIR
,"$cgidir")) {
614 $cgidir = C4
::Context
->intranetdir."/";
618 my $filename = $cgidir."/tmp/modified_authorities/$authid.authid";
619 open AUTH
, "> $filename";
623 # &merge($authid,$record,$authid,$record);
628 =head2 GetAuthorityXML
632 $marcxml= &GetAuthorityXML( $authid)
633 returns xml form of record $authid
639 sub GetAuthorityXML
{
640 # Returns MARC::XML of the authority passed in parameter.
642 my $format= 'UNIMARCAUTH' if (uc(C4
::Context
->preference('marcflavour')) eq 'UNIMARC');
643 $format= 'MARC21' if (uc(C4
::Context
->preference('marcflavour')) ne 'UNIMARC');
644 if ($format eq "MARC21") {
645 # for MARC21, call GetAuthority instead of
646 # getting the XML directly since we may
647 # need to fix up the location of the authority
648 # code -- note that this is reasonably safe
649 # because GetAuthorityXML is used only by the
650 # indexing processes like zebraqueue_start.pl
651 my $record = GetAuthority
($authid);
652 return $record->as_xml_record($format);
654 my $dbh=C4
::Context
->dbh;
655 my $sth = $dbh->prepare("select marcxml from auth_header where authid=? " );
656 $sth->execute($authid);
657 my ($marcxml)=$sth->fetchrow;
666 $record= &GetAuthority( $authid)
667 Returns MARC::Record of the authority passed in parameter.
675 my $dbh=C4
::Context
->dbh;
676 my $sth=$dbh->prepare("select authtypecode, marcxml from auth_header where authid=?");
677 $sth->execute($authid);
678 my ($authtypecode, $marcxml) = $sth->fetchrow;
679 my $record=MARC
::Record
->new_from_xml(StripNonXmlChars
($marcxml),'UTF-8',
680 (C4
::Context
->preference("marcflavour") eq "UNIMARC"?
"UNIMARCAUTH":C4
::Context
->preference("marcflavour")));
681 $record->encoding('UTF-8');
682 if (C4
::Context
->preference("marcflavour") eq "MARC21") {
683 my ($auth_type_tag, $auth_type_subfield) = get_auth_type_location
($authtypecode);
684 C4
::AuthoritiesMarc
::MARC21
::fix_marc21_auth_type_location
($record, $auth_type_tag, $auth_type_subfield);
693 $result= &GetAuthType( $authtypecode)
694 If $authtypecode is not "" then
695 Returns hashref to authtypecode information
697 returns ref to array of hashref information of all Authtypes
704 my ($authtypecode) = @_;
705 my $dbh=C4
::Context
->dbh;
707 if (defined $authtypecode){ # NOTE - in MARC21 framework, '' is a valid authority
709 $sth=$dbh->prepare("select * from auth_types where authtypecode=?");
710 $sth->execute($authtypecode);
712 $sth=$dbh->prepare("select * from auth_types");
715 my $res=$sth->fetchall_arrayref({});
716 if (scalar(@
$res)==1){
725 my ($rtags,$rsubfields,$rvalues,%indicators) = @_;
726 my $dbh=C4
::Context
->dbh;
728 my $record = MARC
::Record
->new();
729 #---- TODO : the leader is missing
731 # my %subfieldlist=();
732 my $prevvalue; # if tag <10
733 my $field; # if tag >=10
734 for (my $i=0; $i< @
$rtags; $i++) {
735 # rebuild MARC::Record
736 if (@
$rtags[$i] ne $prevtag) {
739 $record->add_fields((sprintf "%03s",$prevtag),$prevvalue);
743 $record->add_fields($field);
746 $indicators{@
$rtags[$i]}.=' ';
747 if (@
$rtags[$i] <10) {
748 $prevvalue= @
$rvalues[$i];
752 $field = MARC
::Field
->new( (sprintf "%03s",@
$rtags[$i]), substr($indicators{@
$rtags[$i]},0,1),substr($indicators{@
$rtags[$i]},1,1), @
$rsubfields[$i] => @
$rvalues[$i]);
754 $prevtag = @
$rtags[$i];
756 if (@
$rtags[$i] <10) {
757 $prevvalue=@
$rvalues[$i];
759 if (length(@
$rvalues[$i])>0) {
760 $field->add_subfields(@
$rsubfields[$i] => @
$rvalues[$i]);
763 $prevtag= @
$rtags[$i];
766 # the last has not been included inside the loop... do it now !
767 $record->add_fields($field) if $field;
771 =head2 FindDuplicateAuthority
775 $record= &FindDuplicateAuthority( $record, $authtypecode)
776 return $authid,Summary if duplicate is found.
778 Comments : an improvement would be to return All the records that match.
784 sub FindDuplicateAuthority
{
786 my ($record,$authtypecode)=@_;
787 # warn "IN for ".$record->as_formatted;
788 my $dbh = C4
::Context
->dbh;
789 # warn "".$record->as_formatted;
790 my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
791 $sth->execute($authtypecode);
792 my ($auth_tag_to_report) = $sth->fetchrow;
794 # warn "record :".$record->as_formatted." auth_tag_to_report :$auth_tag_to_report";
795 # build a request for SearchAuthorities
796 my $query='at='.$authtypecode.' ';
797 map {$query.= " and he=\"".$_->[1]."\"" if ($_->[0]=~/[A-z]/)} $record->field($auth_tag_to_report)->subfields() if $record->field($auth_tag_to_report);
798 my ($error,$results)=SimpleSearch
($query,"authorityserver");
799 # there is at least 1 result => return the 1st one
801 my $marcrecord = MARC
::File
::USMARC
::decode
($results->[0]);
802 return $marcrecord->field('001')->data,BuildSummary
($marcrecord,$marcrecord->field('001')->data,$authtypecode);
804 # no result, returns nothing
812 $text= &BuildSummary( $record, $authid, $authtypecode)
813 return HTML encoded Summary
815 Comment : authtypecode can be infered from both record and authid.
816 Moreover, authid can also be inferred from $record.
817 Would it be interesting to delete those things.
824 ## give this a Marc record to return summary
825 my ($record,$authid,$authtypecode)=@_;
826 my $dbh=C4
::Context
->dbh;
828 # handle $authtypecode is NULL or eq ""
830 my $authref = GetAuthType
($authtypecode);
831 $summary = $authref->{summary
};
833 # FIXME: should use I18N.pm
835 $language{'fre'}="Français";
836 $language{'eng'}="Anglais";
837 $language{'ger'}="Allemand";
838 $language{'ita'}="Italien";
839 $language{'spa'}="Espagnol";
841 $thesaurus{'1'}="Peuples";
842 $thesaurus{'2'}="Anthroponymes";
843 $thesaurus{'3'}="Oeuvres";
844 $thesaurus{'4'}="Chronologie";
845 $thesaurus{'5'}="Lieux";
846 $thesaurus{'6'}="Sujets";
848 my @fields = $record->fields();
850 # if the library has a summary defined, use it. Otherwise, build a standard one
851 # FIXME - it appears that the summary field in the authority frameworks
852 # can work as a display template. However, this doesn't
853 # suit the MARC21 version, so for now the "templating"
854 # feature will be enabled only for UNIMARC for backwards
856 if ($summary and C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
857 my @fields = $record->fields();
858 # $reported_tag = '$9'.$result[$counter];
859 foreach my $field (@fields) {
860 my $tag = $field->tag();
861 my $tagvalue = $field->as_string();
862 $summary =~ s/\[(.?.?.?.?)$tag\*(.*?)]/$1$tagvalue$2\[$1$tag$2]/g;
865 $reported_tag.='$3'.$field->data();
868 my @subf = $field->subfields;
869 for my $i (0..$#subf) {
870 my $subfieldcode = $subf[$i][0];
871 my $subfieldvalue = $subf[$i][1];
872 my $tagsubf = $tag.$subfieldcode;
873 $summary =~ s/\[(.?.?.?.?)$tagsubf(.*?)]/$1$subfieldvalue$2\[$1$tagsubf$2]/g;
877 $summary =~ s/\[(.*?)]//g;
878 $summary =~ s/\n/<br>/g;
889 my @fields = $record->fields();
890 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
891 # construct UNIMARC summary, that is quite different from MARC21 one
893 foreach my $field ($record->field('2..')) {
894 $heading.= $field->subfield('a');
895 $authid=$field->subfield('3');
898 foreach my $field ($record->field('3..')) {
899 $notes.= '<span class="note">'.$field->subfield('a')."</span>\n";
901 foreach my $field ($record->field('4..')) {
902 my $thesaurus = "thes. : ".$thesaurus{"$field->subfield('2')"}." : " if ($field->subfield('2'));
903 $see.= '<span class="UF">'.$thesaurus.$field->subfield('a')."</span> -- \n";
906 foreach my $field ($record->field('5..')) {
908 if (($field->subfield('5')) && ($field->subfield('a')) && ($field->subfield('5') eq 'g')) {
909 $broaderterms.= '<span class="BT"> <a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
910 } elsif (($field->subfield('5')) && ($field->subfield('a')) && ($field->subfield('5') eq 'h')){
911 $narrowerterms.= '<span class="NT"><a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
912 } elsif ($field->subfield('a')) {
913 $seealso.= '<span class="RT"><a href="detail.pl?authid='.$field->subfield('3').'">'.$field->subfield('a')."</a></span> -- \n";
917 foreach my $field ($record->field('7..')) {
918 my $lang = substr($field->subfield('8'),3,3);
919 $seeheading.= '<span class="langue"> En '.$language{$lang}.' : </span><span class="OT"> '.$field->subfield('a')."</span><br />\n";
921 $broaderterms =~s/-- \n$//;
922 $narrowerterms =~s/-- \n$//;
923 $seealso =~s/-- \n$//;
925 $summary = "<b><a href=\"detail.pl?authid=$authid\">".$heading."</a></b><br />".($notes?
"$notes <br />":"");
926 $summary.= '<p><div class="label">TG : '.$broaderterms.'</div></p>' if ($broaderterms);
927 $summary.= '<p><div class="label">TS : '.$narrowerterms.'</div></p>' if ($narrowerterms);
928 $summary.= '<p><div class="label">TA : '.$seealso.'</div></p>' if ($seealso);
929 $summary.= '<p><div class="label">EP : '.$see.'</div></p>' if ($see);
930 $summary.= '<p><div class="label">'.$seeheading.'</div></p>' if ($seeheading);
932 # construct MARC21 summary
933 # FIXME - looping over 1XX is questionable
934 # since MARC21 authority should have only one 1XX
935 foreach my $field ($record->field('1..')) {
936 next if "152" eq $field->tag(); # FIXME - 152 is not a good tag to use
937 # in MARC21 -- purely local tags really ought to be
939 if ($record->field('100')) {
940 $heading.= $field->as_string('abcdefghjklmnopqrstvxyz68');
941 } elsif ($record->field('110')) {
942 $heading.= $field->as_string('abcdefghklmnoprstvxyz68');
943 } elsif ($record->field('111')) {
944 $heading.= $field->as_string('acdefghklnpqstvxyz68');
945 } elsif ($record->field('130')) {
946 $heading.= $field->as_string('adfghklmnoprstvxyz68');
947 } elsif ($record->field('148')) {
948 $heading.= $field->as_string('abvxyz68');
949 } elsif ($record->field('150')) {
950 # $heading.= $field->as_string('abvxyz68');
951 $heading.= $field->as_formatted();
952 my $tag=$field->tag();
953 $heading=~s
/^$tag//g
;
954 $heading =~s
/\_/\
$/g
;
955 } elsif ($record->field('151')) {
956 $heading.= $field->as_string('avxyz68');
957 } elsif ($record->field('155')) {
958 $heading.= $field->as_string('abvxyz68');
959 } elsif ($record->field('180')) {
960 $heading.= $field->as_string('vxyz68');
961 } elsif ($record->field('181')) {
962 $heading.= $field->as_string('vxyz68');
963 } elsif ($record->field('182')) {
964 $heading.= $field->as_string('vxyz68');
965 } elsif ($record->field('185')) {
966 $heading.= $field->as_string('vxyz68');
968 $heading.= $field->as_string();
971 foreach my $field ($record->field('4..')) {
972 $seeheading.= "<br /> <i>used for/see from:</i> ".$field->as_string();
974 foreach my $field ($record->field('5..')) {
975 $altheading.= "<br /> <i>see also:</i> ".$field->as_string();
977 $summary .= ": " if $summary;
978 $summary.=$heading.$seeheading.$altheading;
984 =head2 BuildUnimarcHierarchies
988 $text= &BuildUnimarcHierarchies( $authid, $force)
989 return text containing trees for hierarchies
990 for them to be stored in auth_header
993 122,1314,2452;1324,2342,3,2452
999 sub BuildUnimarcHierarchies
{
1000 my $authid = shift @_;
1001 # warn "authid : $authid";
1002 my $force = shift @_;
1004 my $dbh=C4
::Context
->dbh;
1006 my $data = GetHeaderAuthority
($authid);
1007 if ($data->{'authtrees'} and not $force){
1008 return $data->{'authtrees'};
1009 } elsif ($data->{'authtrees'}){
1010 $hierarchies=$data->{'authtrees'};
1012 my $record = GetAuthority
($authid);
1014 foreach my $field ($record->field('550')){
1015 if ($field->subfield('5') && $field->subfield('5') eq 'g'){
1016 my $parentrecord = GetAuthority
($field->subfield('3'));
1017 my $localresult=$hierarchies;
1019 $trees = BuildUnimarcHierarchies
($field->subfield('3'));
1022 @trees = split(/;/,$trees);
1024 push @trees, $trees;
1029 @globalresult = (@globalresult,@trees);
1032 $hierarchies=join(";",@globalresult);
1034 #Unless there is no ancestor, I am alone.
1035 $hierarchies="$authid" unless ($hierarchies);
1037 AddAuthorityTrees
($authid,$hierarchies);
1038 return $hierarchies;
1041 =head2 BuildUnimarcHierarchy
1045 $ref= &BuildUnimarcHierarchy( $record, $class,$authid)
1046 return a hashref in order to display hierarchy for record and final Authid $authid
1057 Those two latest ones should disappear soon.
1063 sub BuildUnimarcHierarchy
{
1064 my $record = shift @_;
1065 my $class = shift @_;
1066 my $authid_constructed = shift @_;
1067 my $authid=$record->subfield('250','3');
1069 my $parents=""; my $children="";
1070 my (@loopparents,@loopchildren);
1071 foreach my $field ($record->field('550')){
1072 if ($field->subfield('5') && $field->subfield('a')){
1073 if ($field->subfield('5') eq 'h'){
1074 push @loopchildren, { "childauthid"=>$field->subfield('3'),"childvalue"=>$field->subfield('a')};
1075 }elsif ($field->subfield('5') eq 'g'){
1076 push @loopparents, { "parentauthid"=>$field->subfield('3'),"parentvalue"=>$field->subfield('a')};
1078 # brothers could get in there with an else
1081 $cell{"ifparents"}=1 if (scalar(@loopparents)>0);
1082 $cell{"ifchildren"}=1 if (scalar(@loopchildren)>0);
1083 $cell{"loopparents"}=\
@loopparents if (scalar(@loopparents)>0);
1084 $cell{"loopchildren"}=\
@loopchildren if (scalar(@loopchildren)>0);
1085 $cell{"class"}=$class;
1086 $cell{"loopauthid"}=$authid;
1087 $cell{"current_value"} =1 if $authid eq $authid_constructed;
1088 $cell{"value"}=$record->subfield('250',"a");
1092 =head2 GetHeaderAuthority
1096 $ref= &GetHeaderAuthority( $authid)
1097 return a hashref in order auth_header table data
1103 sub GetHeaderAuthority
{
1104 my $authid = shift @_;
1105 my $sql= "SELECT * from auth_header WHERE authid = ?";
1106 my $dbh=C4
::Context
->dbh;
1107 my $rq= $dbh->prepare($sql);
1108 $rq->execute($authid);
1109 my $data= $rq->fetchrow_hashref;
1113 =head2 AddAuthorityTrees
1117 $ref= &AddAuthorityTrees( $authid, $trees)
1118 return success or failure
1124 sub AddAuthorityTrees
{
1125 my $authid = shift @_;
1126 my $trees = shift @_;
1127 my $sql= "UPDATE IGNORE auth_header set authtrees=? WHERE authid = ?";
1128 my $dbh=C4
::Context
->dbh;
1129 my $rq= $dbh->prepare($sql);
1130 return $rq->execute($trees,$authid);
1137 $ref= &merge(mergefrom,$MARCfrom,$mergeto,$MARCto)
1140 Could add some feature : Migrating from a typecode to an other for instance.
1141 Then we should add some new parameter : bibliotargettag, authtargettag
1148 my ($mergefrom,$MARCfrom,$mergeto,$MARCto) = @_;
1149 my $dbh=C4
::Context
->dbh;
1150 my $authtypecodefrom = GetAuthTypeCode
($mergefrom);
1151 my $authtypecodeto = GetAuthTypeCode
($mergeto);
1152 # return if authority does not exist
1153 my @X = $MARCfrom->fields();
1154 return if $#X == -1;
1155 @X = $MARCto->fields();
1156 return if $#X == -1;
1157 # search the tag to report
1158 my $sth = $dbh->prepare("select auth_tag_to_report from auth_types where authtypecode=?");
1159 $sth->execute($authtypecodefrom);
1160 my ($auth_tag_to_report) = $sth->fetchrow;
1163 @record_to = $MARCto->field($auth_tag_to_report)->subfields() if $MARCto->field($auth_tag_to_report);
1165 @record_from = $MARCfrom->field($auth_tag_to_report)->subfields() if $MARCfrom->field($auth_tag_to_report);
1167 # search all biblio tags using this authority.
1168 $sth = $dbh->prepare("select distinct tagfield from marc_subfield_structure where authtypecode=?");
1169 $sth->execute($authtypecodefrom);
1170 my @tags_using_authtype;
1171 while (my ($tagfield) = $sth->fetchrow) {
1172 push @tags_using_authtype,$tagfield."9" ;
1175 if (C4
::Context
->preference('NoZebra')) {
1178 # now, find every biblio using this authority
1179 my $oConnection=C4
::Context
->Zconn("biblioserver");
1181 $query= "an= ".$mergefrom;
1182 my $oResult = $oConnection->search(new ZOOM
::Query
::CCL2RPN
( $query, $oConnection ));
1183 my $count=$oResult->size() if ($oResult);
1186 while ( $z<$count ) {
1188 $rec=$oResult->record($z);
1189 my $marcdata = $rec->raw();
1190 push @reccache, $marcdata;
1193 $oResult->destroy();
1194 foreach my $marc(@reccache){
1197 $marcrecord = MARC
::File
::USMARC
::decode
($marc);
1198 foreach my $tagfield (@tags_using_authtype){
1199 $tagfield=substr($tagfield,0,3);
1200 my @tags = $marcrecord->field($tagfield);
1201 foreach my $tag (@tags){
1202 my $tagsubs=$tag->subfield("9");
1203 #warn "$tagfield:$tagsubs:$mergefrom";
1204 if ($tagsubs== $mergefrom) {
1205 $tag->update("9" =>$mergeto);
1206 foreach my $subfield (@record_to) {
1207 # warn "$subfield,$subfield->[0],$subfield->[1]";
1208 $tag->update($subfield->[0] =>$subfield->[1]);
1211 $marcrecord->delete_field($tag);
1212 $marcrecord->add_fields($tag);
1216 my $oldbiblio = TransformMarcToKoha
($dbh,$marcrecord,"") ;
1218 &ModBiblio
($marcrecord,$oldbiblio->{'biblionumber'},GetFrameworkCode
($oldbiblio->{'biblionumber'})) ;
1223 # now, find every other authority linked with this authority
1224 # my $oConnection=C4::Context->Zconn("authorityserver");
1226 # # att 9210 Auth-Internal-authtype
1227 # # att 9220 Auth-Internal-LN
1228 # # ccl.properties to add for authorities
1229 # $query= "= ".$mergefrom;
1230 # my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection ));
1231 # my $count=$oResult->size() if ($oResult);
1234 # while ( $z<$count ) {
1236 # $rec=$oResult->record($z);
1237 # my $marcdata = $rec->raw();
1238 # push @reccache, $marcdata;
1241 # $oResult->destroy();
1242 # foreach my $marc(@reccache){
1245 # $marcrecord = MARC::File::USMARC::decode($marc);
1246 # foreach my $tagfield (@tags_using_authtype){
1247 # $tagfield=substr($tagfield,0,3);
1248 # my @tags = $marcrecord->field($tagfield);
1249 # foreach my $tag (@tags){
1250 # my $tagsubs=$tag->subfield("9");
1251 # #warn "$tagfield:$tagsubs:$mergefrom";
1252 # if ($tagsubs== $mergefrom) {
1253 # $tag->update("9" =>$mergeto);
1254 # foreach my $subfield (@record_to) {
1255 # # warn "$subfield,$subfield->[0],$subfield->[1]";
1256 # $tag->update($subfield->[0] =>$subfield->[1]);
1259 # $marcrecord->delete_field($tag);
1260 # $marcrecord->add_fields($tag);
1263 # }#foreach tagfield
1264 # my $authoritynumber = TransformMarcToKoha($dbh,$marcrecord,"") ;
1266 # &ModAuthority($marcrecord,$authoritynumber,GetAuthTypeCode($authoritynumber)) ;
1272 =head2 get_auth_type_location
1276 my ($tag, $subfield) = get_auth_type_location($auth_type_code);
1280 Get the tag and subfield used to store the heading type
1281 for indexing purposes. The C<$auth_type> parameter is
1282 optional; if it is not supplied, assume ''.
1284 This routine searches the MARC authority framework
1285 for the tag and subfield whose kohafield is
1286 C<auth_header.authtypecode>; if no such field is
1287 defined in the framework, default to the hardcoded value
1288 specific to the MARC format.
1292 sub get_auth_type_location
{
1293 my $auth_type_code = @_ ?
shift : '';
1295 my ($tag, $subfield) = GetAuthMARCFromKohaField
('auth_header.authtypecode', $auth_type_code);
1296 if (defined $tag and defined $subfield and $tag != 0 and $subfield != 0) {
1297 return ($tag, $subfield);
1299 if (C4
::Context
->preference('marcflavour') eq "MARC21") {
1300 return C4
::AuthoritiesMarc
::MARC21
::default_auth_type_location
();
1302 return C4
::AuthoritiesMarc
::UNIMARC
::default_auth_type_location
();
1307 END { } # module clean-up code here (global destructor)
1314 Koha Developement team <info@koha.org>
1316 Paul POULAIN paul.poulain@free.fr