Newer
Older
# -*- coding: utf-8 -*-
# copyright 2016 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr -- mailto:contact@logilab.fr
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from elasticsearch_dsl import Q, query as dsl_query
from logilab.mtconverter import xml_escape
def compose_search(search, query=None, fields=(),
fuzzy=False, parents_for=None,
children_for=None):
'''
Compose a elasticsearch-dsl query from queries :
* simple term
* simple terms (OR)
* negation (add - in front of a term)
* explicit OR
* quoted terms (AND)
search:
search object (used to set doc_type and index_name outside of
compose_search)
query:
text of the query to be composed (can contain quotes)
fields:
restrict and boost search on certain fields eg. ('title^2', '_all')
fuzzy:
add a fuzzy search element to part of the query generated
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-fuzzy-query.html

Arthur Lutz
committed
additionnally search to get the parents for a given type
children_for:
restrict search to get the children of a given stable_id
'''
# FIXME TODO - restructure entier code base, have a proper lexer
for char in ('"', "'", xml_escape('"'), xml_escape("'")):
# TODO - implement phrase + term
if len(query.split(char)) == 3:
# TODO add this to most important queries, instead of single query ?
return search.query('bool',
must=Q('multi_match',
query=query.split(char)[1],
type="phrase",
fields=fields))
must = []
must_not = []
should = []
# https://www.elastic.co/guide/en/elasticsearch/reference/2.4/query-dsl-minimum-should-match.html
minimum_should_match = "1"
# proximity booster - phrase with slop=50

Arthur Lutz
committed
phrase_query = Q('multi_match',
query=query,
type="phrase",
slop=50,
fields=fields)
should.append(phrase_query)
# highfrequency/lowfrequency query

Arthur Lutz
committed
common_query = dsl_query.Common(_all={"query": query,
"cutoff_frequency": cutoff_frequency,
"low_freq_operator": "and",
"minimum_should_match": {
"high_freq": "70%"
}})
should.append(common_query)
elements = query.split()
elements_lowercase = [e.lower() for e in elements]
if 'or' in elements_lowercase and len(elements) >= 3:
for element in query.split('or'):
should.append(Q('multi_match',
query=element.strip(),
fields=fields))
elements = []
for element in elements:
if element.startswith('-'):
must_not.append(Q('multi_match',
query=element[1:],
fields=fields))
should.append(dsl_query.MultiMatch(query=element,
fields=fields))
if fuzzy:
should.append(dsl_query.Fuzzy(_all=element))
# TODO - careful with explain for performance reasons, maybe skip if nb terms < 3
if children_for:
match_stable_id = dsl_query.Match(stable_id=children_for)
must.append(dsl_query.HasParent(type="FindingAid",
score_mode="score",
query=match_stable_id))

Arthur Lutz
committed
if parents_for:
has_child = dsl_query.HasChild(type=parents_for,
score_mode="sum",
query=phrase_query)
should.append(has_child)
bool_query = dsl_query.Bool(must=must,
must_not=must_not,
should=should,
minimum_should_match=minimum_should_match)
search.query = bool_query