Bugzilla – Attachment 55042 Details for
Bug 11592
opac detail scripts do not respect MARC tag visibility
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11592: Applying filtering to opac interface.
Bug-11592-Applying-filtering-to-opac-interface.patch (text/plain), 7.57 KB, created by
Tomás Cohen Arazi (tcohen)
on 2016-08-30 16:00:59 UTC
(
hide
)
Description:
Bug 11592: Applying filtering to opac interface.
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2016-08-30 16:00:59 UTC
Size:
7.57 KB
patch
obsolete
>From 10831ef02a90559fbd452dbf40af46de1c26cae3 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Fri, 19 Feb 2016 11:02:59 -0500 >Subject: [PATCH] Bug 11592: Applying filtering to opac interface. > >Applying the filtering and then... >Debugging opac/opac-detail.pl filtering >Debugging opac/opac-ISBDdetail.pl more >Debugging opac/opac-export.pl >Tweak opac/opac-export.pl fix variable declarations, conditional assignments >Debugging opac/opac-showmarc.pl > >https://bugs.koha-community.org/show_bug.cgi?id=11592 > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > opac/opac-ISBDdetail.pl | 11 ++++++++--- > opac/opac-detail.pl | 16 +++++++++++++--- > opac/opac-export.pl | 28 +++++++++++++++++++++------- > opac/opac-showmarc.pl | 21 +++++++++++++++++---- > 4 files changed, 59 insertions(+), 17 deletions(-) > >diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl >index f325fd3..d956af2 100755 >--- a/opac/opac-ISBDdetail.pl >+++ b/opac/opac-ISBDdetail.pl >@@ -54,6 +54,7 @@ use C4::Review; > use C4::Serials; # uses getsubscriptionfrom biblionumber > use C4::Koha; > use C4::Members; # GetMember >+use Koha::RecordProcessor; > > my $query = CGI->new(); > my ( $template, $loggedinuser, $cookie ) = get_template_and_user( >@@ -91,11 +92,15 @@ if (scalar @items >= 1) { > } > } > >-my $record = GetMarcBiblio($biblionumber); >-if ( ! $record ) { >+my $record_unfiltered = GetMarcBiblio($biblionumber); >+if ( ! $record_unfiltered ) { > print $query->redirect("/cgi-bin/koha/errors/404.pl"); > exit; > } >+my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $record_filtered = $record_unfiltered->clone(); >+my $record = $record_processor->process($record_filtered); >+ > # some useful variables for enhanced content; > # in each case, we're grabbing the first value we find in > # the record and normalizing it >@@ -112,7 +117,7 @@ $template->param( > normalized_ean => $ean, > normalized_oclc => $oclc, > normalized_isbn => $isbn, >- content_identifier_exists => $content_identifier_exists, >+ content_identifier_exists => $content_identifier_exists, > ); > > #coping with subscriptions >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 98afe3e..b2046a8 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -50,7 +50,7 @@ use C4::Images; > use Koha::DateUtils; > use C4::HTML5Media; > use C4::CourseReserves qw(GetItemCourseReservesInfo); >- >+use Koha::RecordProcessor; > use Koha::Virtualshelves; > > BEGIN { >@@ -84,11 +84,14 @@ if (scalar @all_items >= 1) { > } > } > >-my $record = GetMarcBiblio($biblionumber); >-if ( ! $record ) { >+my $record_unfiltered = GetMarcBiblio($biblionumber); >+if ( ! $record_unfiltered ) { > print $query->redirect("/cgi-bin/koha/errors/404.pl"); # escape early > exit; > } >+my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $record_filtered = $record_unfiltered->clone(); >+my $record = $record_processor->process($record_filtered); > > # redirect if opacsuppression is enabled and biblio is suppressed > if (C4::Context->preference('OpacSuppression')) { >@@ -524,6 +527,11 @@ if ( C4::Context->preference('HighlightOwnItemsOnOPAC') ) { > } > > my $dat = &GetBiblioData($biblionumber); >+my $HideMARC = $record_processor->filters->[0]->should_hide_marc( >+ { >+ frameworkcode => $dat->{'frameworkcode'}, >+ interface => 'opac', >+ } ); > > my $itemtypes = GetItemTypes(); > # imageurl: >@@ -762,7 +770,9 @@ if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) { > ); > } > >+# FIXME: The template uses this hash directly. Need to filter. > foreach ( keys %{$dat} ) { >+ next if ( $HideMARC->{$_} ); > $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' ); > } > >diff --git a/opac/opac-export.pl b/opac/opac-export.pl >index 3f32d1a..c732e2e 100755 >--- a/opac/opac-export.pl >+++ b/opac/opac-export.pl >@@ -26,20 +26,33 @@ use C4::Biblio; > use CGI qw ( -utf8 ); > use C4::Auth; > use C4::Ris; >+use Koha::RecordProcessor; > >-my $query = new CGI; >+my $query = CGI->new; > my $op=$query->param("op")||''; #op=export is currently the only use > my $format=$query->param("format")||'utf8'; > my $biblionumber = $query->param("bib")||0; > $biblionumber = int($biblionumber); >-my ($marc, $error)= ('',''); >+my $error = q{}; > >-$marc = GetMarcBiblio($biblionumber, 1) if $biblionumber; >-if(!$marc) { >+my $marc_unfiltered; >+$marc_unfiltered = GetMarcBiblio($biblionumber, 1) if $biblionumber; >+if(!$marc_unfiltered) { > print $query->redirect("/cgi-bin/koha/errors/404.pl"); > exit; > } >-elsif ($format =~ /endnote/) { >+ >+# ASSERT: There is a biblionumber, because GetMarcBiblio returned something. >+ >+my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $marc_filtered = $marc_unfiltered->clone(); >+my $marc = $record_processor->process($marc_filtered); >+ >+my $marc_noitems_unfiltered = GetMarcBiblio($biblionumber); >+my $marc_noitems_filtered = $marc_noitems_unfiltered->clone(); >+my $marc_noitems = $record_processor->process($marc_noitems_filtered); >+ >+if ($format =~ /endnote/) { > $marc = marc2endnote($marc); > $format = 'endnote'; > } >@@ -56,11 +69,12 @@ elsif ($format =~ /ris/) { > $format = 'ris'; > } > elsif ($format =~ /bibtex/) { >- $marc = marc2bibtex(C4::Biblio::GetMarcBiblio($biblionumber),$biblionumber); >+ $marc = marc2bibtex($marc_noitems,$biblionumber); > $format = 'bibtex'; > } > elsif ($format =~ /dc$/) { >- $marc = marc2dcxml(undef, undef, $biblionumber, $format); >+ # TODO: Dublin Core leaks fields marked hidden by framework. >+ $marc = marc2dcxml($marc, undef, $biblionumber, $format); > $format = "dublin-core.xml"; > } > elsif ($format =~ /marc8/) { >diff --git a/opac/opac-showmarc.pl b/opac/opac-showmarc.pl >index c337727..f02ab7c 100755 >--- a/opac/opac-showmarc.pl >+++ b/opac/opac-showmarc.pl >@@ -31,6 +31,7 @@ use C4::Biblio; > use C4::ImportBatch; > use C4::XSLT (); > use C4::Templates; >+use Koha::RecordProcessor; > > my $input = new CGI; > my $biblionumber = $input->param('id'); >@@ -38,21 +39,33 @@ $biblionumber = int($biblionumber); > my $importid= $input->param('importid'); > my $view= $input->param('viewas') || 'marc'; > >-my $record; >+my $record_unfiltered; > if ($importid) { > my ($marc) = GetImportRecordMarc($importid); >- $record = MARC::Record->new_from_usmarc($marc); >+ $record_unfiltered = MARC::Record->new_from_usmarc($marc); > } > else { >- $record =GetMarcBiblio($biblionumber); >+ $record_unfiltered = GetMarcBiblio($biblionumber); > } >-if(!ref $record) { >+if(!ref $record_unfiltered) { > print $input->redirect("/cgi-bin/koha/errors/404.pl"); > exit; > } > >+my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $record_filtered = $record_unfiltered->clone(); >+my $record = $record_processor->process($record_filtered); >+ > if ($view eq 'card' || $view eq 'html') { >+ # FIXME: GetXmlBiblio needs filtering later. > my $xml = $importid ? $record->as_xml(): GetXmlBiblio($biblionumber); >+ if (!$importid && $view eq 'html') { >+ my $unfiltered_record = MARC::Record->new_from_xml($xml); >+ my $frameworkcode = GetFrameworkCode($biblionumber); >+ $record_processor->options({ frameworkcode => $frameworkcode}); >+ my $filtered_record = $record_processor->process($unfiltered_record); >+ $xml = $filtered_record->as_xml(); >+ } > my $xsl = $view eq 'card' ? 'compact.xsl' : 'plainMARC.xsl'; > my $htdocs = C4::Context->config('opachtdocs'); > my ($theme, $lang) = C4::Templates::themelanguage($htdocs, $xsl, 'opac', $input); >-- >2.7.4
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 11592
:
24600
|
24601
|
24611
|
24629
|
24654
|
24655
|
24657
|
24658
|
24659
|
24660
|
24661
|
24662
|
24663
|
24664
|
24875
|
24876
|
24952
|
24953
|
28002
|
28003
|
28477
|
28478
|
28479
|
28480
|
28724
|
31356
|
32382
|
32383
|
33356
|
33357
|
33358
|
33689
|
35855
|
35856
|
35857
|
35858
|
47993
|
47996
|
47997
|
48001
|
49288
|
49289
|
49290
|
49291
|
49612
|
49613
|
49614
|
49615
|
50484
|
50485
|
50486
|
50489
|
50542
|
50550
|
50551
|
50552
|
50553
|
50554
|
51313
|
51314
|
51315
|
51316
|
51317
|
51318
|
51326
|
53440
|
53441
|
53442
|
53443
|
53444
|
55040
|
55041
| 55042 |
55043
|
55044
|
55045
|
55046
|
55184
|
55185