From 2edb2930a0e9bbd74a8bbec036327f70f86ef307 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 18 Oct 2017 21:00:44 +0000 Subject: [PATCH] Bug 16660: Add support for OpacSuppression to Elasticsearch To test: 1 - Enable suppression 2 - Suppress some records 3 - Apply all the patches 4 - Reindex ES 5 - Search and don't get suppressed records 6 - Disable suppression 7 - Search and get all the records Signed-off-by: Tomas Cohen Arazi --- Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 1 + admin/searchengine/elasticsearch/mappings.yaml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm index 7092e0fae4..cdd0fc6bd1 100644 --- a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm +++ b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm @@ -204,6 +204,7 @@ sub build_query_compat { my @sort_params = $self->_convert_sort_fields(@$sort_by); my @index_params = $self->_convert_index_fields(@$indexes); my $limits = $self->_fix_limit_special_cases($orig_limits); + if ( $params->{suppress} ) { push @$limits, "suppress:0"; } # Merge the indexes in with the search terms and the operands so that # each search thing is a handy unit. diff --git a/admin/searchengine/elasticsearch/mappings.yaml b/admin/searchengine/elasticsearch/mappings.yaml index f01fd0199f..4c164896ee 100644 --- a/admin/searchengine/elasticsearch/mappings.yaml +++ b/admin/searchengine/elasticsearch/mappings.yaml @@ -2248,6 +2248,25 @@ biblios: sort: ~ suggestible: '1' type: string + suppress: + label: suppress + mappings: + - facet: '' + marc_field: 942n + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 942n + marc_type: normarc + sort: ~ + suggestible: '' + - facet: '' + marc_field: 955n + marc_type: unimarc + sort: ~ + suggestible: '' + type: boolean ta: label: ta mappings: -- 2.14.2