query.py 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #!/usr/bin/env python
  2. '''
  3. searx is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. searx is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with searx. If not, see < http://www.gnu.org/licenses/ >.
  13. (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
  14. '''
  15. from searx.languages import language_codes
  16. from searx.engines import (
  17. categories, engines, engine_shortcuts
  18. )
  19. import re
  20. import sys
  21. if sys.version_info[0] == 3:
  22. unicode = str
  23. VALID_LANGUAGE_CODE = re.compile(r'^[a-z]{2,3}(-[a-zA-Z]{2})?$')
  24. class RawTextQuery(object):
  25. """parse raw text query (the value from the html input)"""
  26. def __init__(self, query, disabled_engines):
  27. self.query = query
  28. self.disabled_engines = []
  29. if disabled_engines:
  30. self.disabled_engines = disabled_engines
  31. self.query_parts = []
  32. self.engines = []
  33. self.languages = []
  34. self.specific = False
  35. # parse query, if tags are set, which
  36. # change the serch engine or search-language
  37. def parse_query(self):
  38. self.query_parts = []
  39. # split query, including whitespaces
  40. raw_query_parts = re.split(r'(\s+)' if isinstance(self.query, str) else b'(\s+)', self.query)
  41. parse_next = True
  42. for query_part in raw_query_parts:
  43. if not parse_next:
  44. self.query_parts[-1] += query_part
  45. continue
  46. parse_next = False
  47. # part does only contain spaces, skip
  48. if query_part.isspace()\
  49. or query_part == '':
  50. parse_next = True
  51. self.query_parts.append(query_part)
  52. continue
  53. # this force a language
  54. if query_part[0] == ':':
  55. lang = query_part[1:].lower().replace('_', '-')
  56. # user may set a valid, yet not selectable language
  57. if VALID_LANGUAGE_CODE.match(lang):
  58. self.languages.append(lang)
  59. parse_next = True
  60. # check if any language-code is equal with
  61. # declared language-codes
  62. for lc in language_codes:
  63. lang_id, lang_name, country, english_name = map(unicode.lower, lc)
  64. # if correct language-code is found
  65. # set it as new search-language
  66. if lang == lang_id\
  67. or lang_id.startswith(lang)\
  68. or lang == lang_name\
  69. or lang == english_name\
  70. or lang.replace('-', ' ') == country:
  71. parse_next = True
  72. self.languages.append(lang_id)
  73. # to ensure best match (first match is not necessarily the best one)
  74. if lang == lang_id:
  75. break
  76. # this force a engine or category
  77. if query_part[0] == '!' or query_part[0] == '?':
  78. prefix = query_part[1:].replace('-', ' ').replace('_', ' ')
  79. # check if prefix is equal with engine shortcut
  80. if prefix in engine_shortcuts:
  81. parse_next = True
  82. self.engines.append({'category': 'none',
  83. 'name': engine_shortcuts[prefix]})
  84. # check if prefix is equal with engine name
  85. elif prefix in engines:
  86. parse_next = True
  87. self.engines.append({'category': 'none',
  88. 'name': prefix})
  89. # check if prefix is equal with categorie name
  90. elif prefix in categories:
  91. # using all engines for that search, which
  92. # are declared under that categorie name
  93. parse_next = True
  94. self.engines.extend({'category': prefix,
  95. 'name': engine.name}
  96. for engine in categories[prefix]
  97. if (engine.name, prefix) not in self.disabled_engines)
  98. if query_part[0] == '!':
  99. self.specific = True
  100. # append query part to query_part list
  101. self.query_parts.append(query_part)
  102. def changeSearchQuery(self, search_query):
  103. if len(self.query_parts):
  104. self.query_parts[-1] = search_query
  105. else:
  106. self.query_parts.append(search_query)
  107. def getSearchQuery(self):
  108. if len(self.query_parts):
  109. return self.query_parts[-1]
  110. else:
  111. return ''
  112. def getFullQuery(self):
  113. # get full querry including whitespaces
  114. return u''.join(self.query_parts)
  115. class SearchQuery(object):
  116. """container for all the search parameters (query, language, etc...)"""
  117. def __init__(self, query, engines, categories, lang, safesearch, pageno, time_range):
  118. self.query = query.encode('utf-8')
  119. self.engines = engines
  120. self.categories = categories
  121. self.lang = lang
  122. self.safesearch = safesearch
  123. self.pageno = pageno
  124. self.time_range = time_range
  125. def __str__(self):
  126. return str(self.query) + ";" + str(self.engines)