libremiami-search/searx/webapp.py

125 lines
4.5 KiB
Python
Raw Normal View History

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>
'''
2013-10-14 23:09:13 +02:00
if __name__ == "__main__":
from sys import path
from os.path import realpath, dirname
path.append(realpath(dirname(realpath(__file__))+'/../'))
from flask import Flask, request, flash, render_template, url_for, Response, make_response
2013-10-17 21:06:28 +02:00
from searx.engines import search, categories
2013-10-19 16:18:41 +02:00
from searx import settings
2013-10-17 00:30:41 +02:00
import json
2013-10-14 23:09:13 +02:00
app = Flask(__name__)
2013-10-19 16:18:41 +02:00
app.secret_key = settings.secret_key
2013-10-14 23:09:13 +02:00
2013-10-16 00:01:08 +02: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 22:37:55 +02:00
<Url type="text/html" method="{method}" template="{host}">
2013-10-16 00:01:08 +02:00
<Param name="q" value="{{searchTerms}}" />
</Url>
</OpenSearchDescription>
'''
2013-10-15 20:50:12 +02:00
def render(template_name, **kwargs):
2013-10-17 21:06:28 +02:00
global categories
2013-10-19 20:45:48 +02:00
kwargs['categories'] = sorted(categories.keys())
2013-10-17 21:06:28 +02:00
if not 'selected_categories' in kwargs:
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 20:50:12 +02:00
return render_template(template_name, **kwargs)
2013-10-14 23:09:13 +02:00
@app.route('/', methods=['GET', 'POST'])
def index():
2013-10-17 21:06:28 +02:00
global categories
2013-10-14 23:09:13 +02:00
if request.method=='POST':
2013-10-20 22:21:34 +02:00
request_data = request.form
else:
request_data = request.args
if request_data.get('q'):
2013-10-15 22:18:08 +02:00
selected_engines = []
2013-10-17 21:06:28 +02:00
selected_categories = []
2013-10-20 22:21:34 +02:00
for pd_name,pd in request_data.items():
2013-10-17 21:06:28 +02:00
if pd_name.startswith('category_'):
category = pd_name[9:]
if not category in categories:
continue
selected_categories.append(category)
selected_engines.extend(x.name for x in categories[category])
2013-10-15 22:54:15 +02:00
if not len(selected_engines):
cookie_categories = request.cookies.get('categories', '').split(',')
for ccateg in cookie_categories:
if ccateg in categories:
selected_categories.append(ccateg)
selected_engines.extend(x.name for x in categories[ccateg])
2013-10-20 21:19:15 +02:00
if not len(selected_engines):
selected_categories.append('general')
selected_engines.extend(x.name for x in categories['general'])
2013-10-20 22:21:34 +02:00
query = request_data['q'].encode('utf-8')
2013-10-15 22:18:08 +02:00
results = search(query, request, selected_engines)
2013-10-20 22:21:34 +02:00
if request_data.get('format') == 'json':
2013-10-17 00:30:41 +02:00
# TODO HTTP headers
return json.dumps({'query': query, 'results': results})
2013-10-19 22:35:53 +02:00
template = render('results.html'
,results=results
,q=query.decode('utf-8')
,selected_categories=selected_categories
,number_of_results=len(results)
)
resp = make_response(template)
resp.set_cookie('categories', ','.join(selected_categories))
return resp
2013-10-15 20:50:12 +02:00
return render('index.html')
2013-10-14 23:09:13 +02:00
2013-10-16 00:01:08 +02:00
@app.route('/favicon.ico', methods=['GET'])
def fav():
return ''
@app.route('/opensearch.xml', methods=['GET'])
def opensearch():
global opensearch_xml
2013-10-20 22:37:55 +02:00
method = 'post'
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
method = 'get'
ret = opensearch_xml.format(method=method, host=url_for('index', _external=True))
2013-10-16 00:01:08 +02:00
resp = Response(response=ret,
status=200,
mimetype="application/xml")
return resp
2013-10-14 23:09:13 +02:00
if __name__ == "__main__":
from gevent import monkey
monkey.patch_all()
2013-10-19 16:18:41 +02:00
app.run(debug = settings.debug
,use_debugger = settings.debug
,port = settings.port
2013-10-14 23:09:13 +02:00
)