View | Details | Raw Unified | Return to bug 27428
Collapse All | Expand All

(-)a/Koha/SearchEngine/Elasticsearch/Browse.pm (+42 lines)
Lines 50-55 as "suggestible" in the database when indexing takes place(no action required fo Link Here
50
50
51
use base qw(Koha::SearchEngine::Elasticsearch);
51
use base qw(Koha::SearchEngine::Elasticsearch);
52
use Modern::Perl;
52
use Modern::Perl;
53
use JSON;
53
54
54
=head2 browse
55
=head2 browse
55
56
Lines 289-294 sub _build_query_autocomplete { Link Here
289
    return $query;
290
    return $query;
290
}
291
}
291
292
293
sub _build_query_count_record {
294
    my ($self, $cgi_q, $key, $item) = @_;
295
    my $query = {
296
        query => {
297
            match_phrase => {
298
                $key  => $item
299
            }
300
        }
301
    };
302
    return $query;
303
}
304
305
sub count_record {
306
    my ($self, $cgi_q) = @_;
307
    my @results_return;
308
    my $decoded;
309
    $cgi_q =~ s/\{\'/\{\"/g;
310
    $cgi_q =~ s/\'\}/\"\}/g;
311
    #$cgi_q =~ s/\'\:\'/\"\:\"}/g;
312
    eval {
313
        $decoded = JSON::XS::decode_json($cgi_q);
314
    };
315
    if ($@) {
316
        warn "Caught JSON::XS decode error: $_";
317
    }
318
319
    foreach my $item (@$decoded)
320
    {
321
        for my $key ( keys %$item ){
322
            my $elasticsearch = $self->get_elasticsearch();
323
            my $query = $self->_build_query_count_record($cgi_q, $key, $$item{$key});
324
            my $res = $elasticsearch->search(
325
                index => $self->index_name,
326
                body => $query
327
            );
328
        push(@results_return, $res->{'hits'}->{'total'});
329
        }
330
    }
331
    return \@results_return;
332
}
333
292
1;
334
1;
293
335
294
__END__
336
__END__
(-)a/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl (+8 lines)
Line 0 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    # you can use $dbh here like:
4
    $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')});
5
6
    # Always end with this (adjust the bug info)
7
    NewVersion( $DBversion, 27428, "Show the number of records in the detail page in the OPAC");
8
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 491-496 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
491
('OPACDetailQRCode','0','','Enable the display of a QR Code on the OPAC detail page','YesNo'),
491
('OPACDetailQRCode','0','','Enable the display of a QR Code on the OPAC detail page','YesNo'),
492
('OPACdidyoumean','',NULL,'Did you mean? configuration for the OPAC. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free'),
492
('OPACdidyoumean','',NULL,'Did you mean? configuration for the OPAC. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free'),
493
('OPACDisplay856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding OPACXSLT option must be on','Choice'),
493
('OPACDisplay856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding OPACXSLT option must be on','Choice'),
494
('OPACDisplayRecordCount','0',NULL,'If enabled, show the number of records next to search links in the bibliographic record detail page in the OPAC.','YesNo'),
494
('OpacExportOptions','bibtex,dc,marcxml,marc8,utf8,marcstd,mods,ris,isbd','','Define export options available on OPAC detail page.','multiple'),
495
('OpacExportOptions','bibtex,dc,marcxml,marc8,utf8,marcstd,mods,ris,isbd','','Define export options available on OPAC detail page.','multiple'),
495
('OPACFallback', 'prog', 'bootstrap|prog', 'Define the fallback theme for the OPAC interface.', 'Themes'),
496
('OPACFallback', 'prog', 'bootstrap|prog', 'Define the fallback theme for the OPAC interface.', 'Themes'),
496
('OpacFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the OPAC','free'),
497
('OpacFavicon','','','Enter a complete URL to an image to replace the default Koha favicon on the OPAC','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref (+8 lines)
Lines 399-401 Searching: Link Here
399
                  1: Show
399
                  1: Show
400
                  0: "Don't show"
400
                  0: "Don't show"
401
            - search suggestions in the staff interface when using Elasticsearch.
401
            - search suggestions in the staff interface when using Elasticsearch.
402
        -
403
            - pref: OPACDisplayRecordCount
404
              type: boolean
405
              default: 0
406
              choices:
407
                  1: Show
408
                  0: "Don't show"
409
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc (+3 lines)
Lines 58-63 Link Here
58
    </style>
58
    </style>
59
    <!-- prettier-ignore-end -->
59
    <!-- prettier-ignore-end -->
60
[% END %]
60
[% END %]
61
[% IF ( Koha.Preference('OPACDisplayRecordCount') ) %]
62
    [% Asset.js("js/opac-display-record-count.js") | $raw %]
63
[% END %]
61
[% IF SCO_login %]
64
[% IF SCO_login %]
62
    [% SET SCOUserCSS = Koha.Preference('SCOUserCSS') %]
65
    [% SET SCOUserCSS = Koha.Preference('SCOUserCSS') %]
63
    [% IF SCOUserCSS %]
66
    [% IF SCOUserCSS %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+3 lines)
Lines 1588-1593 Link Here
1588
        [% Asset.js("js/openlibrary.js") | $raw %]
1588
        [% Asset.js("js/openlibrary.js") | $raw %]
1589
    [% END %]
1589
    [% END %]
1590
    <script>
1590
    <script>
1591
        [% IF ( Koha.Preference('OPACDisplayRecordCount') ) %]
1592
            NumberResultsRecord();
1593
        [% END %]
1591
        window.emojiPicker = new EmojiPicker({
1594
        window.emojiPicker = new EmojiPicker({
1592
        emojiable_selector: '[data-emojiable=true]',
1595
        emojiable_selector: '[data-emojiable=true]',
1593
        assetsPath: '[% interface | html %]/lib/emoji-picker/img/',
1596
        assetsPath: '[% interface | html %]/lib/emoji-picker/img/',
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js (+88 lines)
Line 0 Link Here
1
var url_request = '/cgi-bin/koha/svc/elasticsearch/opac-elasticsearch.pl?q=';
2
3
//const url_param = '_search?filter_path=hits.total&source_content_type=application/json'
4
/* Regex pour tous les URL avec un recherche */
5
var regex_es_link = "/cgi-bin/koha/opac-search.pl?q=";
6
/* key API */
7
var key_display = 'nb_notice';
8
/* idx de recherche */
9
var es_builder = {
10
    'an' : 'koha-auth-number',
11
    'Provider' : 'provider',
12
    'se,phr' : 'title-series',
13
    'au' : 'author',
14
    'su,complete-subfield' : 'subject'
15
}
16
/* On remplace tous les caractères suivants  */
17
//https://www.obkb.com/dcljr/charstxt.html
18
var not_symbols = {
19
    '\'':'%27',
20
    '.':'%2E',
21
    '+': '',
22
    ',': '%2C',
23
    ';': '%3B',
24
    '-': '',
25
    '=': '',
26
    '&': '%26',
27
    '|': '',
28
    '>': '',
29
    '<': '',
30
    '!': '',
31
    '(': '',
32
    ')': '',
33
    '{': '',
34
    '}': '',
35
    '[': '',
36
    ']': '',
37
    '^': '',
38
    '"': '',
39
    '~': '',
40
    '*': '',
41
    '?': '',
42
    ':': '%3A',
43
    '/': '',
44
    "\\": '%5C'
45
};
46
47
function NumberResultsRecord(){
48
49
    var regex = `a[href*="${regex_es_link}"]`;
50
    var all_link = $(regex);
51
    /* array json data to server */
52
    var json_data=[];
53
54
    $.each( all_link, function( i, val ) {
55
        var url = '';
56
        var str = val.href;
57
        /* on prend param de q= */
58
        str = decodeURIComponent(str.split('?q=').pop());
59
        /* split query for fields for search [0] */
60
		var es_search = str.split(':');
61
        /* Remplacement pour un requete */
62
		var str_search = str.substring(str.indexOf(":") + 1);
63
		/* [0] this is field for search */
64
		str_search = str_search.replace(/[&\/\\#,+()$~%.'":;*?<>{}]/g, function(matched){
65
			return not_symbols[matched];
66
        });
67
        es_search[0] = es_search[0][0] == '(' ? es_search[0].substring(1) : es_search[0];
68
        var json = {};
69
        json[es_builder[es_search[0]]] = str_search;
70
        json_data.push(json);
71
  });
72
73
  $.ajax({
74
    type: 'GET',
75
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
76
    success: function (data) {
77
        //consoleconsole.log(data);
78
        jQuery.each( all_link, function( i, val ) {
79
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i]+"]</b></span>");
80
            //console.log(val);
81
        });
82
    },
83
    error: function (data) {
84
        console.log(data);
85
    },
86
  });
87
88
}
(-)a/opac/svc/elasticsearch/opac-elasticsearch.pl (-2 / +9 lines)
Lines 41-47 if ($session->param("key") eq "autocomplete") { Link Here
41
  else {
41
  else {
42
    response404JSON();
42
    response404JSON();
43
  }
43
  }
44
} else {
44
} 
45
elsif ($session->param("key") eq "nb_notice") {
46
  my $ses = NFKD( $session->param("q") );
47
  $ses =~ s/\p{NonspacingMark}//g;
48
  my $res = $browser->count_record($ses);
49
  print $cgi->header("application/json");
50
  print to_json($res);
51
}
52
else {
45
  response404JSON();
53
  response404JSON();
46
}
54
}
47
55
48
- 

Return to bug 27428