| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 00:33:18 +02:00
										 |  |  | '''
 | 
					
						
							|  |  |  | 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) 2013- by Adam Tauber, <asciimoo@gmail.com> | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 16:49:34 +02:00
										 |  |  | from gevent import monkey | 
					
						
							|  |  |  | monkey.patch_all() | 
					
						
							| 
									
										
										
										
											2014-07-03 22:05:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-14 16:16:20 +01:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     from sys import path | 
					
						
							|  |  |  |     from os.path import realpath, dirname | 
					
						
							|  |  |  |     path.append(realpath(dirname(realpath(__file__))+'/../')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-21 21:28:54 +01:00
										 |  |  | import json | 
					
						
							|  |  |  | import cStringIO | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-14 09:55:04 +01:00
										 |  |  | from datetime import datetime, timedelta | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  | from itertools import chain | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from flask import ( | 
					
						
							|  |  |  |     Flask, request, render_template, url_for, Response, make_response, | 
					
						
							|  |  |  |     redirect, send_from_directory | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-03-15 20:20:41 +01:00
										 |  |  | from flask.ext.babel import Babel, gettext, format_date | 
					
						
							| 
									
										
										
										
											2014-01-30 19:02:23 +01:00
										 |  |  | from searx import settings, searx_dir | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from searx.engines import ( | 
					
						
							| 
									
										
										
										
											2014-07-07 13:59:27 +02:00
										 |  |  |     categories, engines, get_engines_stats, engine_shortcuts | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  | from searx.utils import ( | 
					
						
							|  |  |  |     UnicodeWriter, highlight_content, html_to_text, get_themes | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-06-24 16:30:04 +02:00
										 |  |  | from searx.https_rewrite import https_rules | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  | from searx.languages import language_codes | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  | from searx.search import Search | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | from searx.autocomplete import backends as autocomplete_backends | 
					
						
							| 
									
										
										
										
											2013-12-01 23:52:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 16:30:04 +02:00
										 |  |  | static_path, templates_path, themes =\ | 
					
						
							|  |  |  |     get_themes(settings['themes_path'] | 
					
						
							|  |  |  |                if settings.get('themes_path') | 
					
						
							|  |  |  |                else searx_dir) | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  | default_theme = settings['default_theme'] if \ | 
					
						
							|  |  |  |     settings.get('default_theme', None) else 'default' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | app = Flask( | 
					
						
							|  |  |  |     __name__, | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |     static_folder=static_path, | 
					
						
							|  |  |  |     template_folder=templates_path | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | app.secret_key = settings['server']['secret_key'] | 
					
						
							| 
									
										
										
										
											2014-01-14 18:17:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 00:15:23 +01:00
										 |  |  | babel = Babel(app) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 23:04:09 +01:00
										 |  |  | #TODO configurable via settings.yml | 
					
						
							|  |  |  | favicons = ['wikipedia', 'youtube', 'vimeo', 'soundcloud', | 
					
						
							|  |  |  |             'twitter', 'stackoverflow', 'github'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  | cookie_max_age = 60 * 60 * 24 * 365 * 23  # 23 years | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 23:04:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 00:15:23 +01:00
										 |  |  | @babel.localeselector | 
					
						
							|  |  |  | def get_locale(): | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |     locale = request.accept_languages.best_match(settings['locales'].keys()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if request.cookies.get('locale', '') in settings['locales']: | 
					
						
							|  |  |  |         locale = request.cookies.get('locale', '') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if 'locale' in request.args\ | 
					
						
							|  |  |  |        and request.args['locale'] in settings['locales']: | 
					
						
							|  |  |  |         locale = request.args['locale'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if 'locale' in request.form\ | 
					
						
							|  |  |  |        and request.form['locale'] in settings['locales']: | 
					
						
							|  |  |  |         locale = request.form['locale'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return locale | 
					
						
							| 
									
										
										
										
											2014-01-22 00:15:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-14 18:17:19 +01:00
										 |  |  | def get_base_url(): | 
					
						
							| 
									
										
										
										
											2014-01-19 00:17:02 +01:00
										 |  |  |     if settings['server']['base_url']: | 
					
						
							|  |  |  |         hostname = settings['server']['base_url'] | 
					
						
							| 
									
										
										
										
											2014-01-14 18:17:19 +01:00
										 |  |  |     else: | 
					
						
							|  |  |  |         scheme = 'http' | 
					
						
							|  |  |  |         if request.is_secure: | 
					
						
							|  |  |  |             scheme = 'https' | 
					
						
							|  |  |  |         hostname = url_for('index', _external=True, _scheme=scheme) | 
					
						
							|  |  |  |     return hostname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  | def get_current_theme_name(override=None): | 
					
						
							|  |  |  |     """Returns theme name.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Checks in this order: | 
					
						
							|  |  |  |     1. override | 
					
						
							|  |  |  |     2. cookies | 
					
						
							|  |  |  |     3. settings"""
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if override and override in themes: | 
					
						
							|  |  |  |         return override | 
					
						
							| 
									
										
										
										
											2014-09-03 00:57:09 +02:00
										 |  |  |     theme_name = request.args.get('theme', | 
					
						
							|  |  |  |                                   request.cookies.get('theme', | 
					
						
							|  |  |  |                                                       default_theme)) | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |     if theme_name not in themes: | 
					
						
							|  |  |  |         theme_name = default_theme | 
					
						
							|  |  |  |     return theme_name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def url_for_theme(endpoint, override_theme=None, **values): | 
					
						
							|  |  |  |     if endpoint == 'static' and values.get('filename', None): | 
					
						
							|  |  |  |         theme_name = get_current_theme_name(override=override_theme) | 
					
						
							|  |  |  |         values['filename'] = "{}/{}".format(theme_name, values['filename']) | 
					
						
							|  |  |  |     return url_for(endpoint, **values) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def render(template_name, override_theme=None, **kwargs): | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  |     blocked_engines = request.cookies.get('blocked_engines', '').split(',') | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     autocomplete = request.cookies.get('autocomplete') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if autocomplete not in autocomplete_backends: | 
					
						
							|  |  |  |         autocomplete = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  |     nonblocked_categories = (engines[e].categories | 
					
						
							|  |  |  |                              for e in engines | 
					
						
							|  |  |  |                              if e not in blocked_engines) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  |     nonblocked_categories = set(chain.from_iterable(nonblocked_categories)) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  |     if not 'categories' in kwargs: | 
					
						
							|  |  |  |         kwargs['categories'] = ['general'] | 
					
						
							|  |  |  |         kwargs['categories'].extend(x for x in | 
					
						
							|  |  |  |                                     sorted(categories.keys()) | 
					
						
							| 
									
										
										
										
											2014-03-08 14:03:42 +01:00
										 |  |  |                                     if x != 'general' | 
					
						
							| 
									
										
										
										
											2014-03-08 14:00:20 +01:00
										 |  |  |                                     and x in nonblocked_categories) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:06:28 +02:00
										 |  |  |     if not 'selected_categories' in kwargs: | 
					
						
							| 
									
										
										
										
											2013-10-17 21:46:35 +02:00
										 |  |  |         kwargs['selected_categories'] = [] | 
					
						
							|  |  |  |         cookie_categories = request.cookies.get('categories', '').split(',') | 
					
						
							|  |  |  |         for ccateg in cookie_categories: | 
					
						
							|  |  |  |             if ccateg in categories: | 
					
						
							|  |  |  |                 kwargs['selected_categories'].append(ccateg) | 
					
						
							| 
									
										
										
										
											2014-02-11 13:13:51 +01:00
										 |  |  |         if not kwargs['selected_categories']: | 
					
						
							| 
									
										
										
										
											2013-10-17 21:46:35 +02:00
										 |  |  |             kwargs['selected_categories'] = ['general'] | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if not 'autocomplete' in kwargs: | 
					
						
							|  |  |  |         kwargs['autocomplete'] = autocomplete | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 16:45:22 +01:00
										 |  |  |     kwargs['method'] = request.cookies.get('method', 'POST') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |     # override url_for function in templates | 
					
						
							|  |  |  |     kwargs['url_for'] = url_for_theme | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     kwargs['theme'] = get_current_theme_name(override=override_theme) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return render_template( | 
					
						
							|  |  |  |         '{}/{}'.format(kwargs['theme'], template_name), **kwargs) | 
					
						
							| 
									
										
										
										
											2013-10-15 20:50:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 10:14:47 +02:00
										 |  |  | @app.route('/search', methods=['GET', 'POST']) | 
					
						
							| 
									
										
										
										
											2014-01-14 18:19:21 +01:00
										 |  |  | @app.route('/', methods=['GET', 'POST']) | 
					
						
							| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | def index(): | 
					
						
							| 
									
										
										
										
											2014-01-31 07:08:24 +01:00
										 |  |  |     """Render index page.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Supported outputs: html, json, csv, rss. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2013-11-04 00:18:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 03:15:34 +01:00
										 |  |  |     if not request.args and not request.form: | 
					
						
							| 
									
										
										
										
											2014-03-21 11:11:31 +01:00
										 |  |  |         return render( | 
					
						
							|  |  |  |             'index.html', | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-02-07 03:15:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |     try: | 
					
						
							|  |  |  |         search = Search(request) | 
					
						
							|  |  |  |     except: | 
					
						
							| 
									
										
										
										
											2014-03-21 11:11:31 +01:00
										 |  |  |         return render( | 
					
						
							|  |  |  |             'index.html', | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-01-29 20:52:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 13:59:27 +02:00
										 |  |  |     search.results, search.suggestions = search.search(request) | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for result in search.results: | 
					
						
							| 
									
										
										
										
											2014-06-24 16:30:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |         if not search.paging and engines[result['engine']].paging: | 
					
						
							|  |  |  |             search.paging = True | 
					
						
							| 
									
										
										
										
											2014-06-24 16:30:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if settings['server']['https_rewrite']\ | 
					
						
							|  |  |  |            and result['parsed_url'].scheme == 'http': | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for http_regex, https_url in https_rules: | 
					
						
							|  |  |  |                 if http_regex.match(result['url']): | 
					
						
							|  |  |  |                     result['url'] = http_regex.sub(https_url, result['url']) | 
					
						
							|  |  |  |                     # TODO result['parsed_url'].scheme | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # HTTPS rewrite | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |         if search.request_data.get('format', 'html') == 'html': | 
					
						
							| 
									
										
										
										
											2014-01-10 23:38:08 +01:00
										 |  |  |             if 'content' in result: | 
					
						
							| 
									
										
										
										
											2014-02-07 02:45:12 +01:00
										 |  |  |                 result['content'] = highlight_content(result['content'], | 
					
						
							|  |  |  |                                                       search.query.encode('utf-8'))  # noqa | 
					
						
							|  |  |  |             result['title'] = highlight_content(result['title'], | 
					
						
							|  |  |  |                                                 search.query.encode('utf-8')) | 
					
						
							| 
									
										
										
										
											2014-01-10 23:38:08 +01:00
										 |  |  |         else: | 
					
						
							|  |  |  |             if 'content' in result: | 
					
						
							|  |  |  |                 result['content'] = html_to_text(result['content']).strip() | 
					
						
							| 
									
										
										
										
											2014-02-04 19:42:32 +01:00
										 |  |  |             # removing html content and whitespace duplications | 
					
						
							| 
									
										
										
										
											2014-02-05 08:20:24 +01:00
										 |  |  |             result['title'] = ' '.join(html_to_text(result['title']) | 
					
						
							| 
									
										
										
										
											2014-02-04 19:42:32 +01:00
										 |  |  |                                        .strip().split()) | 
					
						
							| 
									
										
										
										
											2014-06-24 16:30:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-25 02:14:26 +02:00
										 |  |  |         if len(result['url']) > 74: | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |             url_parts = result['url'][:35], result['url'][-35:] | 
					
						
							| 
									
										
										
										
											2014-02-15 07:28:21 +01:00
										 |  |  |             result['pretty_url'] = u'{0}[...]{1}'.format(*url_parts) | 
					
						
							| 
									
										
										
										
											2013-10-25 02:14:26 +02:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2014-01-05 22:10:46 +01:00
										 |  |  |             result['pretty_url'] = result['url'] | 
					
						
							| 
									
										
										
										
											2013-11-15 19:28:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-13 22:24:05 +01:00
										 |  |  |         for engine in result['engines']: | 
					
						
							| 
									
										
										
										
											2014-01-19 23:04:09 +01:00
										 |  |  |             if engine in favicons: | 
					
						
							| 
									
										
										
										
											2014-01-15 22:25:10 +01:00
										 |  |  |                 result['favicon'] = engine | 
					
						
							| 
									
										
										
										
											2014-01-12 18:31:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-14 09:55:04 +01:00
										 |  |  |         # TODO, check if timezone is calculated right | 
					
						
							|  |  |  |         if 'publishedDate' in result: | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  |             if result['publishedDate'].replace(tzinfo=None)\ | 
					
						
							|  |  |  |                >= datetime.now() - timedelta(days=1): | 
					
						
							|  |  |  |                 timedifference = datetime.now() - result['publishedDate']\ | 
					
						
							|  |  |  |                     .replace(tzinfo=None) | 
					
						
							| 
									
										
										
										
											2014-03-15 20:20:41 +01:00
										 |  |  |                 minutes = int((timedifference.seconds / 60) % 60) | 
					
						
							|  |  |  |                 hours = int(timedifference.seconds / 60 / 60) | 
					
						
							| 
									
										
										
										
											2014-03-15 19:13:57 +01:00
										 |  |  |                 if hours == 0: | 
					
						
							| 
									
										
										
										
											2014-03-15 20:20:41 +01:00
										 |  |  |                     result['publishedDate'] = gettext(u'{minutes} minute(s) ago').format(minutes=minutes)  # noqa | 
					
						
							| 
									
										
										
										
											2014-03-14 09:55:04 +01:00
										 |  |  |                 else: | 
					
						
							| 
									
										
										
										
											2014-03-15 20:20:41 +01:00
										 |  |  |                     result['publishedDate'] = gettext(u'{hours} hour(s), {minutes} minute(s) ago').format(hours=hours, minutes=minutes)  # noqa | 
					
						
							| 
									
										
										
										
											2014-03-14 09:55:04 +01:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  |                 result['pubdate'] = result['publishedDate']\ | 
					
						
							|  |  |  |                     .strftime('%a, %d %b %Y %H:%M:%S %z') | 
					
						
							| 
									
										
										
										
											2014-03-14 10:55:52 +01:00
										 |  |  |                 result['publishedDate'] = format_date(result['publishedDate']) | 
					
						
							| 
									
										
										
										
											2014-03-14 09:55:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |     if search.request_data.get('format') == 'json': | 
					
						
							| 
									
										
										
										
											2014-02-07 02:45:12 +01:00
										 |  |  |         return Response(json.dumps({'query': search.query, | 
					
						
							|  |  |  |                                     'results': search.results}), | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                         mimetype='application/json') | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |     elif search.request_data.get('format') == 'csv': | 
					
						
							| 
									
										
										
										
											2013-11-15 18:55:18 +01:00
										 |  |  |         csv = UnicodeWriter(cStringIO.StringIO()) | 
					
						
							| 
									
										
										
										
											2013-12-02 21:36:09 +01:00
										 |  |  |         keys = ('title', 'url', 'content', 'host', 'engine', 'score') | 
					
						
							| 
									
										
										
										
											2014-02-11 13:13:51 +01:00
										 |  |  |         if search.results: | 
					
						
							| 
									
										
										
										
											2013-11-15 18:55:18 +01:00
										 |  |  |             csv.writerow(keys) | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |             for row in search.results: | 
					
						
							| 
									
										
										
										
											2013-12-02 21:36:09 +01:00
										 |  |  |                 row['host'] = row['parsed_url'].netloc | 
					
						
							|  |  |  |                 csv.writerow([row.get(key, '') for key in keys]) | 
					
						
							| 
									
										
										
										
											2014-02-11 13:13:51 +01:00
										 |  |  |             csv.stream.seek(0) | 
					
						
							| 
									
										
										
										
											2013-11-15 19:28:30 +01:00
										 |  |  |         response = Response(csv.stream.read(), mimetype='application/csv') | 
					
						
							| 
									
										
										
										
											2014-02-07 02:45:12 +01:00
										 |  |  |         cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search.query) | 
					
						
							|  |  |  |         response.headers.add('Content-Disposition', cont_disp) | 
					
						
							| 
									
										
										
										
											2013-11-15 18:55:18 +01:00
										 |  |  |         return response | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |     elif search.request_data.get('format') == 'rss': | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         response_rss = render( | 
					
						
							|  |  |  |             'opensearch_response_rss.xml', | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |             results=search.results, | 
					
						
							|  |  |  |             q=search.request_data['q'], | 
					
						
							|  |  |  |             number_of_results=len(search.results), | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |             base_url=get_base_url() | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-01-14 22:18:21 +01:00
										 |  |  |         return Response(response_rss, mimetype='text/xml') | 
					
						
							| 
									
										
										
										
											2014-01-14 18:17:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     return render( | 
					
						
							|  |  |  |         'results.html', | 
					
						
							| 
									
										
										
										
											2014-02-07 01:19:07 +01:00
										 |  |  |         results=search.results, | 
					
						
							|  |  |  |         q=search.request_data['q'], | 
					
						
							|  |  |  |         selected_categories=search.categories, | 
					
						
							|  |  |  |         paging=search.paging, | 
					
						
							|  |  |  |         pageno=search.pageno, | 
					
						
							| 
									
										
										
										
											2014-03-04 18:53:56 +01:00
										 |  |  |         base_url=get_base_url(), | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |         suggestions=search.suggestions, | 
					
						
							|  |  |  |         theme=get_current_theme_name() | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-21 00:28:48 +02:00
										 |  |  | @app.route('/about', methods=['GET']) | 
					
						
							|  |  |  | def about(): | 
					
						
							| 
									
										
										
										
											2014-01-31 07:08:24 +01:00
										 |  |  |     """Render about page""" | 
					
						
							| 
									
										
										
										
											2014-03-21 12:19:48 +01:00
										 |  |  |     return render( | 
					
						
							|  |  |  |         'about.html', | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-01-17 16:23:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-20 10:28:24 +01:00
										 |  |  | @app.route('/autocompleter', methods=['GET', 'POST']) | 
					
						
							|  |  |  | def autocompleter(): | 
					
						
							|  |  |  |     """Return autocompleter results""" | 
					
						
							|  |  |  |     request_data = {} | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-20 10:28:24 +01:00
										 |  |  |     if request.method == 'POST': | 
					
						
							|  |  |  |         request_data = request.form | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         request_data = request.args | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 17:04:33 +01:00
										 |  |  |     query = request_data.get('q', '').encode('utf-8') | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if not query: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     completer = autocomplete_backends.get(request.cookies.get('autocomplete')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if not completer: | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 17:04:33 +01:00
										 |  |  |     results = completer(query) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-20 15:39:17 +01:00
										 |  |  |     if request_data.get('format') == 'x-suggestions': | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |         return Response(json.dumps([query, results]), | 
					
						
							|  |  |  |                         mimetype='application/json') | 
					
						
							| 
									
										
										
										
											2014-03-20 15:39:17 +01:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |         return Response(json.dumps(results), | 
					
						
							|  |  |  |                         mimetype='application/json') | 
					
						
							| 
									
										
										
										
											2014-03-20 10:28:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | @app.route('/preferences', methods=['GET', 'POST']) | 
					
						
							|  |  |  | def preferences(): | 
					
						
							| 
									
										
										
										
											2014-01-31 07:08:24 +01:00
										 |  |  |     """Render preferences page.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Settings that are going to be saved as cookies."""
 | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  |     lang = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if request.cookies.get('language')\ | 
					
						
							|  |  |  |        and request.cookies['language'] in (x[0] for x in language_codes): | 
					
						
							|  |  |  |         lang = request.cookies['language'] | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 00:35:15 +01:00
										 |  |  |     blocked_engines = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if request.method == 'GET': | 
					
						
							|  |  |  |         blocked_engines = request.cookies.get('blocked_engines', '').split(',') | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |     else:  # on save | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  |         selected_categories = [] | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |         locale = None | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |         autocomplete = '' | 
					
						
							| 
									
										
										
										
											2014-03-29 16:45:22 +01:00
										 |  |  |         method = 'POST' | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         for pd_name, pd in request.form.items(): | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  |             if pd_name.startswith('category_'): | 
					
						
							|  |  |  |                 category = pd_name[9:] | 
					
						
							|  |  |  |                 if not category in categories: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 selected_categories.append(category) | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |             elif pd_name == 'locale' and pd in settings['locales']: | 
					
						
							|  |  |  |                 locale = pd | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |             elif pd_name == 'autocomplete': | 
					
						
							|  |  |  |                 autocomplete = pd | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  |             elif pd_name == 'language' and (pd == 'all' or | 
					
						
							|  |  |  |                                             pd in (x[0] for | 
					
						
							|  |  |  |                                                    x in language_codes)): | 
					
						
							|  |  |  |                 lang = pd | 
					
						
							| 
									
										
										
										
											2014-03-29 16:45:22 +01:00
										 |  |  |             elif pd_name == 'method': | 
					
						
							|  |  |  |                 method = pd | 
					
						
							| 
									
										
										
										
											2014-02-07 00:35:15 +01:00
										 |  |  |             elif pd_name.startswith('engine_'): | 
					
						
							|  |  |  |                 engine_name = pd_name.replace('engine_', '', 1) | 
					
						
							|  |  |  |                 if engine_name in engines: | 
					
						
							|  |  |  |                     blocked_engines.append(engine_name) | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |             elif pd_name == 'theme': | 
					
						
							|  |  |  |                 theme = pd if pd in themes else default_theme | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 18:30:08 +01:00
										 |  |  |         resp = make_response(redirect(url_for('index'))) | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 00:42:09 +01:00
										 |  |  |         user_blocked_engines = request.cookies.get('blocked_engines', '').split(',')  # noqa | 
					
						
							| 
									
										
										
										
											2014-02-07 00:35:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if sorted(blocked_engines) != sorted(user_blocked_engines): | 
					
						
							|  |  |  |             resp.set_cookie( | 
					
						
							|  |  |  |                 'blocked_engines', ','.join(blocked_engines), | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  |                 max_age=cookie_max_age | 
					
						
							| 
									
										
										
										
											2014-02-07 00:35:15 +01:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |         if locale: | 
					
						
							|  |  |  |             resp.set_cookie( | 
					
						
							|  |  |  |                 'locale', locale, | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  |                 max_age=cookie_max_age | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  |         if lang: | 
					
						
							|  |  |  |             resp.set_cookie( | 
					
						
							|  |  |  |                 'language', lang, | 
					
						
							| 
									
										
										
										
											2014-03-18 19:22:28 +01:00
										 |  |  |                 max_age=cookie_max_age | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  |         if selected_categories: | 
					
						
							| 
									
										
										
										
											2014-01-05 01:11:41 +01:00
										 |  |  |             # cookie max age: 4 weeks | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |             resp.set_cookie( | 
					
						
							|  |  |  |                 'categories', ','.join(selected_categories), | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |                 max_age=cookie_max_age | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             resp.set_cookie( | 
					
						
							|  |  |  |                 'autocomplete', autocomplete, | 
					
						
							|  |  |  |                 max_age=cookie_max_age | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 16:45:22 +01:00
										 |  |  |         resp.set_cookie('method', method, max_age=cookie_max_age) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |         resp.set_cookie( | 
					
						
							|  |  |  |             'theme', theme, max_age=cookie_max_age) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-22 00:59:18 +01:00
										 |  |  |         return resp | 
					
						
							| 
									
										
										
										
											2014-01-22 01:20:38 +01:00
										 |  |  |     return render('preferences.html', | 
					
						
							|  |  |  |                   locales=settings['locales'], | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  |                   current_locale=get_locale(), | 
					
						
							|  |  |  |                   current_language=lang or 'all', | 
					
						
							| 
									
										
										
										
											2014-02-07 00:35:15 +01:00
										 |  |  |                   language_codes=language_codes, | 
					
						
							|  |  |  |                   categs=categories.items(), | 
					
						
							|  |  |  |                   blocked_engines=blocked_engines, | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  |                   autocomplete_backends=autocomplete_backends, | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |                   shortcuts={y: x for x, y in engine_shortcuts.items()}, | 
					
						
							|  |  |  |                   themes=themes, | 
					
						
							|  |  |  |                   theme=get_current_theme_name()) | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-27 01:03:05 +02:00
										 |  |  | @app.route('/stats', methods=['GET']) | 
					
						
							|  |  |  | def stats(): | 
					
						
							| 
									
										
										
										
											2014-01-31 07:08:24 +01:00
										 |  |  |     """Render engine statistics page.""" | 
					
						
							| 
									
										
										
										
											2013-10-27 01:03:05 +02:00
										 |  |  |     stats = get_engines_stats() | 
					
						
							| 
									
										
										
										
											2014-03-21 12:19:48 +01:00
										 |  |  |     return render( | 
					
						
							|  |  |  |         'stats.html', | 
					
						
							|  |  |  |         stats=stats, | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-10-27 01:03:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-01 16:10:38 +01:00
										 |  |  | @app.route('/robots.txt', methods=['GET']) | 
					
						
							|  |  |  | def robots(): | 
					
						
							|  |  |  |     return Response("""User-agent: *
 | 
					
						
							|  |  |  | Allow: / | 
					
						
							|  |  |  | Allow: /about | 
					
						
							|  |  |  | Disallow: /stats | 
					
						
							| 
									
										
										
										
											2014-02-07 18:43:05 +01:00
										 |  |  | Disallow: /preferences | 
					
						
							| 
									
										
										
										
											2013-12-01 16:10:38 +01:00
										 |  |  | """, mimetype='text/plain')
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 22:16:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:01:08 +02:00
										 |  |  | @app.route('/opensearch.xml', methods=['GET']) | 
					
						
							|  |  |  | def opensearch(): | 
					
						
							| 
									
										
										
										
											2013-10-20 22:37:55 +02:00
										 |  |  |     method = 'post' | 
					
						
							| 
									
										
										
										
											2013-10-21 00:28:48 +02:00
										 |  |  |     # chrome/chromium only supports HTTP GET.... | 
					
						
							| 
									
										
										
										
											2013-10-20 22:37:55 +02:00
										 |  |  |     if request.headers.get('User-Agent', '').lower().find('webkit') >= 0: | 
					
						
							|  |  |  |         method = 'get' | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ret = render('opensearch.xml', | 
					
						
							| 
									
										
										
										
											2014-05-01 10:14:47 +02:00
										 |  |  |                  opensearch_method=method, | 
					
						
							| 
									
										
										
										
											2014-03-29 16:40:43 +01:00
										 |  |  |                  host=get_base_url()) | 
					
						
							| 
									
										
										
										
											2014-03-29 16:29:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-16 00:01:08 +02:00
										 |  |  |     resp = Response(response=ret, | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                     status=200, | 
					
						
							|  |  |  |                     mimetype="application/xml") | 
					
						
							| 
									
										
										
										
											2013-10-16 00:01:08 +02:00
										 |  |  |     return resp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-01 23:52:49 +01:00
										 |  |  | @app.route('/favicon.ico') | 
					
						
							|  |  |  | def favicon(): | 
					
						
							| 
									
										
										
										
											2014-04-25 01:46:40 +02:00
										 |  |  |     return send_from_directory(os.path.join(app.root_path, | 
					
						
							|  |  |  |                                             'static', | 
					
						
							|  |  |  |                                             get_current_theme_name(), | 
					
						
							|  |  |  |                                             'img'), | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |                                'favicon.png', | 
					
						
							|  |  |  |                                mimetype='image/vnd.microsoft.icon') | 
					
						
							| 
									
										
										
										
											2013-12-01 23:52:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | def run(): | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     app.run( | 
					
						
							|  |  |  |         debug=settings['server']['debug'], | 
					
						
							|  |  |  |         use_debugger=settings['server']['debug'], | 
					
						
							|  |  |  |         port=settings['server']['port'] | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-03 22:02:53 +02:00
										 |  |  | application = app | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     run() |