|
@@ -41,13 +41,16 @@ from searx.engines import (
|
41
|
41
|
from searx.utils import (
|
42
|
42
|
UnicodeWriter, highlight_content, html_to_text, get_themes
|
43
|
43
|
)
|
|
44
|
+from searx.https_rewrite import https_rules
|
44
|
45
|
from searx.languages import language_codes
|
45
|
46
|
from searx.search import Search
|
46
|
47
|
from searx.autocomplete import backends as autocomplete_backends
|
47
|
48
|
|
48
|
49
|
|
49
|
|
-static_path, templates_path, themes = get_themes(settings['themes_path'] if \
|
50
|
|
- settings.get('themes_path', None) else searx_dir)
|
|
50
|
+static_path, templates_path, themes =\
|
|
51
|
+ get_themes(settings['themes_path']
|
|
52
|
+ if settings.get('themes_path')
|
|
53
|
+ else searx_dir)
|
51
|
54
|
default_theme = settings['default_theme'] if \
|
52
|
55
|
settings.get('default_theme', None) else 'default'
|
53
|
56
|
|
|
@@ -192,8 +195,20 @@ def index():
|
192
|
195
|
search.lang)
|
193
|
196
|
|
194
|
197
|
for result in search.results:
|
|
198
|
+
|
195
|
199
|
if not search.paging and engines[result['engine']].paging:
|
196
|
200
|
search.paging = True
|
|
201
|
+
|
|
202
|
+ if settings['server']['https_rewrite']\
|
|
203
|
+ and result['parsed_url'].scheme == 'http':
|
|
204
|
+
|
|
205
|
+ for http_regex, https_url in https_rules:
|
|
206
|
+ if http_regex.match(result['url']):
|
|
207
|
+ result['url'] = http_regex.sub(https_url, result['url'])
|
|
208
|
+ # TODO result['parsed_url'].scheme
|
|
209
|
+ break
|
|
210
|
+
|
|
211
|
+ # HTTPS rewrite
|
197
|
212
|
if search.request_data.get('format', 'html') == 'html':
|
198
|
213
|
if 'content' in result:
|
199
|
214
|
result['content'] = highlight_content(result['content'],
|
|
@@ -206,6 +221,7 @@ def index():
|
206
|
221
|
# removing html content and whitespace duplications
|
207
|
222
|
result['title'] = ' '.join(html_to_text(result['title'])
|
208
|
223
|
.strip().split())
|
|
224
|
+
|
209
|
225
|
if len(result['url']) > 74:
|
210
|
226
|
url_parts = result['url'][:35], result['url'][-35:]
|
211
|
227
|
result['pretty_url'] = u'{0}[...]{1}'.format(*url_parts)
|