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

(-)a/C4/Matcher.pm (-2 / +8 lines)
Lines 655-663 sub get_matches { Link Here
655
            # Use state variables to avoid recreating the objects every time.
655
            # Use state variables to avoid recreating the objects every time.
656
            # With Elasticsearch this also avoids creating a massive amount of
656
            # With Elasticsearch this also avoids creating a massive amount of
657
            # ES connectors that would eventually run out of file descriptors.
657
            # ES connectors that would eventually run out of file descriptors.
658
            state $searcher = Koha::SearchEngine::Search->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});
658
            state $query_builder =
659
                Koha::SearchEngine::QueryBuilder->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
660
            ( undef, $query ) = $query_builder->build_query_compat(
661
                undef, [$query], undef, undef, undef, undef, undef,
662
                { skip_facets => 1 }
663
            );
664
            state $searcher = Koha::SearchEngine::Search->new( { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
659
            ( $error, $searchresults, $total_hits ) =
665
            ( $error, $searchresults, $total_hits ) =
660
              $searcher->simple_search_compat( $query, 0, $max_matches, undef, skip_normalize => 1 );
666
                $searcher->simple_search_compat( $query, 0, $max_matches, undef, skip_normalize => 1 );
661
667
662
            if ( defined $error ) {
668
            if ( defined $error ) {
663
                warn "search failed ($query) $error";
669
                warn "search failed ($query) $error";
(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-12 / +17 lines)
Lines 224-237 sub build_query { Link Here
224
        }
224
        }
225
    }
225
    }
226
226
227
    # See _convert_facets in Search.pm for how these get turned into
227
    unless ( $options{skip_facets} ) {
228
    # things that Koha can use.
228
229
    my $size = C4::Context->preference('FacetMaxCount');
229
        # See _convert_facets in Search.pm for how these get turned into
230
    my @facets = Koha::SearchEngine::Elasticsearch->get_facet_fields;
230
        # things that Koha can use.
231
    for my $f ( @facets ) {
231
        my $size   = C4::Context->preference('FacetMaxCount');
232
        my $name = $f->name;
232
        my @facets = Koha::SearchEngine::Elasticsearch->get_facet_fields;
233
        $res->{aggregations}->{$name} = { terms => { field => "${name}__facet" , size => $size } };
233
        for my $f (@facets) {
234
    };
234
            my $name = $f->name;
235
            $res->{aggregations}->{$name} = { terms => { field => "${name}__facet", size => $size } };
236
        }
237
238
    }
235
239
236
    $res = _rebuild_to_es_advanced_query($res) if @$es_advanced_searches ;
240
    $res = _rebuild_to_es_advanced_query($res) if @$es_advanced_searches ;
237
    return $res;
241
    return $res;
Lines 310-320 sub build_query_compat { Link Here
310
        # If there's no query on the left, let's remove the junk left behind
314
        # If there's no query on the left, let's remove the junk left behind
311
        $query_str =~ s/^ AND //;
315
        $query_str =~ s/^ AND //;
312
        my %options;
316
        my %options;
313
        $options{sort} = \@sort_params;
317
        $options{sort}            = \@sort_params;
314
        $options{is_opac} = $params->{is_opac};
318
        $options{is_opac}         = $params->{is_opac};
315
        $options{weighted_fields} = $params->{weighted_fields};
319
        $options{weighted_fields} = $params->{weighted_fields};
316
        $options{whole_record} = $params->{whole_record};
320
        $options{whole_record}    = $params->{whole_record};
317
        $query = $self->build_query( $query_str, %options );
321
        $options{skip_facets}     = $params->{skip_facets};
322
        $query                    = $self->build_query( $query_str, %options );
318
    }
323
    }
319
324
320
    # We roughly emulate the CGI parameters of the zebra query builder
325
    # We roughly emulate the CGI parameters of the zebra query builder
(-)a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t (-2 / +9 lines)
Lines 219-225 subtest 'build_authorities_query_compat() tests' => sub { Link Here
219
};
219
};
220
220
221
subtest 'build_query tests' => sub {
221
subtest 'build_query tests' => sub {
222
    plan tests => 65;
222
    plan tests => 68;
223
223
224
    my $qb;
224
    my $qb;
225
225
Lines 254-259 subtest 'build_query tests' => sub { Link Here
254
    is( $query->{aggregations}{homebranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for homebranch');
254
    is( $query->{aggregations}{homebranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for homebranch');
255
    is( $query->{aggregations}{holdingbranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for holdingbranch');
255
    is( $query->{aggregations}{holdingbranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for holdingbranch');
256
256
257
    $options{skip_facets} = 1;
258
    $query = $qb->build_query( 'test', %options );
259
    ok( !defined $query->{aggregations}, 'Skipping facets means we do not have aggregations in the the query' );
260
257
    t::lib::Mocks::mock_preference( 'QueryAutoTruncate', '' );
261
    t::lib::Mocks::mock_preference( 'QueryAutoTruncate', '' );
258
262
259
    ( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'] );
263
    ( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'] );
Lines 262-267 subtest 'build_query tests' => sub { Link Here
262
        "(donald duck)",
266
        "(donald duck)",
263
        "query not altered if QueryAutoTruncate disabled"
267
        "query not altered if QueryAutoTruncate disabled"
264
    );
268
    );
269
    ok( defined $query->{aggregations}, 'Aggregations generated normally' );
270
    ( undef, $query ) =
271
        $qb->build_query_compat( undef, ['donald duck'], undef, undef, undef, undef, undef, { skip_facets => 1 } );
272
    ok( !defined $query->{aggregations}, 'Aggregations generated normally' );
265
273
266
    ( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'], ['kw,phr'] );
274
    ( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'], ['kw,phr'] );
267
    is(
275
    is(
268
- 

Return to bug 39070