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

(-)a/Koha/SearchEngine/Elasticsearch/Browse.pm (-19 / +11 lines)
Lines 291-304 sub _build_query_autocomplete { Link Here
291
}
291
}
292
292
293
sub _build_query_count_record {
293
sub _build_query_count_record {
294
    my ($self, $cgi_q, $key, $item) = @_;
294
    my ( $self, $cgi_q, $key, $item ) = @_;
295
    my $query = {
295
    my $query = { query => { match_phrase => { $key => $item } } };
296
        query => {
297
            match_phrase => {
298
                $key  => $item
299
            }
300
        }
301
    };
302
    return $query;
296
    return $query;
303
}
297
}
304
298
Lines 311-339 Return an arrayref of record counts Link Here
311
=cut
305
=cut
312
306
313
sub count_record {
307
sub count_record {
314
    my ($self, $cgi_q) = @_;
308
    my ( $self, $cgi_q ) = @_;
315
    my @results_return;
309
    my @results_return;
316
    my $decoded;
310
    my $decoded;
317
    $cgi_q =~ s/\{\'/\{\"/g;
311
    $cgi_q =~ s/\{\'/\{\"/g;
318
    $cgi_q =~ s/\'\}/\"\}/g;
312
    $cgi_q =~ s/\'\}/\"\}/g;
313
319
    #$cgi_q =~ s/\'\:\'/\"\:\"}/g;
314
    #$cgi_q =~ s/\'\:\'/\"\:\"}/g;
320
    eval {
315
    eval { $decoded = JSON::XS::decode_json($cgi_q); };
321
        $decoded = JSON::XS::decode_json($cgi_q);
322
    };
323
    if ($@) {
316
    if ($@) {
324
        warn "Caught JSON::XS decode error: $_";
317
        warn "Caught JSON::XS decode error: $_";
325
    }
318
    }
326
319
327
    foreach my $item (@$decoded)
320
    foreach my $item (@$decoded) {
328
    {
321
        for my $key ( keys %$item ) {
329
        for my $key ( keys %$item ){
330
            my $elasticsearch = $self->get_elasticsearch();
322
            my $elasticsearch = $self->get_elasticsearch();
331
            my $query = $self->_build_query_count_record($cgi_q, $key, $$item{$key});
323
            my $query         = $self->_build_query_count_record( $cgi_q, $key, $$item{$key} );
332
            my $res = $elasticsearch->search(
324
            my $res           = $elasticsearch->search(
333
                index => $self->index_name,
325
                index => $self->index_name,
334
                body => $query
326
                body  => $query
335
            );
327
            );
336
        push(@results_return, $res->{'hits'}->{'total'});
328
            push( @results_return, $res->{'hits'}->{'total'} );
337
        }
329
        }
338
    }
330
    }
339
    return \@results_return;
331
    return \@results_return;
(-)a/installer/data/mysql/atomicupdate/bug_27428-number_records_next_to_search_links_opac.perl (-8 lines)
Lines 1-8 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/atomicupdate/bug_27428-number_records_next_to_search_links_opac.pl (+18 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "27428",
5
    description => "A single line description",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        # Do you stuffs here
11
        $dbh->do(
12
            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')}
13
        );
14
15
        # Print useful stuff here
16
        say $out "Added new system preference 'OPACDisplayRecordCount'";
17
    },
18
};
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js (-17 / +3 lines)
Lines 1-11 Link Here
1
var url_request = '/cgi-bin/koha/svc/elasticsearch/opac-elasticsearch.pl?q=';
1
var url_request = '/cgi-bin/koha/svc/elasticsearch/opac-elasticsearch.pl?q=';
2
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=";
3
var regex_es_link = "/cgi-bin/koha/opac-search.pl?q=";
6
/* key API */
7
var key_display = 'nb_notice';
4
var key_display = 'nb_notice';
8
/* idx de recherche */
9
var es_builder = {
5
var es_builder = {
10
    'an' : 'koha-auth-number',
6
    'an' : 'koha-auth-number',
11
    'Provider' : 'provider',
7
    'Provider' : 'provider',
Lines 13-20 var es_builder = { Link Here
13
    'au' : 'author',
9
    'au' : 'author',
14
    'su,complete-subfield' : 'subject'
10
    'su,complete-subfield' : 'subject'
15
}
11
}
16
/* On remplace tous les caractères suivants  */
17
//https://www.obkb.com/dcljr/charstxt.html
18
var not_symbols = {
12
var not_symbols = {
19
    '\'':'%27',
13
    '\'':'%27',
20
    '.':'%2E',
14
    '.':'%2E',
Lines 46-66 var not_symbols = { Link Here
46
40
47
function NumberResultsRecord(){
41
function NumberResultsRecord(){
48
42
49
    var regex = 'a[href*="${' + regex_es_link + '}"]';
43
    var regex = 'a[href*="' + regex_es_link + '"]';
50
    var all_link = $(regex);
44
    var all_link = $(regex);
51
    /* array json data to server */
52
    var json_data=[];
45
    var json_data=[];
53
46
54
    $.each( all_link, function( i, val ) {
47
    $.each( all_link, function( i, val ) {
55
        var url = '';
56
        var str = val.href;
48
        var str = val.href;
57
        /* on prend param de q= */
58
        str = decodeURIComponent(str.split('?q=').pop());
49
        str = decodeURIComponent(str.split('?q=').pop());
59
        /* split query for fields for search [0] */
50
        var es_search = str.split(':');
60
		var es_search = str.split(':');
51
        var str_search = str.substring(str.indexOf(":") + 1);
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){
52
		str_search = str_search.replace(/[&\/\\#,+()$~%.'":;*?<>{}]/g, function(matched){
65
			return not_symbols[matched];
53
			return not_symbols[matched];
66
        });
54
        });
Lines 74-83 function NumberResultsRecord(){ Link Here
74
    type: 'GET',
62
    type: 'GET',
75
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
63
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
76
    success: function (data) {
64
    success: function (data) {
77
        //consoleconsole.log(data);
78
        jQuery.each( all_link, function( i, val ) {
65
        jQuery.each( all_link, function( i, val ) {
79
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i]+"]</b></span>");
66
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i]+"]</b></span>");
80
            //console.log(val);
81
        });
67
        });
82
    },
68
    },
83
    error: function (data) {
69
    error: function (data) {
(-)a/opac/svc/elasticsearch/opac-elasticsearch.pl (-46 / +48 lines)
Lines 14-72 use C4::Biblio; Link Here
14
use Koha::Biblios;
14
use Koha::Biblios;
15
15
16
my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } );
16
my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } );
17
my $cgi = CGI->new;
17
my $cgi     = CGI->new;
18
my $session = CGI::Session->load() or die CGI::Session->errstr();
18
my $session = CGI::Session->load() or die CGI::Session->errstr();
19
19
20
$session->param(-name=>'analyzer', -value=>"autocomplete");
20
$session->param( -name => 'analyzer',      -value => "autocomplete" );
21
$session->param(-name=>'prefix', -value=>$cgi->multi_param("prefix"));
21
$session->param( -name => 'prefix',        -value => $cgi->multi_param("prefix") );
22
$session->param(-name=>'q', -value=>$cgi->multi_param("q"));
22
$session->param( -name => 'q',             -value => $cgi->multi_param("q") );
23
$session->param(-name=>'key', -value=>$cgi->multi_param("key"));
23
$session->param( -name => 'key',           -value => $cgi->multi_param("key") );
24
$session->param(-name=>'token_counter', -value=>$cgi->multi_param("token_counter"));
24
$session->param( -name => 'token_counter', -value => $cgi->multi_param("token_counter") );
25
$session->expire('+1h');
25
$session->expire('+1h');
26
26
27
if ($session->param("key") eq "autocomplete") {
27
if ( $session->param("key") eq "autocomplete" ) {
28
  my @prefix = split /,/, $session->param("prefix");
28
    my @prefix = split /,/, $session->param("prefix");
29
  #fields for autocomplete
30
  my $length = scalar @prefix;
31
  my $ses = NFKD( $session->param("q") );
32
  $ses =~ s/\p{NonspacingMark}//g;
33
29
34
  if ($length >= 1) {
30
    #fields for autocomplete
35
    my $res = $browser->autocomplete_idx($ses, \@prefix, $session->param("analyzer"), $session->param("token_counter"));
31
    my $length = scalar @prefix;
32
    my $ses    = NFKD( $session->param("q") );
33
    $ses =~ s/\p{NonspacingMark}//g;
36
34
37
    print $cgi->header("application/json;charset=UTF-8");
35
    if ( $length >= 1 ) {
38
    print to_json($res, {utf8 => 1});
36
        my $res =
39
  }
37
            $browser->autocomplete_idx( $ses, \@prefix, $session->param("analyzer"), $session->param("token_counter") );
40
  #no prefix 404
38
41
  else {
39
        print $cgi->header("application/json;charset=UTF-8");
40
        print to_json( $res, { utf8 => 1 } );
41
    }
42
43
    #no prefix 404
44
    else {
45
        response404JSON();
46
    }
47
} elsif ( $session->param("key") eq "nb_notice" ) {
48
    my $ses = NFKD( $session->param("q") );
49
    $ses =~ s/\p{NonspacingMark}//g;
50
    my $res = $browser->count_record($ses);
51
    print $cgi->header("application/json");
52
    print to_json($res);
53
} else {
42
    response404JSON();
54
    response404JSON();
43
  }
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 {
53
  response404JSON();
54
}
55
}
55
56
56
sub response404JSON {
57
sub response404JSON {
57
  my $res = CGI->new;
58
    my $res           = CGI->new;
58
  my $json = JSON->new->utf8;
59
    my $json          = JSON->new->utf8;
59
  my $header_type = "application/json;charset=UTF-8";
60
    my $header_type   = "application/json;charset=UTF-8";
60
  my $header_status = "404";
61
    my $header_status = "404";
61
  my $output = $json->encode({
62
    my $output        = $json->encode(
62
    "error" => "No data",
63
        {
63
    "description" => "Bad request",
64
            "error"       => "No data",
64
  });
65
            "description" => "Bad request",
65
  print $res->header(
66
        }
66
    -type => $header_type,
67
    );
67
    -charset => "utf-8",
68
    print $res->header(
68
    -status => $header_status
69
        -type    => $header_type,
69
  );
70
        -charset => "utf-8",
70
  print $output;
71
        -status  => $header_status
71
  print "\n";
72
    );
73
    print $output;
74
    print "\n";
72
}
75
}
73
- 

Return to bug 27428