From a1e86fc47909924ef14522d26df99b045d062e25 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 3 Aug 2021 14:29:27 +0100 Subject: [PATCH] Bug 11175: (QA follow-up) Take account of bug 15851 Content-Type: text/plain; charset=utf-8 We can simplify the code introduced by bug 15851 by moving the 'show_analytics_link' variable assignment into C4::XSLT and thus making the code more DRY. Taking the code in bug 15851 as inspiration this patch also adds proper handling for UseControlNumber vs EasyAnalytics style 773 linking and ensures we only return analytic component parts and no other records containing 773's. Signed-off-by: Martin Renvoize Signed-off-by: Andrew Nugged Signed-off-by: Marcel de Rooy --- C4/XSLT.pm | 54 ++++++++++++++++++++++++-------------------- Koha/Biblio.pm | 4 ++-- Koha/Util/Search.pm | 42 +++++++++++++++++++++++----------- catalogue/detail.pl | 24 -------------------- opac/opac-detail.pl | 21 ----------------- t/Koha/Util/Search.t | 18 ++++++++++++--- 6 files changed, 76 insertions(+), 87 deletions(-) diff --git a/C4/XSLT.pm b/C4/XSLT.pm index 2893dbf85c..b98a10d4a9 100644 --- a/C4/XSLT.pm +++ b/C4/XSLT.pm @@ -284,31 +284,37 @@ sub XSLTParse4Display { my $partsxml = ''; # possibly insert component records into Detail views if ( $xslsyspref eq "OPACXSLTDetailsDisplay" || $xslsyspref eq "XSLTDetailsDisplay" ) { + my $biblio = Koha::Biblios->find( $biblionumber ); + my $components = $biblio->get_marc_components(300); + $variables->{show_analytics_link} = ( scalar @{$components} == 0 ) ? 0 : 1; + my $showcomp = C4::Context->preference('ShowComponentRecords'); - if ( $showcomp eq 'both' || - ($showcomp eq 'staff' && $xslsyspref !~ m/OPAC/ ) || - ($showcomp eq 'opac' && $xslsyspref =~ m/OPAC/ ) ) { - my $biblio = Koha::Biblios->find( $biblionumber ); - my $max_results = 300; - - if ( $biblio->get_marc_components($max_results) ) { - my $search_query = Koha::Util::Search::get_component_part_query($biblionumber); - $variables->{ComponentPartQuery} = $search_query; - - my @componentPartRecordXML = (''); - for my $cb ( @{ $biblio->get_marc_components($max_results) } ) { - if( ref $cb eq 'MARC::Record'){ - $cb = $cb->as_xml_record(); - } else { - $cb = decode('utf8', $cb); - } - # Remove the xml header - $cb =~ s/^<\?xml.*?\?>//; - push @componentPartRecordXML,$cb; - } - push @componentPartRecordXML, ''; - $partsxml = join "\n", @componentPartRecordXML; - } + if ( + $variables->{show_analytics_link} + && ( $showcomp eq 'both' + || ( $showcomp eq 'staff' && $xslsyspref !~ m/OPAC/ ) + || ( $showcomp eq 'opac' && $xslsyspref =~ m/OPAC/ ) ) + ) + { + + $variables->{show_analytics_link} = 0; + + my $search_query = Koha::Util::Search::get_component_part_query($biblionumber); + $variables->{ComponentPartQuery} = $search_query; + + my @componentPartRecordXML = (''); + for my $cb ( @{ $components } ) { + if( ref $cb eq 'MARC::Record'){ + $cb = $cb->as_xml_record(); + } else { + $cb = decode('utf8', $cb); + } + # Remove the xml header + $cb =~ s/^<\?xml.*?\?>//; + push @componentPartRecordXML,$cb; + } + push @componentPartRecordXML, ''; + $partsxml = join "\n", @componentPartRecordXML; } } diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index 17f7db4f17..dac5445bb2 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -491,7 +491,7 @@ this object (MARC21 773$w points to this) sub get_marc_components { my ($self, $max_results) = @_; - return if (C4::Context->preference('marcflavour') ne 'MARC21'); + return [] if (C4::Context->preference('marcflavour') ne 'MARC21'); my $searchstr = Koha::Util::Search::get_component_part_query($self->id); @@ -501,7 +501,7 @@ sub get_marc_components { $self->{_components} = $results if ( defined($results) && scalar(@$results) ); } - return $self->{_components} || (); + return $self->{_components} || []; } =head3 subscriptions diff --git a/Koha/Util/Search.pm b/Koha/Util/Search.pm index 0228183e35..99ff38e77f 100644 --- a/Koha/Util/Search.pm +++ b/Koha/Util/Search.pm @@ -19,7 +19,7 @@ package Koha::Util::Search; use Modern::Perl; -use C4::Biblio; +use C4::Biblio qw( GetMarcBiblio ); =head1 NAME @@ -36,22 +36,38 @@ Returns a query which can be used to search for all component parts of MARC21 bi sub get_component_part_query { my ($biblionumber) = @_; - my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $biblionumber }); - my $pf001 = $marc->field('001') || undef; + my $marc = GetMarcBiblio( { biblionumber => $biblionumber } ); - if (defined($pf001)) { - my $pf003 = $marc->field('003') || undef; - my $searchstr; + my $searchstr; + if ( C4::Context->preference('UseControlNumber') ) { + my $pf001 = $marc->field('001') || undef; - if (!defined($pf003)) { - # search for 773$w='Host001' - $searchstr = "rcn=\"".$pf001->data()."\""; - } else { - # search for (773$w='Host001' and 003='Host003') or 773$w='Host003 Host001') - $searchstr = "(rcn=\"".$pf001->data()."\" AND cni=\"".$pf003->data()."\")"; - $searchstr .= " OR rcn=\"".$pf003->data()." ".$pf001->data()."\""; + if ( defined($pf001) ) { + my $pf003 = $marc->field('003') || undef; + + if ( !defined($pf003) ) { + # search for 773$w='Host001' + $searchstr = "rcn:" . $pf001->data(); + } + else { + $searchstr = "("; + # search for (773$w='Host001' and 003='Host003') or 773$w='Host003 Host001') + $searchstr .= "(rcn:" . $pf001->data() . " AND cni:" . $pf003->data() . ")"; + $searchstr .= " OR rcn:" . $pf003->data() . " " . $pf001->data(); + $searchstr .= ")"; + } + + # limit to monograph and serial component part records + $searchstr .= " AND (bib-level:a OR bib-level:b)"; } } + else { + my $cleaned_title = $marc->title; + $cleaned_title =~ tr|/||; + $searchstr = "Host-item:($cleaned_title)"; + } + + return $searchstr; } 1; diff --git a/catalogue/detail.pl b/catalogue/detail.pl index b5801cca71..cd186c36b0 100755 --- a/catalogue/detail.pl +++ b/catalogue/detail.pl @@ -126,29 +126,6 @@ my $marcflavour = C4::Context->preference("marcflavour"); { # XSLT processing of some stuff - my $searcher = Koha::SearchEngine::Search->new( - { index => $Koha::SearchEngine::BIBLIOS_INDEX } - ); - my $builder = Koha::SearchEngine::QueryBuilder->new( - { index => $Koha::SearchEngine::BIBLIOS_INDEX } ); - - my $cleaned_title = $biblio->title; - $cleaned_title =~ tr|/||; - $cleaned_title = $builder->clean_search_term($cleaned_title); - - my $query = - ( C4::Context->preference('UseControlNumber') and $record->field('001') ) - ? 'rcn:'. $record->field('001')->data . ' AND (bib-level:a OR bib-level:b)' - : "Host-item:($cleaned_title)"; - my ( $err, $result, $count ) = $searcher->simple_search_compat( $query, 0, 0 ); - - warn "Warning from simple_search_compat: $err" - if $err; - - my $variables = { - show_analytics_link => $count > 0 ? 1 : 0 - }; - $template->param( XSLTDetailsDisplay => '1', XSLTBloc => XSLTParse4Display( @@ -157,7 +134,6 @@ my $marcflavour = C4::Context->preference("marcflavour"); record => $record, xsl_syspref => "XSLTDetailsDisplay", fix_amps => 1, - xslt_variables => $variables } ), ); diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl index eb9a6866b1..ec453a9d08 100755 --- a/opac/opac-detail.pl +++ b/opac/opac-detail.pl @@ -195,29 +195,8 @@ my $marcflavour = C4::Context->preference("marcflavour"); my $ean = GetNormalizedEAN( $record, $marcflavour ); { - my $searcher = Koha::SearchEngine::Search->new( - { index => $Koha::SearchEngine::BIBLIOS_INDEX } - ); - my $builder = Koha::SearchEngine::QueryBuilder->new( - { index => $Koha::SearchEngine::BIBLIOS_INDEX } - ); - - my $cleaned_title = $biblio->title; - $cleaned_title =~ tr|/||; - $cleaned_title = $builder->clean_search_term($cleaned_title); - - my $query = - ( C4::Context->preference('UseControlNumber') and $record->field('001') ) - ? 'rcn:'. $record->field('001')->data . ' AND (bib-level:a OR bib-level:b)' - : "Host-item:($cleaned_title)"; - my ( $err, $result, $count ) = $searcher->simple_search_compat( $query, 0, 0 ); - - warn "Warning from simple_search_compat: $err" - if $err; - my $variables = { anonymous_session => ($borrowernumber) ? 0 : 1, - show_analytics_link => $count > 0 ? 1 : 0 }; my $lang = C4::Languages::getlanguage(); diff --git a/t/Koha/Util/Search.t b/t/Koha/Util/Search.t index e5cde2900b..30008db150 100755 --- a/t/Koha/Util/Search.t +++ b/t/Koha/Util/Search.t @@ -20,23 +20,35 @@ use Modern::Perl; use Test::More tests => 1; + +use t::lib::Mocks; use t::lib::TestBuilder; -use C4::Biblio; +use C4::Biblio qw( GetMarcBiblio ModBiblioMarc ); use Koha::Util::Search; use MARC::Field; my $builder = t::lib::TestBuilder->new; subtest 'get_component_part_query' => sub { - plan tests => 1; + plan tests => 3; my $biblio = $builder->build_sample_biblio(); my $biblionumber = $biblio->biblionumber; my $record = GetMarcBiblio({ biblionumber => $biblionumber }); + + t::lib::Mocks::mock_preference( 'UseControlNumber', '0' ); + is(Koha::Util::Search::get_component_part_query($biblionumber), "Host-item:(Some boring read)", "UseControlNumber disabled"); + + t::lib::Mocks::mock_preference( 'UseControlNumber', '1' ); my $marc_001_field = MARC::Field->new('001', $biblionumber); $record->append_fields($marc_001_field); ModBiblioMarc($record, $biblionumber); - is(Koha::Util::Search::get_component_part_query($biblionumber), "rcn=\"$biblionumber\""); + is(Koha::Util::Search::get_component_part_query($biblionumber), "rcn:$biblionumber AND (bib-level:a OR bib-level:b)", "UseControlNumber enabled without MarcOrgCode"); + + my $marc_003_field = MARC::Field->new('003', 'OSt'); + $record->append_fields($marc_003_field); + ModBiblioMarc($record, $biblionumber); + is(Koha::Util::Search::get_component_part_query($biblionumber), "((rcn:$biblionumber AND cni:OSt) OR rcn:OSt $biblionumber) AND (bib-level:a OR bib-level:b)", "UseControlNumber enabled with MarcOrgCode"); }; -- 2.20.1