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>
|
|
|
|
'''
|
|
|
|
|
2013-12-01 22:52:49 +00:00
|
|
|
import os
|
2013-10-14 21:09:13 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
from sys import path
|
2013-12-01 22:52:49 +00:00
|
|
|
path.append(os.path.realpath(os.path.dirname(os.path.realpath(__file__))+'/../'))
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2014-01-01 22:04:13 +00:00
|
|
|
from flask import Flask, request, render_template, url_for, Response, make_response, redirect
|
2013-11-03 23:21:27 +00:00
|
|
|
from searx.engines import search, categories, engines, get_engines_stats
|
2013-10-19 14:18:41 +00:00
|
|
|
from searx import settings
|
2013-10-16 22:30:41 +00:00
|
|
|
import json
|
2013-11-15 17:55:18 +00:00
|
|
|
import cStringIO
|
|
|
|
from searx.utils import UnicodeWriter
|
2013-12-01 22:52:49 +00:00
|
|
|
from flask import send_from_directory
|
2014-01-10 22:38:08 +00:00
|
|
|
from searx.utils import highlight_content, html_to_text
|
2013-12-01 22:52:49 +00:00
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
2013-10-19 14:18:41 +00:00
|
|
|
app.secret_key = settings.secret_key
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2013-10-15 22:01:08 +00:00
|
|
|
opensearch_xml = '''<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
|
|
<ShortName>searx</ShortName>
|
|
|
|
<Description>Search searx</Description>
|
|
|
|
<InputEncoding>UTF-8</InputEncoding>
|
|
|
|
<LongName>searx meta search engine</LongName>
|
2013-10-20 20:37:55 +00:00
|
|
|
<Url type="text/html" method="{method}" template="{host}">
|
2013-10-15 22:01:08 +00:00
|
|
|
<Param name="q" value="{{searchTerms}}" />
|
|
|
|
</Url>
|
|
|
|
</OpenSearchDescription>
|
|
|
|
'''
|
|
|
|
|
2013-10-15 18:50:12 +00:00
|
|
|
def render(template_name, **kwargs):
|
2013-10-17 19:06:28 +00:00
|
|
|
global categories
|
2013-10-19 18:45:48 +00:00
|
|
|
kwargs['categories'] = sorted(categories.keys())
|
2013-10-17 19:06:28 +00:00
|
|
|
if not 'selected_categories' in kwargs:
|
2013-10-17 19:46:35 +00: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)
|
|
|
|
if not len(kwargs['selected_categories']):
|
|
|
|
kwargs['selected_categories'] = ['general']
|
2013-10-15 18:50:12 +00:00
|
|
|
return render_template(template_name, **kwargs)
|
|
|
|
|
2013-11-03 23:21:27 +00:00
|
|
|
def parse_query(query):
|
|
|
|
query_engines = []
|
|
|
|
query_parts = query.split()
|
|
|
|
if query_parts[0].startswith('-') and query_parts[0][1:] in engines:
|
|
|
|
query_engines.append({'category': 'TODO', 'name': query_parts[0][1:]})
|
|
|
|
query = query.replace(query_parts[0], '', 1).strip()
|
|
|
|
return query, query_engines
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
|
|
def index():
|
2013-10-17 19:06:28 +00:00
|
|
|
global categories
|
2013-11-15 18:28:30 +00:00
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
if request.method=='POST':
|
2013-10-20 20:21:34 +00:00
|
|
|
request_data = request.form
|
|
|
|
else:
|
|
|
|
request_data = request.args
|
2013-10-22 16:57:20 +00:00
|
|
|
if not request_data.get('q'):
|
|
|
|
return render('index.html')
|
2013-11-03 23:18:07 +00:00
|
|
|
|
2013-10-22 16:57:20 +00:00
|
|
|
selected_categories = []
|
2013-11-03 23:18:07 +00:00
|
|
|
|
2013-11-03 23:21:27 +00:00
|
|
|
query, selected_engines = parse_query(request_data['q'].encode('utf-8'))
|
|
|
|
|
|
|
|
if not len(selected_engines):
|
|
|
|
for pd_name,pd in request_data.items():
|
|
|
|
if pd_name.startswith('category_'):
|
|
|
|
category = pd_name[9:]
|
|
|
|
if not category in categories:
|
|
|
|
continue
|
|
|
|
selected_categories.append(category)
|
|
|
|
if not len(selected_categories):
|
|
|
|
cookie_categories = request.cookies.get('categories', '').split(',')
|
|
|
|
for ccateg in cookie_categories:
|
|
|
|
if ccateg in categories:
|
|
|
|
selected_categories.append(ccateg)
|
|
|
|
if not len(selected_categories):
|
|
|
|
selected_categories = ['general']
|
|
|
|
|
|
|
|
for categ in selected_categories:
|
|
|
|
selected_engines.extend({'category': categ, 'name': x.name} for x in categories[categ])
|
2013-11-03 23:18:07 +00:00
|
|
|
|
2013-11-13 18:32:46 +00:00
|
|
|
results, suggestions = search(query, request, selected_engines)
|
2013-11-15 18:28:30 +00:00
|
|
|
|
2013-10-25 00:14:26 +00:00
|
|
|
for result in results:
|
2014-01-10 22:38:08 +00:00
|
|
|
if request_data.get('format', 'html') == 'html':
|
|
|
|
if 'content' in result:
|
|
|
|
result['content'] = highlight_content(result['content'], query)
|
|
|
|
result['title'] = highlight_content(result['title'], query)
|
|
|
|
else:
|
|
|
|
if 'content' in result:
|
|
|
|
result['content'] = html_to_text(result['content']).strip()
|
|
|
|
result['title'] = html_to_text(result['title']).strip()
|
2013-10-25 00:14:26 +00:00
|
|
|
if len(result['url']) > 74:
|
|
|
|
result['pretty_url'] = result['url'][:35] + '[..]' + result['url'][-35:]
|
|
|
|
else:
|
2014-01-05 21:10:46 +00:00
|
|
|
result['pretty_url'] = result['url']
|
2013-11-15 18:28:30 +00:00
|
|
|
|
2013-10-22 16:57:20 +00:00
|
|
|
if request_data.get('format') == 'json':
|
2013-10-23 19:45:00 +00:00
|
|
|
return Response(json.dumps({'query': query, 'results': results}), mimetype='application/json')
|
2013-11-15 17:55:18 +00:00
|
|
|
elif request_data.get('format') == 'csv':
|
|
|
|
csv = UnicodeWriter(cStringIO.StringIO())
|
2013-12-02 20:36:09 +00:00
|
|
|
keys = ('title', 'url', 'content', 'host', 'engine', 'score')
|
2013-11-15 17:55:18 +00:00
|
|
|
if len(results):
|
|
|
|
csv.writerow(keys)
|
|
|
|
for row in results:
|
2013-12-02 20:36:09 +00:00
|
|
|
row['host'] = row['parsed_url'].netloc
|
|
|
|
csv.writerow([row.get(key, '') for key in keys])
|
2013-11-15 17:55:18 +00:00
|
|
|
csv.stream.seek(0)
|
2013-11-15 18:28:30 +00:00
|
|
|
response = Response(csv.stream.read(), mimetype='application/csv')
|
2013-12-02 20:36:09 +00:00
|
|
|
response.headers.add('Content-Disposition', 'attachment;Filename=searx_-_{0}.csv'.format('_'.join(query.split())))
|
2013-11-15 17:55:18 +00:00
|
|
|
return response
|
2013-11-15 18:28:30 +00:00
|
|
|
|
2014-01-01 21:16:53 +00:00
|
|
|
return render('results.html'
|
|
|
|
,results=results
|
|
|
|
,q=request_data['q']
|
|
|
|
,selected_categories=selected_categories
|
|
|
|
,number_of_results=len(results)
|
|
|
|
,suggestions=suggestions
|
|
|
|
)
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2013-10-20 22:28:48 +00:00
|
|
|
@app.route('/about', methods=['GET'])
|
|
|
|
def about():
|
|
|
|
global categories
|
|
|
|
return render('about.html', categs=categories.items())
|
|
|
|
|
2014-01-01 21:16:53 +00:00
|
|
|
|
|
|
|
@app.route('/preferences', methods=['GET', 'POST'])
|
|
|
|
def preferences():
|
|
|
|
|
|
|
|
if request.method=='POST':
|
|
|
|
selected_categories = []
|
|
|
|
for pd_name,pd in request.form.items():
|
|
|
|
if pd_name.startswith('category_'):
|
|
|
|
category = pd_name[9:]
|
|
|
|
if not category in categories:
|
|
|
|
continue
|
|
|
|
selected_categories.append(category)
|
|
|
|
if selected_categories:
|
2014-01-01 22:04:13 +00:00
|
|
|
resp = make_response(redirect('/'))
|
2014-01-05 00:11:41 +00:00
|
|
|
# cookie max age: 4 weeks
|
|
|
|
resp.set_cookie('categories', ','.join(selected_categories), max_age=60*60*24*7*4)
|
2014-01-01 21:16:53 +00:00
|
|
|
return resp
|
|
|
|
return render('preferences.html')
|
|
|
|
|
|
|
|
|
2013-10-26 23:03:05 +00:00
|
|
|
@app.route('/stats', methods=['GET'])
|
|
|
|
def stats():
|
|
|
|
global categories
|
|
|
|
stats = get_engines_stats()
|
|
|
|
return render('stats.html', stats=stats)
|
|
|
|
|
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
|
|
|
|
""", 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():
|
|
|
|
global opensearch_xml
|
2013-10-20 20:37:55 +00:00
|
|
|
method = 'post'
|
2013-10-30 15:30:55 +00:00
|
|
|
scheme = 'http'
|
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'
|
2013-10-30 22:01:58 +00:00
|
|
|
if request.is_secure:
|
2013-10-30 15:30:55 +00:00
|
|
|
scheme = 'https'
|
2013-12-31 01:09:24 +00:00
|
|
|
if settings.base_url:
|
|
|
|
hostname = settings.base_url
|
2013-12-26 00:53:26 +00:00
|
|
|
else:
|
|
|
|
hostname = url_for('index', _external=True, _scheme=scheme)
|
|
|
|
ret = opensearch_xml.format(method=method, host=hostname)
|
2013-10-15 22:01:08 +00:00
|
|
|
resp = Response(response=ret,
|
|
|
|
status=200,
|
|
|
|
mimetype="application/xml")
|
|
|
|
return resp
|
|
|
|
|
2013-12-01 22:52:49 +00:00
|
|
|
@app.route('/favicon.ico')
|
|
|
|
def favicon():
|
|
|
|
return send_from_directory(os.path.join(app.root_path, 'static/img'),
|
|
|
|
'favicon.png', mimetype='image/vnd.microsoft.icon')
|
|
|
|
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
from gevent import monkey
|
|
|
|
monkey.patch_all()
|
|
|
|
|
2013-10-19 14:18:41 +00:00
|
|
|
app.run(debug = settings.debug
|
|
|
|
,use_debugger = settings.debug
|
|
|
|
,port = settings.port
|
2013-10-14 21:09:13 +00:00
|
|
|
)
|