From cf2708cf54009721d290e93036a345487d8f1fb0 Mon Sep 17 00:00:00 2001 From: Olli-Antti Kivilahti Date: Mon, 16 Sep 2024 19:11:37 +0300 Subject: [PATCH] Bug 20153: Add new column "source" in the authorities pages's result Populates the already existing auth_header.origincode from MARC Authorities CRUD. Displays it in the authorities search results from the cataloguing tool and from the authorities search module. MARC21 cataloguing rules are followed to populate it automatically, but I have no knowledge of UNIMARC/etc to implement origincode autovifivication for those. TEST PLAN (MARC21) 1. Create a MARC Authorities Record 2. Optionally define MARC Framework for Authority auth_header.origincode 3. Populate 040$ca or 024$2 or 003 or the subfield at MARC Framework for Authority auth_header.origincode 4. Search for the Auth Record 5. Observe a new 'Origin'-tab in the search results has the defined 'Cataloguing Source'. 5a. Page: authorities/auth_finder.pl 5b. Page: authorities/authorities-home.pl TEST PLAN (Others) 0. Same as MARC21, but the MARC FW for Auth is mandatory. --- C4/AuthoritiesMarc.pm | 25 +++++++++++++++++++ Koha/SearchEngine/Elasticsearch/Search.pm | 1 + .../authorities/searchresultlist-auth.tt | 2 ++ .../modules/authorities/searchresultlist.tt | 2 ++ 4 files changed, 30 insertions(+) diff --git a/C4/AuthoritiesMarc.pm b/C4/AuthoritiesMarc.pm index 1656a2ba9b..f1c46235bd 100644 --- a/C4/AuthoritiesMarc.pm +++ b/C4/AuthoritiesMarc.pm @@ -697,6 +697,8 @@ sub AddAuthority { my $heading = $authority->heading_object( { record => $record } ); + my $origincode = CalculateOriginCode($record, $authtypecode); + # Update $authority->update( { @@ -704,6 +706,7 @@ sub AddAuthority { marc => $record->as_usmarc, marcxml => $record->as_xml_record($format), heading => $heading ? $heading->display_form : '', + origincode => $origincode, } ); @@ -1228,6 +1231,28 @@ sub GetAuthorizedHeading { return; } +=head2 CalculateOriginCode + + Finds the auth_header.origincode from the given MARC Authorities Record for the given MARC Authorities Framework + +=cut + +sub CalculateOriginCode { + my ($record, $authtypecode) = @_; + + my ($tagfield, $tagsubfield) = GetAuthMARCFromKohaField('auth_header.origincode', $authtypecode); + if (not(defined($tagfield) && defined($tagsubfield)) || not($record->subfield($tagfield, $tagsubfield))) { + if (C4::Context->preference('marcflavour') eq 'MARC21') { + return $record->subfield('040', 'c') || $record->subfield('040', 'a') || $record->subfield('024', '2') || $record->field('003') || ''; + } + else { + warn "KohaToMARCMapping for 'auth_header.origincode' not set for '".C4::Context->preference('marcflavour')."' and don't know what fallbacks to use."; + return ''; + } + } + return $record->subfield($tagfield, $tagsubfield); +} + =head2 CompareFieldWithAuthority $match = &CompareFieldWithAuthority({ field => $field, authid => $authid }) diff --git a/Koha/SearchEngine/Elasticsearch/Search.pm b/Koha/SearchEngine/Elasticsearch/Search.pm index 42326e3573..d7e8b7893e 100644 --- a/Koha/SearchEngine/Elasticsearch/Search.pm +++ b/Koha/SearchEngine/Elasticsearch/Search.pm @@ -247,6 +247,7 @@ sub search_auth_compat { # Turn the resultset into a hash $result{authtype} = $authtype ? $authtype->authtypetext : $authtypecode; $result{reported_tag} = $reported_tag; + $result{origincode} = C4::AuthoritiesMarc::CalculateOriginCode($marc, $authtypecode); # Reimplementing BuildSummary is out of scope because it'll be hard $result{summary} = diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt index 2b1e9ce345..d5d53158bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt @@ -61,6 +61,7 @@ + [% IF Koha.Preference('ShowHeadingUse') %] @@ -78,6 +79,7 @@ [% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %] [% END %] +
SummarySource Heading type Used[% resul.origincode %] [% resul.summary.label | html %] [% IF resul.used > 0 %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt index ec06c0d065..ccddc465c1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt @@ -64,6 +64,7 @@ + [% UNLESS ( isEDITORS ) %] @@ -84,6 +85,7 @@ [% PROCESS authresult summary=resul.summary authid=resul.authid %] [% END %] + [% UNLESS ( resul.isEDITORS ) %]
SummarySource Heading typeUsed in[% resul.origincode %] [% resul.authtype | html %] -- 2.39.2