From 0263921746e0f93f6a147bcdcbb0387990af05c6 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 8 Nov 2021 20:29:21 +0000 Subject: [PATCH] Bug 29439: WIP This is a copy and paste to get a 'working' start Needs updates for styling/code/etc --- catalogue/browse.pl | 113 +++++++++++++++++ .../prog/css/src/staff-global.scss | 51 ++++++++ .../prog/en/modules/catalogue/browse.tt | 119 ++++++++++++++++++ 3 files changed, 283 insertions(+) create mode 100644 catalogue/browse.pl create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt diff --git a/catalogue/browse.pl b/catalogue/browse.pl new file mode 100644 index 0000000000..ea611a32b1 --- /dev/null +++ b/catalogue/browse.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl + +# This is a CGI script that handles the browse feature. + +# Copyright 2015 Catalyst IT +# +# 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 . + +use Modern::Perl; +use CGI qw ( -utf8 ); + +use C4::Auth qw( get_template_and_user ); +use C4::Context; +use C4::Output qw( output_html_with_http_headers ); + +use Koha::SearchEngine::Elasticsearch; +use Koha::SearchEngine::Elasticsearch::Browse; +use Koha::SearchEngine::Elasticsearch::QueryBuilder; +use Koha::SearchEngine::Elasticsearch::Search; + +use JSON qw( to_json ); +use Unicode::Collate; + +my $query = CGI->new; +binmode STDOUT, ':encoding(UTF-8)'; + +# If calling via JS, 'api' is used to route to correct step in process +my $api = $query->param('api'); + +if ( !$api ) { + my ( $template, $loggedinuser, $cookie ) = get_template_and_user( + { + template_name => "catalogue/browse.tt", + query => $query, + type => "intranet", + flagsrequired => { catalogue => 1 }, + } + ); + $template->param(); + output_html_with_http_headers $query, $cookie, $template->output; + + +} +elsif ( $api eq 'GetSuggestions' ) { + my $fuzzie = $query->param('fuzziness'); + my $prefix = $query->param('prefix'); + my $field = $query->param('field'); + +# Under a persistent environment, we should probably not reinit this every time. + my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } ); + my $res = $browser->browse( $prefix, $field, { fuzziness => $fuzzie } ); + + my %seen; + my @sorted = + grep { !$seen{$_->{text}}++ } + sort { lc($a->{text}) cmp lc($b->{text}) } @$res; + print CGI::header( + -type => 'application/json', + -charset => 'utf-8' + ); + print to_json( \@sorted ); +} +elsif ( $api eq 'GetResults' ) { + my $term = $query->param('term'); + my $field = $query->param('field'); + + my $builder = Koha::SearchEngine::Elasticsearch::QueryBuilder->new( { index => 'biblios' } ); + my $searcher = Koha::SearchEngine::Elasticsearch::Search->new( + { index => $Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX } ); + + my $query = { query => { term => { $field.".raw" => $term } } } ; + my $results = $searcher->search( $query, undef, 500 ); + my @output = _filter_for_output( $results->{hits}->{hits} ); + print CGI::header( + -type => 'application/json', + -charset => 'utf-8' + ); + print to_json( \@output ); +} + +# This should probably be done with some templatey gizmo +# in the future. +sub _filter_for_output { + my ($records) = @_; + my @output; + foreach my $rec (@$records) { + my $biblionumber = $rec->{_id}; + my $biblio = Koha::Biblios->find( $biblionumber ); + next unless $biblio; + push @output, + { + id => $biblionumber, + title => $biblio->title, + subtitle => $biblio->subtitle, + author => $biblio->author, + }; + }; + my @sorted = sort { lc($a->{title}) cmp lc($b->{title}) } @output; + return @sorted; +} diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index fa3421dee1..9acbfa65aa 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4482,6 +4482,57 @@ input.renew { top: 0; } +/*browse search*/ + +#browse-resultswrapper { + margin-top: 15px; +} +#browse-searchfuzziness { + padding: 15px 0; +} + +#browse-searchresults, #browse-selectionsearch { + border: 1px solid #E3E3E3; + border-radius: 4px; + padding: 0; + margin-bottom: 2em; +} + +#browse-selectionsearch p.subjects { + font-size: 0.9em; + margin-bottom: 0; +} + +#browse-selectionsearch h4 { + margin: 0; +} + +#browse-suggestionserror { + margin-top: 1rem; +} + +#browse-search { + .loading { + text-align: center; + + img { + margin:0.5em 0; + position: relative; + left: -5px; + } + } +} + +#card_template { + display: none; +} + +.result-title { + margin-bottom: .4rem; + margin-left: 1rem; +} +/*end browse search*/ + div#makechart ol li { list-style: none; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt new file mode 100644 index 0000000000..1af64682eb --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt @@ -0,0 +1,119 @@ +[% USE Koha %] +[% USE Asset %] +[% USE raw %] +[% SET footerjs = 1 %] + +[% INCLUDE 'doc-head-open.inc' %] + +Browse the catalog › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog +[% INCLUDE 'doc-head-close.inc' %] + + + +[% INCLUDE 'header.inc' %] +[% INCLUDE 'cat-search.inc' %] + +[% IntranetCoce = Koha.Preference('IntranetCoce') %] +[% CoceProviders = Koha.Preference('CoceProviders') %] +[% CoceHost = Koha.Preference('CoceHost') %] + + + +
+
+
+ [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && Koha.Preference('OpacBrowseSearch') %] + + [% ELSE %] +

Browse search

+
+ This feature is not enabled +
+ [% END %] + +
+
+ +[% MACRO jsinclude BLOCK %] + [% Asset.js("js/browse.js") | $raw %] +[% END %] +[% INCLUDE 'intranet-bottom.inc' %] -- 2.20.1