Bugzilla – Attachment 180563 Details for
Bug 27428
Show the number of records in the bibliographic record detail page with ElasticSearch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27428: (follow-up) perltidy, change the atomic file to the newer format, moving system preference to Features section and Fixing opac-display-record-count.js
Bug-27428-follow-up-perltidy-change-the-atomic-fil.patch (text/plain), 10.90 KB, created by
Hammat wele
on 2025-04-03 14:09:14 UTC
(
hide
)
Description:
Bug 27428: (follow-up) perltidy, change the atomic file to the newer format, moving system preference to Features section and Fixing opac-display-record-count.js
Filename:
MIME Type:
Creator:
Hammat wele
Created:
2025-04-03 14:09:14 UTC
Size:
10.90 KB
patch
obsolete
>From dc4de3a99ca33dbc0ba4c7949ad4fe9b5499ac3d Mon Sep 17 00:00:00 2001 >From: Hammat Wele <hammat.wele@inlibro.com> >Date: Wed, 8 Nov 2023 01:10:01 +0000 >Subject: [PATCH] Bug 27428: (follow-up) perltidy, change the atomic file to > the newer format, moving system preference to Features section and Fixing > opac-display-record-count.js > >Signed-off-by: David Nind <david@davidnind.com> >--- > Koha/SearchEngine/Elasticsearch/Browse.pm | 30 +++--- > ...ber_records_next_to_search_links_opac.perl | 8 -- > ...umber_records_next_to_search_links_opac.pl | 18 ++++ > .../bootstrap/js/opac-display-record-count.js | 20 +--- > opac/svc/elasticsearch/opac-elasticsearch.pl | 93 ++++++++++--------- > 5 files changed, 80 insertions(+), 89 deletions(-) > delete mode 100644 installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl > create mode 100755 installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.pl > >diff --git a/Koha/SearchEngine/Elasticsearch/Browse.pm b/Koha/SearchEngine/Elasticsearch/Browse.pm >index a2fc780c11..04da871b8b 100644 >--- a/Koha/SearchEngine/Elasticsearch/Browse.pm >+++ b/Koha/SearchEngine/Elasticsearch/Browse.pm >@@ -291,14 +291,8 @@ sub _build_query_autocomplete { > } > > sub _build_query_count_record { >- my ($self, $cgi_q, $key, $item) = @_; >- my $query = { >- query => { >- match_phrase => { >- $key => $item >- } >- } >- }; >+ my ( $self, $cgi_q, $key, $item ) = @_; >+ my $query = { query => { match_phrase => { $key => $item } } }; > return $query; > } > >@@ -311,29 +305,27 @@ Return an arrayref of record counts > =cut > > sub count_record { >- my ($self, $cgi_q) = @_; >+ my ( $self, $cgi_q ) = @_; > my @results_return; > my $decoded; > $cgi_q =~ s/\{\'/\{\"/g; > $cgi_q =~ s/\'\}/\"\}/g; >+ > #$cgi_q =~ s/\'\:\'/\"\:\"}/g; >- eval { >- $decoded = JSON::XS::decode_json($cgi_q); >- }; >+ eval { $decoded = JSON::XS::decode_json($cgi_q); }; > if ($@) { > warn "Caught JSON::XS decode error: $_"; > } > >- foreach my $item (@$decoded) >- { >- for my $key ( keys %$item ){ >+ foreach my $item (@$decoded) { >+ for my $key ( keys %$item ) { > my $elasticsearch = $self->get_elasticsearch(); >- my $query = $self->_build_query_count_record($cgi_q, $key, $$item{$key}); >- my $res = $elasticsearch->search( >+ my $query = $self->_build_query_count_record( $cgi_q, $key, $$item{$key} ); >+ my $res = $elasticsearch->search( > index => $self->index_name, >- body => $query >+ body => $query > ); >- push(@results_return, $res->{'hits'}->{'total'}); >+ push( @results_return, $res->{'hits'}->{'total'} ); > } > } > return \@results_return; >diff --git a/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl b/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl >deleted file mode 100644 >index 5b112ef81c..0000000000 >--- a/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl >+++ /dev/null >@@ -1,8 +0,0 @@ >-$DBversion = 'XXX'; # will be replaced by the RM >-if( CheckVersion( $DBversion ) ) { >- # you can use $dbh here like: >- $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('OPACDisplayRecordCount', '0', NULL, 'If enabled, show the number of records next to search links in the bibliographic record detail page in the OPAC.', 'YesNo')}); >- >- # Always end with this (adjust the bug info) >- NewVersion( $DBversion, 27428, "Show the number of records in the detail page in the OPAC"); >-} >diff --git a/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.pl b/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.pl >new file mode 100755 >index 0000000000..ff5e8b3fe9 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.pl >@@ -0,0 +1,18 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "27428", >+ description => "A single line description", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ # Do you stuffs here >+ $dbh->do( >+ q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('OPACDisplayRecordCount', '0', NULL, 'If enabled, show the number of records next to search links in the bibliographic record detail page in the OPAC.', 'YesNo')} >+ ); >+ >+ # Print useful stuff here >+ say $out "Added new system preference 'OPACDisplayRecordCount'"; >+ }, >+}; >\ No newline at end of file >diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js b/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js >index 7fc68f19f0..efefb4b2fc 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js >+++ b/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js >@@ -1,11 +1,7 @@ > var url_request = '/cgi-bin/koha/svc/elasticsearch/opac-elasticsearch.pl?q='; > >-//const url_param = '_search?filter_path=hits.total&source_content_type=application/json' >-/* Regex pour tous les URL avec un recherche */ > var regex_es_link = "/cgi-bin/koha/opac-search.pl?q="; >-/* key API */ > var key_display = 'nb_notice'; >-/* idx de recherche */ > var es_builder = { > 'an' : 'koha-auth-number', > 'Provider' : 'provider', >@@ -13,8 +9,6 @@ var es_builder = { > 'au' : 'author', > 'su,complete-subfield' : 'subject' > } >-/* On remplace tous les caractères suivants */ >-//https://www.obkb.com/dcljr/charstxt.html > var not_symbols = { > '\'':'%27', > '.':'%2E', >@@ -46,21 +40,15 @@ var not_symbols = { > > function NumberResultsRecord(){ > >- var regex = 'a[href*="${' + regex_es_link + '}"]'; >+ var regex = 'a[href*="' + regex_es_link + '"]'; > var all_link = $(regex); >- /* array json data to server */ > var json_data=[]; > > $.each( all_link, function( i, val ) { >- var url = ''; > var str = val.href; >- /* on prend param de q= */ > str = decodeURIComponent(str.split('?q=').pop()); >- /* split query for fields for search [0] */ >- var es_search = str.split(':'); >- /* Remplacement pour un requete */ >- var str_search = str.substring(str.indexOf(":") + 1); >- /* [0] this is field for search */ >+ var es_search = str.split(':'); >+ var str_search = str.substring(str.indexOf(":") + 1); > str_search = str_search.replace(/[&\/\\#,+()$~%.'":;*?<>{}]/g, function(matched){ > return not_symbols[matched]; > }); >@@ -74,10 +62,8 @@ function NumberResultsRecord(){ > type: 'GET', > url: url_request + JSON.stringify(json_data) + '&key=' + key_display, > success: function (data) { >- //consoleconsole.log(data); > jQuery.each( all_link, function( i, val ) { > $(val).after(" <span style=\"color:black\"><b>["+data[i]+"]</b></span>"); >- //console.log(val); > }); > }, > error: function (data) { >diff --git a/opac/svc/elasticsearch/opac-elasticsearch.pl b/opac/svc/elasticsearch/opac-elasticsearch.pl >index 8c82ed7a6c..74f306e6c3 100755 >--- a/opac/svc/elasticsearch/opac-elasticsearch.pl >+++ b/opac/svc/elasticsearch/opac-elasticsearch.pl >@@ -14,59 +14,62 @@ use C4::Biblio; > use Koha::Biblios; > > my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } ); >-my $cgi = CGI->new; >+my $cgi = CGI->new; > my $session = CGI::Session->load() or die CGI::Session->errstr(); > >-$session->param(-name=>'analyzer', -value=>"autocomplete"); >-$session->param(-name=>'prefix', -value=>$cgi->multi_param("prefix")); >-$session->param(-name=>'q', -value=>$cgi->multi_param("q")); >-$session->param(-name=>'key', -value=>$cgi->multi_param("key")); >-$session->param(-name=>'token_counter', -value=>$cgi->multi_param("token_counter")); >+$session->param( -name => 'analyzer', -value => "autocomplete" ); >+$session->param( -name => 'prefix', -value => $cgi->multi_param("prefix") ); >+$session->param( -name => 'q', -value => $cgi->multi_param("q") ); >+$session->param( -name => 'key', -value => $cgi->multi_param("key") ); >+$session->param( -name => 'token_counter', -value => $cgi->multi_param("token_counter") ); > $session->expire('+1h'); > >-if ($session->param("key") eq "autocomplete") { >- my @prefix = split /,/, $session->param("prefix"); >- #fields for autocomplete >- my $length = scalar @prefix; >- my $ses = NFKD( $session->param("q") ); >- $ses =~ s/\p{NonspacingMark}//g; >+if ( $session->param("key") eq "autocomplete" ) { >+ my @prefix = split /,/, $session->param("prefix"); > >- if ($length >= 1) { >- my $res = $browser->autocomplete_idx($ses, \@prefix, $session->param("analyzer"), $session->param("token_counter")); >+ #fields for autocomplete >+ my $length = scalar @prefix; >+ my $ses = NFKD( $session->param("q") ); >+ $ses =~ s/\p{NonspacingMark}//g; > >- print $cgi->header("application/json;charset=UTF-8"); >- print to_json($res, {utf8 => 1}); >- } >- #no prefix 404 >- else { >+ if ( $length >= 1 ) { >+ my $res = >+ $browser->autocomplete_idx( $ses, \@prefix, $session->param("analyzer"), $session->param("token_counter") ); >+ >+ print $cgi->header("application/json;charset=UTF-8"); >+ print to_json( $res, { utf8 => 1 } ); >+ } >+ >+ #no prefix 404 >+ else { >+ response404JSON(); >+ } >+} elsif ( $session->param("key") eq "nb_notice" ) { >+ my $ses = NFKD( $session->param("q") ); >+ $ses =~ s/\p{NonspacingMark}//g; >+ my $res = $browser->count_record($ses); >+ print $cgi->header("application/json"); >+ print to_json($res); >+} else { > response404JSON(); >- } >-} >-elsif ($session->param("key") eq "nb_notice") { >- my $ses = NFKD( $session->param("q") ); >- $ses =~ s/\p{NonspacingMark}//g; >- my $res = $browser->count_record($ses); >- print $cgi->header("application/json"); >- print to_json($res); >-} >-else { >- response404JSON(); > } > > sub response404JSON { >- my $res = CGI->new; >- my $json = JSON->new->utf8; >- my $header_type = "application/json;charset=UTF-8"; >- my $header_status = "404"; >- my $output = $json->encode({ >- "error" => "No data", >- "description" => "Bad request", >- }); >- print $res->header( >- -type => $header_type, >- -charset => "utf-8", >- -status => $header_status >- ); >- print $output; >- print "\n"; >+ my $res = CGI->new; >+ my $json = JSON->new->utf8; >+ my $header_type = "application/json;charset=UTF-8"; >+ my $header_status = "404"; >+ my $output = $json->encode( >+ { >+ "error" => "No data", >+ "description" => "Bad request", >+ } >+ ); >+ print $res->header( >+ -type => $header_type, >+ -charset => "utf-8", >+ -status => $header_status >+ ); >+ print $output; >+ print "\n"; > } >-- >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 27428
:
115159
|
115206
|
117950
|
119980
|
120034
|
120633
|
132068
|
139625
|
139626
|
139681
|
145222
|
148842
|
154509
|
154510
|
158639
|
158640
|
158641
|
161349
|
164557
|
164558
|
164559
|
164560
|
167328
|
167677
|
167767
|
167768
|
167769
|
167770
|
167771
|
167774
|
170274
|
170275
|
170276
|
170277
|
170278
|
170279
|
180561
|
180562
| 180563 |
180564
|
180565