query.py 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 string
  20. import re
  21. class RawTextQuery(object):
  22. """parse raw text query (the value from the html input)"""
  23. def __init__(self, query, disabled_engines):
  24. self.query = query
  25. self.disabled_engines = []
  26. if disabled_engines:
  27. self.disabled_engines = disabled_engines
  28. self.query_parts = []
  29. self.engines = []
  30. self.languages = []
  31. self.specific = False
  32. # parse query, if tags are set, which
  33. # change the serch engine or search-language
  34. def parse_query(self):
  35. self.query_parts = []
  36. # split query, including whitespaces
  37. raw_query_parts = re.split(r'(\s+)', self.query)
  38. parse_next = True
  39. for query_part in raw_query_parts:
  40. if not parse_next:
  41. self.query_parts[-1] += query_part
  42. continue
  43. parse_next = False
  44. # part does only contain spaces, skip
  45. if query_part.isspace()\
  46. or query_part == '':
  47. parse_next = True
  48. self.query_parts.append(query_part)
  49. continue
  50. # this force a language
  51. if query_part[0] == ':':
  52. lang = query_part[1:].lower()
  53. # check if any language-code is equal with
  54. # declared language-codes
  55. for lc in language_codes:
  56. lang_id, lang_name, country, english_name = map(unicode.lower, lc)
  57. # if correct language-code is found
  58. # set it as new search-language
  59. if lang == lang_id\
  60. or lang_id.startswith(lang)\
  61. or lang == lang_name\
  62. or lang == english_name\
  63. or lang.replace('_', ' ') == country:
  64. parse_next = True
  65. self.languages.append(lang_id)
  66. # to ensure best match (first match is not necessarily the best one)
  67. if lang == lang_id:
  68. break
  69. # this force a engine or category
  70. if query_part[0] == '!' or query_part[0] == '?':
  71. prefix = query_part[1:].replace('-', ' ')
  72. # check if prefix is equal with engine shortcut
  73. if prefix in engine_shortcuts:
  74. parse_next = True
  75. self.engines.append({'category': 'none',
  76. 'name': engine_shortcuts[prefix]})
  77. # check if prefix is equal with engine name
  78. elif prefix in engines:
  79. parse_next = True
  80. self.engines.append({'category': 'none',
  81. 'name': prefix})
  82. # check if prefix is equal with categorie name
  83. elif prefix in categories:
  84. # using all engines for that search, which
  85. # are declared under that categorie name
  86. parse_next = True
  87. self.engines.extend({'category': prefix,
  88. 'name': engine.name}
  89. for engine in categories[prefix]
  90. if (engine.name, prefix) not in self.disabled_engines)
  91. if query_part[0] == '!':
  92. self.specific = True
  93. # append query part to query_part list
  94. self.query_parts.append(query_part)
  95. def changeSearchQuery(self, search_query):
  96. if len(self.query_parts):
  97. self.query_parts[-1] = search_query
  98. else:
  99. self.query_parts.append(search_query)
  100. def getSearchQuery(self):
  101. if len(self.query_parts):
  102. return self.query_parts[-1]
  103. else:
  104. return ''
  105. def getFullQuery(self):
  106. # get full querry including whitespaces
  107. return string.join(self.query_parts, '')
  108. class SearchQuery(object):
  109. """container for all the search parameters (query, language, etc...)"""
  110. def __init__(self, query, engines, categories, lang, safesearch, pageno, time_range):
  111. self.query = query
  112. self.engines = engines
  113. self.categories = categories
  114. self.lang = lang
  115. self.safesearch = safesearch
  116. self.pageno = pageno
  117. self.time_range = time_range
  118. def __str__(self):
  119. return str(self.query) + ";" + str(self.engines)