Bugzilla – Attachment 178572 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]
[24.05.x] Bug 28478: Add get_opac_suppression extractor
2405x-Bug-28478-Add-getopacsuppression-extractor.patch (text/plain), 3.94 KB, created by
Tomás Cohen Arazi (tcohen)
on 2025-02-24 13:49:04 UTC
(
hide
)
Description:
[24.05.x] Bug 28478: Add get_opac_suppression extractor
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2025-02-24 13:49:04 UTC
Size:
3.94 KB
patch
obsolete
>From e9b4b99e6e17620a2259d367f36fa1fd54167446 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] [24.05.x] 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 | 54 +++++++++++++++++++ > 2 files changed, 71 insertions(+) > create mode 100755 t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t > >diff --git a/Koha/Biblio/Metadata/Extractor/MARC.pm b/Koha/Biblio/Metadata/Extractor/MARC.pm >index ceaabf2aa19..ec8015091ba 100644 >--- a/Koha/Biblio/Metadata/Extractor/MARC.pm >+++ b/Koha/Biblio/Metadata/Extractor/MARC.pm >@@ -76,6 +76,23 @@ sub metadata { > return $self->{metadata}; > } > >+=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 >new file mode 100755 >index 00000000000..573b5b3092e >--- /dev/null >+++ b/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t >@@ -0,0 +1,54 @@ >+#!/usr/bin/perl >+ >+# Copyright 2025 Koha Development team >+# >+# This file is part of Koha >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 1; >+use Test::Exception; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+ >+use Koha::Biblio::Metadata::Extractor; >+ >+my $schema = Koha::Database->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+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.48.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