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
|
|
|
|
import ConfigParser
|
|
|
|
from os import getenv
|
2013-10-15 20:50:12 +02:00
|
|
|
from searx.engines import search, engines
|
2013-10-14 23:09:13 +02:00
|
|
|
|
|
|
|
cfg = ConfigParser.SafeConfigParser()
|
|
|
|
cfg.read('/etc/searx.conf')
|
|
|
|
cfg.read(getenv('HOME')+'/.searxrc')
|
|
|
|
cfg.read(getenv('HOME')+'/.config/searx/searx.conf')
|
|
|
|
cfg.read('searx.conf')
|
|
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
app.secret_key = cfg.get('app', 'secret_key')
|
|
|
|
|
2013-10-15 20:50:12 +02:00
|
|
|
def render(template_name, **kwargs):
|
|
|
|
kwargs['engines'] = engines.keys()
|
|
|
|
return render_template(template_name, **kwargs)
|
|
|
|
|
2013-10-14 23:09:13 +02:00
|
|
|
@app.route('/', methods=['GET', 'POST'])
|
|
|
|
def index():
|
|
|
|
if request.method=='POST':
|
|
|
|
if not request.form.get('q'):
|
|
|
|
flash('Wrong post data')
|
2013-10-15 20:50:12 +02:00
|
|
|
return render('index.html')
|
2013-10-15 22:18:08 +02:00
|
|
|
selected_engines = []
|
|
|
|
for pd_name,pd in request.form.items():
|
|
|
|
if pd_name.startswith('engine_'):
|
|
|
|
selected_engines.append(pd_name[7:])
|
2013-10-15 22:54:15 +02:00
|
|
|
if not len(selected_engines):
|
|
|
|
selected_engines = engines.keys()
|
2013-10-15 22:36:48 +02:00
|
|
|
query = request.form['q'].encode('utf-8')
|
2013-10-15 22:18:08 +02:00
|
|
|
results = search(query, request, selected_engines)
|
2013-10-15 22:36:48 +02:00
|
|
|
return render('results.html', results=results, q=query.decode('utf-8'))
|
2013-10-15 20:50:12 +02:00
|
|
|
return render('index.html')
|
2013-10-14 23:09:13 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
from gevent import monkey
|
|
|
|
monkey.patch_all()
|
|
|
|
|
|
|
|
app.run(debug = cfg.get('server', 'debug')
|
|
|
|
,use_debugger = cfg.get('server', 'debug')
|
|
|
|
,port = int(cfg.get('server', 'port'))
|
|
|
|
)
|