2014-10-01 15:18:18 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
'''
|
|
|
|
searx is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
searx 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|
|
|
|
|
|
|
(C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
|
|
|
|
'''
|
|
|
|
|
|
|
|
from searx.languages import language_codes
|
|
|
|
from searx.engines import (
|
|
|
|
categories, engines, engine_shortcuts
|
|
|
|
)
|
|
|
|
import string
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
class Query(object):
|
|
|
|
"""parse query"""
|
|
|
|
|
|
|
|
def __init__(self, query, blocked_engines):
|
|
|
|
self.query = query
|
|
|
|
self.blocked_engines = []
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
if blocked_engines:
|
|
|
|
self.blocked_engines = blocked_engines
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
self.query_parts = []
|
|
|
|
self.engines = []
|
|
|
|
self.languages = []
|
2014-10-19 10:41:04 +00:00
|
|
|
|
|
|
|
# parse query, if tags are set, which
|
|
|
|
# change the serch engine or search-language
|
2014-10-01 15:18:18 +00:00
|
|
|
def parse_query(self):
|
|
|
|
self.query_parts = []
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# split query, including whitespaces
|
|
|
|
raw_query_parts = re.split(r'(\s+)', self.query)
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
parse_next = True
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
for query_part in raw_query_parts:
|
|
|
|
if not parse_next:
|
|
|
|
self.query_parts[-1] += query_part
|
|
|
|
continue
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
parse_next = False
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# part does only contain spaces, skip
|
2014-10-01 15:57:53 +00:00
|
|
|
if query_part.isspace()\
|
|
|
|
or query_part == '':
|
2014-10-01 15:18:18 +00:00
|
|
|
parse_next = True
|
|
|
|
self.query_parts.append(query_part)
|
|
|
|
continue
|
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
# this force a language
|
2014-10-01 15:18:18 +00:00
|
|
|
if query_part[0] == ':':
|
|
|
|
lang = query_part[1:].lower()
|
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
# check if any language-code is equal with
|
|
|
|
# declared language-codes
|
2014-10-01 15:18:18 +00:00
|
|
|
for lc in language_codes:
|
|
|
|
lang_id, lang_name, country = map(str.lower, lc)
|
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
# if correct language-code is found
|
|
|
|
# set it as new search-language
|
2014-10-01 15:18:18 +00:00
|
|
|
if lang == lang_id\
|
|
|
|
or lang_id.startswith(lang)\
|
|
|
|
or lang == lang_name\
|
|
|
|
or lang == country:
|
|
|
|
parse_next = True
|
|
|
|
self.languages.append(lang)
|
|
|
|
break
|
|
|
|
|
|
|
|
# this force a engine or category
|
|
|
|
if query_part[0] == '!':
|
|
|
|
prefix = query_part[1:].replace('_', ' ')
|
|
|
|
|
|
|
|
# check if prefix is equal with engine shortcut
|
|
|
|
if prefix in engine_shortcuts\
|
|
|
|
and not engine_shortcuts[prefix] in self.blocked_engines:
|
|
|
|
parse_next = True
|
|
|
|
self.engines.append({'category': 'none',
|
|
|
|
'name': engine_shortcuts[prefix]})
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# check if prefix is equal with engine name
|
|
|
|
elif prefix in engines\
|
2014-10-19 10:41:04 +00:00
|
|
|
and prefix not in self.blocked_engines:
|
2014-10-01 15:18:18 +00:00
|
|
|
parse_next = True
|
|
|
|
self.engines.append({'category': 'none',
|
|
|
|
'name': prefix})
|
|
|
|
|
|
|
|
# check if prefix is equal with categorie name
|
|
|
|
elif prefix in categories:
|
2014-10-19 10:41:04 +00:00
|
|
|
# using all engines for that search, which
|
|
|
|
# are declared under that categorie name
|
2014-10-01 15:18:18 +00:00
|
|
|
parse_next = True
|
|
|
|
self.engines.extend({'category': prefix,
|
|
|
|
'name': engine.name}
|
|
|
|
for engine in categories[prefix]
|
2014-10-19 10:41:04 +00:00
|
|
|
if engine not in self.blocked_engines)
|
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# append query part to query_part list
|
|
|
|
self.query_parts.append(query_part)
|
|
|
|
|
|
|
|
def changeSearchQuery(self, search_query):
|
|
|
|
if len(self.query_parts):
|
|
|
|
self.query_parts[-1] = search_query
|
|
|
|
else:
|
|
|
|
self.query_parts.append(search_query)
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
def getSearchQuery(self):
|
|
|
|
if len(self.query_parts):
|
|
|
|
return self.query_parts[-1]
|
|
|
|
else:
|
|
|
|
return ''
|
2014-10-19 10:41:04 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
def getFullQuery(self):
|
|
|
|
# get full querry including whitespaces
|
|
|
|
return string.join(self.query_parts, '')
|