Bugzilla – Attachment 176898 Details for
Bug 28478
MARC detail and ISBD pages still show suppressed records
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28478: Add get_opac_suppression extractor
Bug-28478-Add-getopacsuppression-extractor.patch (text/plain), 3.28 KB, created by
Jonathan Druart
on 2025-01-22 10:30:12 UTC
(
hide
)
Description:
Bug 28478: Add get_opac_suppression extractor
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-01-22 10:30:12 UTC
Size:
3.28 KB
patch
obsolete
>From 2345086de9cb278e4cddaa4233aba9984078685d Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 18 Dec 2024 11:10:34 -0300 >Subject: [PATCH] Bug 28478: Add get_opac_suppression extractor > >This patch adds an extractor method for the historically hardcoded field >942$n. This way we have a single place in which we code the extraction >and sanitization of its value. > >To test: >1. Apply this patch >2. Run: > $ ktd --shell > k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t >=> SUCCESS: Tests pass! All use cases are covered! >3. Sign off :-D > >Signed-off-by: Magnus Enger <magnus@libriotech.no> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > Koha/Biblio/Metadata/Extractor/MARC.pm | 17 +++++++++++++ > .../Koha/Biblio/Metadata/Extractor/MARC.t | 25 ++++++++++++++++++- > 2 files changed, 41 insertions(+), 1 deletion(-) > >diff --git a/Koha/Biblio/Metadata/Extractor/MARC.pm b/Koha/Biblio/Metadata/Extractor/MARC.pm >index 99e3f6032c5..c7f564db739 100644 >--- a/Koha/Biblio/Metadata/Extractor/MARC.pm >+++ b/Koha/Biblio/Metadata/Extractor/MARC.pm >@@ -100,6 +100,23 @@ sub get_control_number { > return $control_number; > } > >+=head2 get_opac_suppression >+ >+ my $opac_suppressed = $extractor->get_opac_suppression(); >+ >+Returns whether the record is flagged as suppressed in the OPAC. >+FIXME: Revisit after 38330 discussion >+ >+=cut >+ >+sub get_opac_suppression { >+ my ($self) = @_; >+ >+ my $record = $self->metadata; >+ >+ return $record->subfield( '942', 'n' ) ? 1 : 0; >+} >+ > =head3 _normalize_string > > my $normalized_string = $self->_normalize_string($string); >diff --git a/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t b/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t >index 02907e08c5c..9b9aea29013 100755 >--- a/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t >+++ b/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t >@@ -19,7 +19,7 @@ > > use Modern::Perl; > >-use Test::More tests => 1; >+use Test::More tests => 2; > use Test::Exception; > > use t::lib::TestBuilder; >@@ -54,3 +54,26 @@ subtest 'get_control_number() tests' => sub { > is( $extractor->get_control_number, $identifier, 'Returns the right value' ); > } > }; >+ >+subtest 'get_opac_suppression() tests' => sub { >+ >+ plan tests => 8; >+ >+ foreach my $marcflavour (qw( MARC21 UNIMARC )) { >+ t::lib::Mocks::mock_preference( 'marcflavour', $marcflavour ); >+ >+ my $record = MARC::Record->new(); >+ my $extractor = Koha::Biblio::Metadata::Extractor->new( { metadata => $record } ); >+ >+ is( $extractor->get_opac_suppression(), 0, 'If 942$n absent, then not suppressed' ); >+ >+ $record->append_fields( MARC::Field->new( '942', q{}, q{}, n => '' ) ); >+ is( $extractor->get_opac_suppression(), 0, 'If 942$n has empty string, then not suppressed' ); >+ >+ $record->field('942')->replace_with( MARC::Field->new( '942', q{}, q{}, n => 'potato' ) ); >+ is( $extractor->get_opac_suppression(), 1, 'If 942$n has something different than false, then suppressed' ); >+ >+ $record->field('942')->replace_with( MARC::Field->new( '942', q{}, q{}, n => '1' ) ); >+ is( $extractor->get_opac_suppression(), 1, 'If 942$n is 1, then suppressed' ); >+ } >+}; >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28478
:
175654
|
175655
|
175656
|
176490
|
176491
|
176492
|
176861
|
176862
|
176863
| 176898 |
176899
|
176900
|
178572
|
178573
|
178574