2013-10-14 21:09:13 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-10-14 22:33:18 +00: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-02-14 15:16:20 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
from sys import path
|
|
|
|
from os.path import realpath, dirname
|
2015-02-10 14:23:56 +00:00
|
|
|
path.append(realpath(dirname(realpath(__file__)) + '/../'))
|
2014-02-14 15:16:20 +00:00
|
|
|
|
2014-01-21 20:28:54 +00:00
|
|
|
import json
|
|
|
|
import cStringIO
|
|
|
|
import os
|
2015-01-17 20:54:40 +00:00
|
|
|
import hashlib
|
2015-04-09 23:10:49 +00:00
|
|
|
import requests
|
2014-01-21 20:28:54 +00:00
|
|
|
|
2015-03-10 18:55:22 +00:00
|
|
|
from searx import logger
|
|
|
|
logger = logger.getChild('webapp')
|
|
|
|
|
|
|
|
try:
|
|
|
|
from pygments import highlight
|
|
|
|
from pygments.lexers import get_lexer_by_name
|
|
|
|
from pygments.formatters import HtmlFormatter
|
|
|
|
except:
|
|
|
|
logger.critical("cannot import dependency: pygments")
|
|
|
|
from sys import exit
|
|
|
|
exit(1)
|
|
|
|
|
2014-03-14 08:55:04 +00:00
|
|
|
from datetime import datetime, timedelta
|
2015-01-16 15:26:15 +00:00
|
|
|
from urllib import urlencode
|
2015-10-23 21:07:36 +00:00
|
|
|
from urlparse import urlparse, urljoin
|
2015-02-07 11:28:36 +00:00
|
|
|
from werkzeug.contrib.fixers import ProxyFix
|
2014-02-05 19:24:31 +00:00
|
|
|
from flask import (
|
|
|
|
Flask, request, render_template, url_for, Response, make_response,
|
|
|
|
redirect, send_from_directory
|
|
|
|
)
|
2016-06-27 22:06:50 +00:00
|
|
|
from flask.ext.babel import Babel, gettext, format_date, format_decimal
|
2016-06-07 21:08:48 +00:00
|
|
|
from flask.json import jsonify
|
2014-01-30 18:02:23 +00:00
|
|
|
from searx import settings, searx_dir
|
2014-02-05 19:24:31 +00:00
|
|
|
from searx.engines import (
|
2014-07-07 11:59:27 +00:00
|
|
|
categories, engines, get_engines_stats, engine_shortcuts
|
2014-02-05 19:24:31 +00:00
|
|
|
)
|
2014-04-24 23:46:40 +00:00
|
|
|
from searx.utils import (
|
2015-01-01 16:48:12 +00:00
|
|
|
UnicodeWriter, highlight_content, html_to_text, get_themes,
|
2015-01-29 18:44:52 +00:00
|
|
|
get_static_files, get_result_templates, gen_useragent, dict_subset,
|
2016-04-08 14:38:05 +00:00
|
|
|
prettify_url
|
2014-04-24 23:46:40 +00:00
|
|
|
)
|
2014-11-18 10:37:42 +00:00
|
|
|
from searx.version import VERSION_STRING
|
2014-01-31 03:35:23 +00:00
|
|
|
from searx.languages import language_codes
|
2014-02-07 00:19:07 +00:00
|
|
|
from searx.search import Search
|
2014-10-01 15:18:18 +00:00
|
|
|
from searx.query import Query
|
2015-01-10 15:42:57 +00:00
|
|
|
from searx.autocomplete import searx_bang, backends as autocomplete_backends
|
2015-03-10 18:55:22 +00:00
|
|
|
from searx.plugins import plugins
|
2016-06-07 19:43:24 +00:00
|
|
|
from searx.preferences import Preferences, ValidationException
|
2013-12-01 22:52:49 +00:00
|
|
|
|
2015-04-26 16:58:31 +00:00
|
|
|
# check if the pyopenssl, ndg-httpsclient, pyasn1 packages are installed.
|
|
|
|
# They are needed for SSL connection without trouble, see #298
|
|
|
|
try:
|
|
|
|
import OpenSSL.SSL # NOQA
|
|
|
|
import ndg.httpsclient # NOQA
|
|
|
|
import pyasn1 # NOQA
|
|
|
|
except ImportError:
|
|
|
|
logger.critical("The pyopenssl, ndg-httpsclient, pyasn1 packages have to be installed.\n"
|
2016-04-09 12:46:02 +00:00
|
|
|
"Some HTTPS connections will fail")
|
2015-04-26 16:58:31 +00:00
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2014-06-24 14:30:04 +00:00
|
|
|
static_path, templates_path, themes =\
|
2015-08-02 17:38:27 +00:00
|
|
|
get_themes(settings['ui']['themes_path']
|
|
|
|
if settings['ui']['themes_path']
|
2014-06-24 14:30:04 +00:00
|
|
|
else searx_dir)
|
2014-10-09 17:26:02 +00:00
|
|
|
|
2015-08-02 17:38:27 +00:00
|
|
|
default_theme = settings['ui']['default_theme']
|
2014-04-24 23:46:40 +00:00
|
|
|
|
2015-01-01 16:48:12 +00:00
|
|
|
static_files = get_static_files(searx_dir)
|
|
|
|
|
2015-01-01 17:59:53 +00:00
|
|
|
result_templates = get_result_templates(searx_dir)
|
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
app = Flask(
|
|
|
|
__name__,
|
2014-04-24 23:46:40 +00:00
|
|
|
static_folder=static_path,
|
|
|
|
template_folder=templates_path
|
2014-01-19 21:59:01 +00:00
|
|
|
)
|
|
|
|
|
2015-02-14 00:42:06 +00:00
|
|
|
app.jinja_env.trim_blocks = True
|
|
|
|
app.jinja_env.lstrip_blocks = True
|
2014-01-19 21:59:01 +00:00
|
|
|
app.secret_key = settings['server']['secret_key']
|
2014-01-14 17:17:19 +00:00
|
|
|
|
2014-01-21 23:15:23 +00:00
|
|
|
babel = Babel(app)
|
|
|
|
|
2015-02-10 14:23:56 +00:00
|
|
|
rtl_locales = ['ar', 'arc', 'bcc', 'bqi', 'ckb', 'dv', 'fa', 'glk', 'he',
|
|
|
|
'ku', 'mzn', 'pnb'', ''ps', 'sd', 'ug', 'ur', 'yi']
|
|
|
|
|
2014-12-13 20:37:28 +00:00
|
|
|
global_favicons = []
|
2014-12-24 19:34:08 +00:00
|
|
|
for indice, theme in enumerate(themes):
|
2014-12-13 20:37:28 +00:00
|
|
|
global_favicons.append([])
|
2015-02-10 14:23:56 +00:00
|
|
|
theme_img_path = searx_dir + "/static/themes/" + theme + "/img/icons/"
|
2014-12-13 20:37:28 +00:00
|
|
|
for (dirpath, dirnames, filenames) in os.walk(theme_img_path):
|
|
|
|
global_favicons[indice].extend(filenames)
|
2014-01-19 22:04:09 +00:00
|
|
|
|
2016-04-09 17:47:06 +00:00
|
|
|
# used when translating category names
|
2015-02-10 22:14:37 +00:00
|
|
|
_category_names = (gettext('files'),
|
|
|
|
gettext('general'),
|
|
|
|
gettext('music'),
|
|
|
|
gettext('social media'),
|
|
|
|
gettext('images'),
|
|
|
|
gettext('videos'),
|
|
|
|
gettext('it'),
|
|
|
|
gettext('news'),
|
2016-01-21 09:45:34 +00:00
|
|
|
gettext('map'),
|
2016-01-21 14:57:02 +00:00
|
|
|
gettext('science'))
|
2015-02-10 22:14:37 +00:00
|
|
|
|
2015-08-02 17:38:27 +00:00
|
|
|
outgoing_proxies = settings['outgoing'].get('proxies', None)
|
2014-01-19 22:04:09 +00:00
|
|
|
|
|
|
|
|
2014-01-21 23:15:23 +00:00
|
|
|
@babel.localeselector
|
|
|
|
def get_locale():
|
2014-01-21 23:59:18 +00:00
|
|
|
locale = request.accept_languages.best_match(settings['locales'].keys())
|
|
|
|
|
2016-04-09 16:32:07 +00:00
|
|
|
if request.preferences.get_value('locale') != '':
|
|
|
|
locale = request.preferences.get_value('locale')
|
2014-01-21 23:59:18 +00:00
|
|
|
|
|
|
|
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-21 23:15:23 +00:00
|
|
|
|
|
|
|
|
2014-12-20 22:33:03 +00:00
|
|
|
# code-highlighter
|
|
|
|
@app.template_filter('code_highlighter')
|
|
|
|
def code_highlighter(codelines, language=None):
|
|
|
|
if not language:
|
|
|
|
language = 'text'
|
|
|
|
|
2014-12-22 15:26:45 +00:00
|
|
|
try:
|
|
|
|
# find lexer by programing language
|
|
|
|
lexer = get_lexer_by_name(language, stripall=True)
|
|
|
|
except:
|
|
|
|
# if lexer is not found, using default one
|
2015-01-15 17:39:40 +00:00
|
|
|
logger.debug('highlighter cannot find lexer for {0}'.format(language))
|
2014-12-22 15:26:45 +00:00
|
|
|
lexer = get_lexer_by_name('text', stripall=True)
|
|
|
|
|
2014-12-20 22:33:03 +00:00
|
|
|
html_code = ''
|
|
|
|
tmp_code = ''
|
|
|
|
last_line = None
|
|
|
|
|
|
|
|
# parse lines
|
|
|
|
for line, code in codelines:
|
|
|
|
if not last_line:
|
|
|
|
line_code_start = line
|
|
|
|
|
|
|
|
# new codeblock is detected
|
2014-12-22 15:26:45 +00:00
|
|
|
if last_line is not None and\
|
|
|
|
last_line + 1 != line:
|
2014-12-20 22:33:03 +00:00
|
|
|
|
|
|
|
# highlight last codepart
|
2014-12-22 15:26:45 +00:00
|
|
|
formatter = HtmlFormatter(linenos='inline',
|
|
|
|
linenostart=line_code_start)
|
2014-12-20 22:33:03 +00:00
|
|
|
html_code = html_code + highlight(tmp_code, lexer, formatter)
|
2014-12-22 15:26:45 +00:00
|
|
|
|
2014-12-20 22:33:03 +00:00
|
|
|
# reset conditions for next codepart
|
|
|
|
tmp_code = ''
|
|
|
|
line_code_start = line
|
|
|
|
|
|
|
|
# add codepart
|
|
|
|
tmp_code += code + '\n'
|
2014-12-22 15:26:45 +00:00
|
|
|
|
2014-12-20 22:33:03 +00:00
|
|
|
# update line
|
|
|
|
last_line = line
|
|
|
|
|
|
|
|
# highlight last codepart
|
|
|
|
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start)
|
|
|
|
html_code = html_code + highlight(tmp_code, lexer, formatter)
|
|
|
|
|
|
|
|
return html_code
|
|
|
|
|
|
|
|
|
2015-02-15 18:09:17 +00:00
|
|
|
# Extract domain from url
|
|
|
|
@app.template_filter('extract_domain')
|
|
|
|
def extract_domain(url):
|
|
|
|
return urlparse(url)[1]
|
|
|
|
|
|
|
|
|
2014-01-14 17:17:19 +00:00
|
|
|
def get_base_url():
|
2014-01-18 23:17:02 +00:00
|
|
|
if settings['server']['base_url']:
|
|
|
|
hostname = settings['server']['base_url']
|
2014-01-14 17:17:19 +00:00
|
|
|
else:
|
|
|
|
scheme = 'http'
|
|
|
|
if request.is_secure:
|
|
|
|
scheme = 'https'
|
|
|
|
hostname = url_for('index', _external=True, _scheme=scheme)
|
|
|
|
return hostname
|
|
|
|
|
|
|
|
|
2014-04-24 23:46:40 +00: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
|
2016-04-08 14:38:05 +00:00
|
|
|
theme_name = request.args.get('theme', request.preferences.get_value('theme'))
|
2014-04-24 23:46:40 +00:00
|
|
|
if theme_name not in themes:
|
|
|
|
theme_name = default_theme
|
|
|
|
return theme_name
|
|
|
|
|
|
|
|
|
2015-01-01 17:59:53 +00:00
|
|
|
def get_result_template(theme, template_name):
|
|
|
|
themed_path = theme + '/result_templates/' + template_name
|
|
|
|
if themed_path in result_templates:
|
|
|
|
return themed_path
|
|
|
|
return 'result_templates/' + template_name
|
|
|
|
|
|
|
|
|
2014-04-24 23:46:40 +00:00
|
|
|
def url_for_theme(endpoint, override_theme=None, **values):
|
2015-01-01 16:48:12 +00:00
|
|
|
if endpoint == 'static' and values.get('filename'):
|
2014-04-24 23:46:40 +00:00
|
|
|
theme_name = get_current_theme_name(override=override_theme)
|
2015-01-01 16:48:12 +00:00
|
|
|
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
|
|
|
|
if filename_with_theme in static_files:
|
|
|
|
values['filename'] = filename_with_theme
|
2014-04-24 23:46:40 +00:00
|
|
|
return url_for(endpoint, **values)
|
|
|
|
|
|
|
|
|
2015-01-16 15:26:15 +00:00
|
|
|
def image_proxify(url):
|
|
|
|
|
|
|
|
if url.startswith('//'):
|
|
|
|
url = 'https:' + url
|
|
|
|
|
2016-04-09 16:32:07 +00:00
|
|
|
if not request.preferences.get_value('image_proxy'):
|
2015-01-16 15:26:15 +00:00
|
|
|
return url
|
|
|
|
|
2015-02-09 11:24:54 +00:00
|
|
|
hash_string = url + settings['server']['secret_key']
|
|
|
|
h = hashlib.sha256(hash_string.encode('utf-8')).hexdigest()
|
2015-01-18 08:54:24 +00:00
|
|
|
|
2015-01-16 15:26:15 +00:00
|
|
|
return '{0}?{1}'.format(url_for('image_proxy'),
|
2015-02-09 11:24:54 +00:00
|
|
|
urlencode(dict(url=url.encode('utf-8'), h=h)))
|
2015-01-16 15:26:15 +00:00
|
|
|
|
|
|
|
|
2014-04-24 23:46:40 +00:00
|
|
|
def render(template_name, override_theme=None, **kwargs):
|
2016-04-09 16:26:29 +00:00
|
|
|
disabled_engines = request.preferences.engines.get_disabled()
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2016-04-09 16:26:29 +00:00
|
|
|
enabled_categories = set(category for engine_name in engines
|
|
|
|
for category in engines[engine_name].categories
|
|
|
|
if (engine_name, category) not in disabled_engines)
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
if 'categories' not in kwargs:
|
2014-03-08 13:00:20 +00:00
|
|
|
kwargs['categories'] = ['general']
|
|
|
|
kwargs['categories'].extend(x for x in
|
|
|
|
sorted(categories.keys())
|
2014-03-08 13:03:42 +00:00
|
|
|
if x != 'general'
|
2016-04-09 16:26:29 +00:00
|
|
|
and x in enabled_categories)
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2015-06-05 06:48:47 +00:00
|
|
|
if 'all_categories' not in kwargs:
|
|
|
|
kwargs['all_categories'] = ['general']
|
|
|
|
kwargs['all_categories'].extend(x for x in
|
|
|
|
sorted(categories.keys())
|
|
|
|
if x != 'general')
|
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
if 'selected_categories' not in kwargs:
|
2013-10-17 19:46:35 +00:00
|
|
|
kwargs['selected_categories'] = []
|
2014-09-06 13:21:29 +00:00
|
|
|
for arg in request.args:
|
|
|
|
if arg.startswith('category_'):
|
|
|
|
c = arg.split('_', 1)[1]
|
|
|
|
if c in categories:
|
|
|
|
kwargs['selected_categories'].append(c)
|
2015-06-05 06:48:47 +00:00
|
|
|
|
2014-09-06 13:21:29 +00:00
|
|
|
if not kwargs['selected_categories']:
|
2016-04-08 14:38:05 +00:00
|
|
|
cookie_categories = request.preferences.get_value('categories')
|
2013-10-17 19:46:35 +00:00
|
|
|
for ccateg in cookie_categories:
|
2016-04-09 16:32:07 +00:00
|
|
|
kwargs['selected_categories'].append(ccateg)
|
2015-06-05 06:48:47 +00:00
|
|
|
|
2014-09-06 13:21:29 +00:00
|
|
|
if not kwargs['selected_categories']:
|
|
|
|
kwargs['selected_categories'] = ['general']
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-19 10:41:04 +00:00
|
|
|
if 'autocomplete' not in kwargs:
|
2016-04-09 16:32:07 +00:00
|
|
|
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2015-02-10 14:23:56 +00:00
|
|
|
if get_locale() in rtl_locales and 'rtl' not in kwargs:
|
|
|
|
kwargs['rtl'] = True
|
|
|
|
|
2014-11-18 10:37:42 +00:00
|
|
|
kwargs['searx_version'] = VERSION_STRING
|
|
|
|
|
2016-04-08 14:38:05 +00:00
|
|
|
kwargs['method'] = request.preferences.get_value('method')
|
2014-03-29 15:45:22 +00:00
|
|
|
|
2016-04-08 14:38:05 +00:00
|
|
|
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
|
2015-02-08 20:53:37 +00:00
|
|
|
|
2014-04-24 23:46:40 +00:00
|
|
|
# override url_for function in templates
|
|
|
|
kwargs['url_for'] = url_for_theme
|
|
|
|
|
2015-01-16 15:26:15 +00:00
|
|
|
kwargs['image_proxify'] = image_proxify
|
|
|
|
|
2015-01-01 17:59:53 +00:00
|
|
|
kwargs['get_result_template'] = get_result_template
|
|
|
|
|
2014-04-24 23:46:40 +00:00
|
|
|
kwargs['theme'] = get_current_theme_name(override=override_theme)
|
2014-11-18 18:55:39 +00:00
|
|
|
|
2014-09-22 20:42:29 +00:00
|
|
|
kwargs['template_name'] = template_name
|
2014-04-24 23:46:40 +00:00
|
|
|
|
2015-01-20 15:29:54 +00:00
|
|
|
kwargs['cookies'] = request.cookies
|
|
|
|
|
2016-02-27 17:16:40 +00:00
|
|
|
kwargs['instance_name'] = settings['general']['instance_name']
|
|
|
|
|
2015-04-12 17:24:01 +00:00
|
|
|
kwargs['scripts'] = set()
|
|
|
|
for plugin in request.user_plugins:
|
|
|
|
for script in plugin.js_dependencies:
|
|
|
|
kwargs['scripts'].add(script)
|
|
|
|
|
|
|
|
kwargs['styles'] = set()
|
|
|
|
for plugin in request.user_plugins:
|
|
|
|
for css in plugin.css_dependencies:
|
|
|
|
kwargs['styles'].add(css)
|
|
|
|
|
2014-04-24 23:46:40 +00:00
|
|
|
return render_template(
|
|
|
|
'{}/{}'.format(kwargs['theme'], template_name), **kwargs)
|
2013-10-15 18:50:12 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2015-03-10 19:44:02 +00:00
|
|
|
@app.before_request
|
|
|
|
def pre_request():
|
2015-03-10 21:45:59 +00:00
|
|
|
# merge GET, POST vars
|
2016-04-08 14:38:05 +00:00
|
|
|
preferences = Preferences(themes, categories.keys(), engines, plugins)
|
|
|
|
preferences.parse_cookies(request.cookies)
|
|
|
|
request.preferences = preferences
|
|
|
|
|
2015-03-10 21:45:59 +00:00
|
|
|
request.form = dict(request.form.items())
|
2015-03-15 11:13:24 +00:00
|
|
|
for k, v in request.args.items():
|
2015-03-10 21:45:59 +00:00
|
|
|
if k not in request.form:
|
|
|
|
request.form[k] = v
|
2015-03-10 19:44:02 +00:00
|
|
|
|
|
|
|
request.user_plugins = []
|
2016-04-08 14:38:05 +00:00
|
|
|
allowed_plugins = preferences.plugins.get_enabled()
|
|
|
|
disabled_plugins = preferences.plugins.get_disabled()
|
2015-03-10 19:44:02 +00:00
|
|
|
for plugin in plugins:
|
2015-03-11 17:57:36 +00:00
|
|
|
if ((plugin.default_on and plugin.id not in disabled_plugins)
|
|
|
|
or plugin.id in allowed_plugins):
|
2015-03-10 19:44:02 +00:00
|
|
|
request.user_plugins.append(plugin)
|
|
|
|
|
|
|
|
|
2014-05-01 08:14:47 +00:00
|
|
|
@app.route('/search', methods=['GET', 'POST'])
|
2014-01-14 17:19:21 +00:00
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
2013-10-14 21:09:13 +00:00
|
|
|
def index():
|
2014-01-31 06:08:24 +00:00
|
|
|
"""Render index page.
|
|
|
|
|
|
|
|
Supported outputs: html, json, csv, rss.
|
|
|
|
"""
|
2013-11-03 23:18:07 +00:00
|
|
|
|
2014-02-07 02:15:34 +00:00
|
|
|
if not request.args and not request.form:
|
2014-03-21 10:11:31 +00:00
|
|
|
return render(
|
|
|
|
'index.html',
|
|
|
|
)
|
2014-02-07 02:15:34 +00:00
|
|
|
|
2014-02-07 00:19:07 +00:00
|
|
|
try:
|
|
|
|
search = Search(request)
|
|
|
|
except:
|
2014-03-21 10:11:31 +00:00
|
|
|
return render(
|
|
|
|
'index.html',
|
|
|
|
)
|
2014-01-29 19:52:04 +00:00
|
|
|
|
2015-03-10 18:55:22 +00:00
|
|
|
if plugins.call('pre_search', request, locals()):
|
|
|
|
search.search(request)
|
|
|
|
|
|
|
|
plugins.call('post_search', request, locals())
|
2014-02-07 00:19:07 +00:00
|
|
|
|
2015-10-03 15:26:07 +00:00
|
|
|
for result in search.result_container.get_ordered_results():
|
2014-06-24 14:30:04 +00:00
|
|
|
|
2015-04-12 22:30:12 +00:00
|
|
|
plugins.call('on_result', request, locals())
|
2014-02-07 00:19:07 +00:00
|
|
|
if not search.paging and engines[result['engine']].paging:
|
|
|
|
search.paging = True
|
2014-06-24 14:30:04 +00:00
|
|
|
|
2014-02-07 00:19:07 +00:00
|
|
|
if search.request_data.get('format', 'html') == 'html':
|
2014-01-10 22:38:08 +00:00
|
|
|
if 'content' in result:
|
2014-02-07 01:45:12 +00: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 22:38:08 +00:00
|
|
|
else:
|
2015-04-12 15:37:01 +00:00
|
|
|
if result.get('content'):
|
2014-01-10 22:38:08 +00:00
|
|
|
result['content'] = html_to_text(result['content']).strip()
|
2014-02-04 18:42:32 +00:00
|
|
|
# removing html content and whitespace duplications
|
2015-04-12 15:37:01 +00:00
|
|
|
result['title'] = ' '.join(html_to_text(result['title']).strip().split())
|
2014-06-24 14:30:04 +00:00
|
|
|
|
2015-01-29 18:44:52 +00:00
|
|
|
result['pretty_url'] = prettify_url(result['url'])
|
2013-11-15 18:28:30 +00:00
|
|
|
|
2014-03-14 08:55:04 +00:00
|
|
|
# TODO, check if timezone is calculated right
|
|
|
|
if 'publishedDate' in result:
|
2016-03-29 09:59:16 +00:00
|
|
|
try: # test if publishedDate >= 1900 (datetime module bug)
|
|
|
|
result['pubdate'] = result['publishedDate'].strftime('%Y-%m-%d %H:%M:%S%z')
|
|
|
|
except ValueError:
|
|
|
|
result['publishedDate'] = None
|
2014-03-14 08:55:04 +00:00
|
|
|
else:
|
2016-03-29 09:59:16 +00:00
|
|
|
if result['publishedDate'].replace(tzinfo=None) >= datetime.now() - timedelta(days=1):
|
|
|
|
timedifference = datetime.now() - result['publishedDate'].replace(tzinfo=None)
|
|
|
|
minutes = int((timedifference.seconds / 60) % 60)
|
|
|
|
hours = int(timedifference.seconds / 60 / 60)
|
|
|
|
if hours == 0:
|
2016-05-24 10:49:21 +00:00
|
|
|
result['publishedDate'] = gettext(u'{minutes} minute(s) ago').format(minutes=minutes)
|
2016-03-29 09:59:16 +00:00
|
|
|
else:
|
2016-05-24 10:49:21 +00:00
|
|
|
result['publishedDate'] = gettext(u'{hours} hour(s), {minutes} minute(s) ago').format(hours=hours, minutes=minutes) # noqa
|
2016-03-29 09:59:16 +00:00
|
|
|
else:
|
|
|
|
result['publishedDate'] = format_date(result['publishedDate'])
|
2014-03-14 08:55:04 +00:00
|
|
|
|
2014-02-07 00:19:07 +00:00
|
|
|
if search.request_data.get('format') == 'json':
|
2014-02-07 01:45:12 +00:00
|
|
|
return Response(json.dumps({'query': search.query,
|
2016-06-27 22:06:50 +00:00
|
|
|
'number_of_results': search.result_container.number_of_results,
|
2015-10-03 15:26:07 +00:00
|
|
|
'results': search.result_container.get_ordered_results()}),
|
2014-01-20 01:31:20 +00:00
|
|
|
mimetype='application/json')
|
2014-02-07 00:19:07 +00:00
|
|
|
elif search.request_data.get('format') == 'csv':
|
2013-11-15 17:55:18 +00:00
|
|
|
csv = UnicodeWriter(cStringIO.StringIO())
|
2013-12-02 20:36:09 +00:00
|
|
|
keys = ('title', 'url', 'content', 'host', 'engine', 'score')
|
2015-10-03 15:26:07 +00:00
|
|
|
csv.writerow(keys)
|
|
|
|
for row in search.result_container.get_ordered_results():
|
|
|
|
row['host'] = row['parsed_url'].netloc
|
|
|
|
csv.writerow([row.get(key, '') for key in keys])
|
|
|
|
csv.stream.seek(0)
|
2013-11-15 18:28:30 +00:00
|
|
|
response = Response(csv.stream.read(), mimetype='application/csv')
|
2016-03-16 09:43:28 +00:00
|
|
|
cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search.query.encode('utf-8'))
|
2014-02-07 01:45:12 +00:00
|
|
|
response.headers.add('Content-Disposition', cont_disp)
|
2013-11-15 17:55:18 +00:00
|
|
|
return response
|
2014-02-07 00:19:07 +00:00
|
|
|
elif search.request_data.get('format') == 'rss':
|
2014-01-19 21:59:01 +00:00
|
|
|
response_rss = render(
|
|
|
|
'opensearch_response_rss.xml',
|
2015-10-03 15:26:07 +00:00
|
|
|
results=search.result_container.get_ordered_results(),
|
2014-02-07 00:19:07 +00:00
|
|
|
q=search.request_data['q'],
|
2016-06-27 22:06:50 +00:00
|
|
|
number_of_results=search.result_container.number_of_results,
|
2014-01-19 21:59:01 +00:00
|
|
|
base_url=get_base_url()
|
|
|
|
)
|
2014-01-14 21:18:21 +00:00
|
|
|
return Response(response_rss, mimetype='text/xml')
|
2014-01-14 17:17:19 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
return render(
|
|
|
|
'results.html',
|
2015-10-03 15:26:07 +00:00
|
|
|
results=search.result_container.get_ordered_results(),
|
2014-02-07 00:19:07 +00:00
|
|
|
q=search.request_data['q'],
|
|
|
|
selected_categories=search.categories,
|
|
|
|
paging=search.paging,
|
2016-06-27 22:06:50 +00:00
|
|
|
number_of_results=format_decimal(search.result_container.number_of_results),
|
2014-02-07 00:19:07 +00:00
|
|
|
pageno=search.pageno,
|
2014-03-04 17:53:56 +00:00
|
|
|
base_url=get_base_url(),
|
2015-10-03 15:26:07 +00:00
|
|
|
suggestions=search.result_container.suggestions,
|
|
|
|
answers=search.result_container.answers,
|
|
|
|
infoboxes=search.result_container.infoboxes,
|
2014-12-12 18:09:02 +00:00
|
|
|
theme=get_current_theme_name(),
|
2014-12-13 20:37:28 +00:00
|
|
|
favicons=global_favicons[themes.index(get_current_theme_name())]
|
2014-01-19 21:59:01 +00:00
|
|
|
)
|
2014-01-01 21:16:53 +00:00
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2013-10-20 22:28:48 +00:00
|
|
|
@app.route('/about', methods=['GET'])
|
|
|
|
def about():
|
2014-01-31 06:08:24 +00:00
|
|
|
"""Render about page"""
|
2014-03-21 11:19:48 +00:00
|
|
|
return render(
|
|
|
|
'about.html',
|
|
|
|
)
|
2014-01-17 15:23:23 +00:00
|
|
|
|
|
|
|
|
2014-03-20 09:28:24 +00:00
|
|
|
@app.route('/autocompleter', methods=['GET', 'POST'])
|
|
|
|
def autocompleter():
|
|
|
|
"""Return autocompleter results"""
|
|
|
|
request_data = {}
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# select request method
|
2014-03-20 09:28:24 +00:00
|
|
|
if request.method == 'POST':
|
|
|
|
request_data = request.form
|
|
|
|
else:
|
|
|
|
request_data = request.args
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# set blocked engines
|
2016-04-09 16:26:29 +00:00
|
|
|
disabled_engines = request.preferences.engines.get_disabled()
|
2014-10-01 15:18:18 +00:00
|
|
|
|
|
|
|
# parse query
|
2016-04-09 16:26:29 +00:00
|
|
|
query = Query(request_data.get('q', '').encode('utf-8'), disabled_engines)
|
2014-10-01 15:18:18 +00:00
|
|
|
query.parse_query()
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# check if search query is set
|
|
|
|
if not query.getSearchQuery():
|
2015-01-10 14:27:42 +00:00
|
|
|
return '', 400
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2016-04-08 14:38:05 +00:00
|
|
|
# run autocompleter
|
|
|
|
completer = autocomplete_backends.get(request.preferences.get_value('autocomplete'))
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2015-01-10 15:42:57 +00:00
|
|
|
# parse searx specific autocompleter results like !bang
|
|
|
|
raw_results = searx_bang(query)
|
|
|
|
|
2015-01-25 21:52:48 +00:00
|
|
|
# normal autocompletion results only appear if max 3 inner results returned
|
|
|
|
if len(raw_results) <= 3 and completer:
|
2016-03-30 00:53:31 +00:00
|
|
|
# get language from cookie
|
2016-04-09 16:32:07 +00:00
|
|
|
language = request.preferences.get_value('language')
|
2016-03-30 00:53:31 +00:00
|
|
|
if not language or language == 'all':
|
|
|
|
language = 'en'
|
|
|
|
else:
|
|
|
|
language = language.split('_')[0]
|
2015-01-10 18:55:21 +00:00
|
|
|
# run autocompletion
|
2016-03-30 00:53:31 +00:00
|
|
|
raw_results.extend(completer(query.getSearchQuery(), language))
|
2014-10-01 15:18:18 +00:00
|
|
|
|
|
|
|
# parse results (write :language and !engine back to result string)
|
|
|
|
results = []
|
|
|
|
for result in raw_results:
|
2015-01-25 21:52:48 +00:00
|
|
|
query.changeSearchQuery(result)
|
2014-10-01 15:18:18 +00:00
|
|
|
|
|
|
|
# add parsed result
|
2015-01-25 21:52:48 +00:00
|
|
|
results.append(query.getFullQuery())
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2014-10-01 15:18:18 +00:00
|
|
|
# return autocompleter results
|
2014-03-20 14:39:17 +00:00
|
|
|
if request_data.get('format') == 'x-suggestions':
|
2014-12-08 23:57:04 +00:00
|
|
|
return Response(json.dumps([query.query, results]),
|
2014-03-29 15:29:19 +00:00
|
|
|
mimetype='application/json')
|
2015-01-25 21:52:48 +00:00
|
|
|
|
|
|
|
return Response(json.dumps(results),
|
|
|
|
mimetype='application/json')
|
2014-03-20 09:28:24 +00:00
|
|
|
|
|
|
|
|
2014-01-01 21:16:53 +00:00
|
|
|
@app.route('/preferences', methods=['GET', 'POST'])
|
|
|
|
def preferences():
|
2016-04-08 14:38:05 +00:00
|
|
|
"""Render preferences page && save user preferences"""
|
2014-02-06 23:35:15 +00:00
|
|
|
|
2016-04-08 14:38:05 +00:00
|
|
|
# save preferences
|
|
|
|
if request.method == 'POST':
|
|
|
|
resp = make_response(redirect(urljoin(settings['server']['base_url'], url_for('index'))))
|
|
|
|
try:
|
|
|
|
request.preferences.parse_form(request.form)
|
|
|
|
except ValidationException:
|
|
|
|
# TODO use flash feature of flask
|
|
|
|
return resp
|
|
|
|
return request.preferences.save(resp)
|
|
|
|
|
|
|
|
# render preferences
|
|
|
|
image_proxy = request.preferences.get_value('image_proxy')
|
|
|
|
lang = request.preferences.get_value('language')
|
2016-04-09 16:26:29 +00:00
|
|
|
disabled_engines = request.preferences.engines.get_disabled()
|
2016-04-08 14:38:05 +00:00
|
|
|
allowed_plugins = request.preferences.plugins.get_enabled()
|
2015-05-30 10:15:23 +00:00
|
|
|
|
|
|
|
# stats for preferences page
|
|
|
|
stats = {}
|
|
|
|
|
|
|
|
for c in categories:
|
|
|
|
for e in categories[c]:
|
|
|
|
stats[e.name] = {'time': None,
|
|
|
|
'warn_timeout': False,
|
|
|
|
'warn_time': False}
|
2015-08-02 17:38:27 +00:00
|
|
|
if e.timeout > settings['outgoing']['request_timeout']:
|
2015-05-30 10:15:23 +00:00
|
|
|
stats[e.name]['warn_timeout'] = True
|
|
|
|
|
|
|
|
for engine_stat in get_engines_stats()[0][1]:
|
|
|
|
stats[engine_stat.get('name')]['time'] = round(engine_stat.get('avg'), 3)
|
2015-08-02 17:38:27 +00:00
|
|
|
if engine_stat.get('avg') > settings['outgoing']['request_timeout']:
|
2015-05-30 10:15:23 +00:00
|
|
|
stats[engine_stat.get('name')]['warn_time'] = True
|
|
|
|
# end of stats
|
|
|
|
|
2014-01-22 00:20:38 +00:00
|
|
|
return render('preferences.html',
|
|
|
|
locales=settings['locales'],
|
2014-01-31 03:35:23 +00:00
|
|
|
current_locale=get_locale(),
|
2016-04-08 14:38:05 +00:00
|
|
|
current_language=lang,
|
2015-01-16 16:37:34 +00:00
|
|
|
image_proxy=image_proxy,
|
2014-02-06 23:35:15 +00:00
|
|
|
language_codes=language_codes,
|
2015-04-07 16:09:38 +00:00
|
|
|
engines_by_category=categories,
|
2015-05-30 10:15:23 +00:00
|
|
|
stats=stats,
|
2016-04-09 16:48:23 +00:00
|
|
|
disabled_engines=disabled_engines,
|
2014-03-29 15:29:19 +00:00
|
|
|
autocomplete_backends=autocomplete_backends,
|
2014-04-24 23:46:40 +00:00
|
|
|
shortcuts={y: x for x, y in engine_shortcuts.items()},
|
|
|
|
themes=themes,
|
2015-03-11 17:57:36 +00:00
|
|
|
plugins=plugins,
|
2016-04-08 14:38:05 +00:00
|
|
|
allowed_plugins=allowed_plugins,
|
2014-04-24 23:46:40 +00:00
|
|
|
theme=get_current_theme_name())
|
2014-01-01 21:16:53 +00:00
|
|
|
|
|
|
|
|
2015-01-16 15:02:21 +00:00
|
|
|
@app.route('/image_proxy', methods=['GET'])
|
|
|
|
def image_proxy():
|
2015-02-01 09:18:32 +00:00
|
|
|
url = request.args.get('url').encode('utf-8')
|
2015-01-16 15:02:21 +00:00
|
|
|
|
|
|
|
if not url:
|
|
|
|
return '', 400
|
|
|
|
|
2015-02-01 09:18:32 +00:00
|
|
|
h = hashlib.sha256(url + settings['server']['secret_key'].encode('utf-8')).hexdigest()
|
2015-01-17 20:54:40 +00:00
|
|
|
|
|
|
|
if h != request.args.get('h'):
|
|
|
|
return '', 400
|
|
|
|
|
|
|
|
headers = dict_subset(request.headers, {'If-Modified-Since', 'If-None-Match'})
|
|
|
|
headers['User-Agent'] = gen_useragent()
|
|
|
|
|
2015-04-09 23:10:49 +00:00
|
|
|
resp = requests.get(url,
|
|
|
|
stream=True,
|
2015-08-02 17:38:27 +00:00
|
|
|
timeout=settings['outgoing']['request_timeout'],
|
2015-04-25 09:44:53 +00:00
|
|
|
headers=headers,
|
|
|
|
proxies=outgoing_proxies)
|
2015-01-17 20:54:40 +00:00
|
|
|
|
|
|
|
if resp.status_code == 304:
|
|
|
|
return '', resp.status_code
|
2015-01-16 15:02:21 +00:00
|
|
|
|
|
|
|
if resp.status_code != 200:
|
|
|
|
logger.debug('image-proxy: wrong response code: {0}'.format(resp.status_code))
|
|
|
|
if resp.status_code >= 400:
|
|
|
|
return '', resp.status_code
|
|
|
|
return '', 400
|
|
|
|
|
|
|
|
if not resp.headers.get('content-type', '').startswith('image/'):
|
2015-06-21 14:50:42 +00:00
|
|
|
logger.debug('image-proxy: wrong content-type: {0}'.format(resp.headers.get('content-type')))
|
2015-01-16 15:02:21 +00:00
|
|
|
return '', 400
|
|
|
|
|
|
|
|
img = ''
|
|
|
|
chunk_counter = 0
|
|
|
|
|
2015-02-10 14:23:56 +00:00
|
|
|
for chunk in resp.iter_content(1024 * 1024):
|
2015-01-16 15:02:21 +00:00
|
|
|
chunk_counter += 1
|
|
|
|
if chunk_counter > 5:
|
|
|
|
return '', 502 # Bad gateway - file is too big (>5M)
|
|
|
|
img += chunk
|
|
|
|
|
2015-01-17 20:54:40 +00:00
|
|
|
headers = dict_subset(resp.headers, {'Content-Length', 'Length', 'Date', 'Last-Modified', 'Expires', 'Etag'})
|
|
|
|
|
|
|
|
return Response(img, mimetype=resp.headers['content-type'], headers=headers)
|
2015-01-16 15:02:21 +00:00
|
|
|
|
|
|
|
|
2013-10-26 23:03:05 +00:00
|
|
|
@app.route('/stats', methods=['GET'])
|
|
|
|
def stats():
|
2014-01-31 06:08:24 +00:00
|
|
|
"""Render engine statistics page."""
|
2013-10-26 23:03:05 +00:00
|
|
|
stats = get_engines_stats()
|
2014-03-21 11:19:48 +00:00
|
|
|
return render(
|
|
|
|
'stats.html',
|
|
|
|
stats=stats,
|
|
|
|
)
|
2013-10-26 23:03:05 +00:00
|
|
|
|
2014-01-01 21:16:53 +00:00
|
|
|
|
2013-12-01 15:10:38 +00:00
|
|
|
@app.route('/robots.txt', methods=['GET'])
|
|
|
|
def robots():
|
|
|
|
return Response("""User-agent: *
|
|
|
|
Allow: /
|
|
|
|
Allow: /about
|
|
|
|
Disallow: /stats
|
2014-02-07 17:43:05 +00:00
|
|
|
Disallow: /preferences
|
2013-12-01 15:10:38 +00:00
|
|
|
""", mimetype='text/plain')
|
|
|
|
|
2014-01-01 21:16:53 +00:00
|
|
|
|
2013-10-15 22:01:08 +00:00
|
|
|
@app.route('/opensearch.xml', methods=['GET'])
|
|
|
|
def opensearch():
|
2013-10-20 20:37:55 +00:00
|
|
|
method = 'post'
|
2015-03-15 19:07:50 +00:00
|
|
|
|
2016-04-08 14:38:05 +00:00
|
|
|
if request.preferences.get_value('method') == 'GET':
|
2015-03-15 19:07:50 +00:00
|
|
|
method = 'get'
|
|
|
|
|
2013-10-20 22:28:48 +00:00
|
|
|
# chrome/chromium only supports HTTP GET....
|
2013-10-20 20:37:55 +00:00
|
|
|
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
|
|
|
|
method = 'get'
|
2014-03-29 15:29:19 +00:00
|
|
|
|
|
|
|
ret = render('opensearch.xml',
|
2014-05-01 08:14:47 +00:00
|
|
|
opensearch_method=method,
|
2016-03-02 10:51:11 +00:00
|
|
|
host=get_base_url(),
|
|
|
|
urljoin=urljoin)
|
2014-03-29 15:29:19 +00:00
|
|
|
|
2013-10-15 22:01:08 +00:00
|
|
|
resp = Response(response=ret,
|
2014-01-20 01:31:20 +00:00
|
|
|
status=200,
|
2015-01-18 13:26:52 +00:00
|
|
|
mimetype="text/xml")
|
2013-10-15 22:01:08 +00:00
|
|
|
return resp
|
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2013-12-01 22:52:49 +00:00
|
|
|
@app.route('/favicon.ico')
|
|
|
|
def favicon():
|
2014-04-24 23:46:40 +00:00
|
|
|
return send_from_directory(os.path.join(app.root_path,
|
2015-01-01 18:24:47 +00:00
|
|
|
'static/themes',
|
2014-04-24 23:46:40 +00:00
|
|
|
get_current_theme_name(),
|
|
|
|
'img'),
|
2014-01-20 01:31:20 +00:00
|
|
|
'favicon.png',
|
|
|
|
mimetype='image/vnd.microsoft.icon')
|
2013-12-01 22:52:49 +00:00
|
|
|
|
|
|
|
|
2015-04-07 09:07:48 +00:00
|
|
|
@app.route('/clear_cookies')
|
|
|
|
def clear_cookies():
|
2015-10-23 21:07:36 +00:00
|
|
|
resp = make_response(redirect(urljoin(settings['server']['base_url'], url_for('index'))))
|
2015-04-07 09:07:48 +00:00
|
|
|
for cookie_name in request.cookies:
|
|
|
|
resp.delete_cookie(cookie_name)
|
|
|
|
return resp
|
|
|
|
|
|
|
|
|
2016-06-07 21:08:48 +00:00
|
|
|
@app.route('/config')
|
|
|
|
def config():
|
|
|
|
return jsonify({'categories': categories.keys(),
|
|
|
|
'engines': [{'name': engine_name,
|
|
|
|
'categories': engine.categories,
|
|
|
|
'enabled': not engine.disabled}
|
|
|
|
for engine_name, engine in engines.items()],
|
|
|
|
'plugins': [{'name': plugin.name,
|
|
|
|
'enabled': plugin.default_on}
|
|
|
|
for plugin in plugins],
|
|
|
|
'instance_name': settings['general']['instance_name'],
|
|
|
|
'locales': settings['locales'],
|
|
|
|
'default_locale': settings['ui']['default_locale'],
|
|
|
|
'autocomplete': settings['search']['autocomplete'],
|
|
|
|
'safe_search': settings['search']['safe_search'],
|
|
|
|
'default_theme': settings['ui']['default_theme']})
|
|
|
|
|
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
def run():
|
2014-01-19 21:59:01 +00:00
|
|
|
app.run(
|
2015-08-02 17:38:27 +00:00
|
|
|
debug=settings['general']['debug'],
|
|
|
|
use_debugger=settings['general']['debug'],
|
2015-08-02 17:03:55 +00:00
|
|
|
port=settings['server']['port'],
|
|
|
|
host=settings['server']['bind_address']
|
2014-01-19 21:59:01 +00:00
|
|
|
)
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
|
2015-06-16 17:55:31 +00:00
|
|
|
class ReverseProxyPathFix(object):
|
|
|
|
'''Wrap the application in this middleware and configure the
|
|
|
|
front-end server to add these headers, to let you quietly bind
|
|
|
|
this to a URL other than / and to an HTTP scheme that is
|
|
|
|
different than what is used locally.
|
|
|
|
|
|
|
|
http://flask.pocoo.org/snippets/35/
|
|
|
|
|
|
|
|
In nginx:
|
|
|
|
location /myprefix {
|
|
|
|
proxy_pass http://127.0.0.1:8000;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Scheme $scheme;
|
|
|
|
proxy_set_header X-Script-Name /myprefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
:param app: the WSGI application
|
|
|
|
'''
|
|
|
|
def __init__(self, app):
|
|
|
|
self.app = app
|
|
|
|
|
|
|
|
def __call__(self, environ, start_response):
|
|
|
|
script_name = environ.get('HTTP_X_SCRIPT_NAME', '')
|
|
|
|
if script_name:
|
|
|
|
environ['SCRIPT_NAME'] = script_name
|
|
|
|
path_info = environ['PATH_INFO']
|
|
|
|
if path_info.startswith(script_name):
|
|
|
|
environ['PATH_INFO'] = path_info[len(script_name):]
|
|
|
|
|
|
|
|
scheme = environ.get('HTTP_X_SCHEME', '')
|
|
|
|
if scheme:
|
|
|
|
environ['wsgi.url_scheme'] = scheme
|
|
|
|
return self.app(environ, start_response)
|
2014-07-03 20:02:53 +00:00
|
|
|
|
2015-02-07 11:28:36 +00:00
|
|
|
|
2015-06-16 17:55:31 +00:00
|
|
|
application = app
|
|
|
|
# patch app to handle non root url-s behind proxy & wsgi
|
|
|
|
app.wsgi_app = ReverseProxyPathFix(ProxyFix(application.wsgi_app))
|
2014-07-03 20:02:53 +00:00
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
run()
|