searx/searx/engines/__init__.py

97 lines
3.4 KiB
Python
Raw Normal View History

2013-10-14 23:09:13 +02:00
2013-10-17 00:32:32 +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
from os.path import realpath, dirname, splitext, join
from os import listdir
from imp import load_source
2013-10-15 18:19:06 +02:00
import grequests
2013-10-15 23:20:26 +02:00
from itertools import izip_longest, chain
from operator import itemgetter
2013-10-14 23:09:13 +02:00
engine_dir = dirname(realpath(__file__))
2013-10-15 19:11:43 +02:00
engines = {}
2013-10-14 23:09:13 +02:00
for filename in listdir(engine_dir):
modname = splitext(filename)[0]
if filename.startswith('_') or not filename.endswith('.py'):
continue
filepath = join(engine_dir, filename)
2013-10-15 18:19:06 +02:00
engine = load_source(modname, filepath)
if not hasattr(engine, 'request') or not hasattr(engine, 'response'):
continue
2013-10-15 19:11:43 +02:00
engines[modname] = engine
2013-10-15 18:19:06 +02:00
def default_request_params():
return {'method': 'GET', 'headers': {}, 'data': {}, 'url': ''}
2013-10-15 19:11:43 +02:00
def make_callback(engine_name, results, callback):
2013-10-15 18:19:06 +02:00
def process_callback(response, **kwargs):
2013-10-15 23:20:26 +02:00
cb_res = []
2013-10-15 19:11:43 +02:00
for result in callback(response):
result['engine'] = engine_name
2013-10-15 23:20:26 +02:00
cb_res.append(result)
results[engine_name] = cb_res
2013-10-15 18:19:06 +02:00
return process_callback
2013-10-15 22:18:08 +02:00
def search(query, request, selected_engines):
2013-10-15 18:19:06 +02:00
global engines
requests = []
2013-10-15 23:20:26 +02:00
results = {}
2013-10-15 18:19:06 +02:00
user_agent = request.headers.get('User-Agent', '')
2013-10-15 19:11:43 +02:00
for ename, engine in engines.items():
2013-10-15 22:18:08 +02:00
if ename not in selected_engines:
continue
2013-10-15 18:19:06 +02:00
headers = default_request_params()
headers['User-Agent'] = user_agent
request_params = engine.request(query, headers)
2013-10-15 19:11:43 +02:00
callback = make_callback(ename, results, engine.response)
2013-10-15 18:19:06 +02:00
if request_params['method'] == 'GET':
req = grequests.get(request_params['url']
,headers=headers
,hooks=dict(response=callback)
)
else:
req = grequests.post(request_params['url']
,data=request_params['data']
,headers=headers
,hooks=dict(response=callback)
)
requests.append(req)
grequests.map(requests)
flat_res = list(filter(None, chain(*izip_longest(*results.values()))))
flat_len = len(flat_res)
results = []
# deduplication + scoring
for i,res in enumerate(flat_res):
score = flat_len - i
duplicated = False
for new_res in results:
if res['url'] == new_res['url']:
duplicated = new_res
break
if duplicated:
if len(res['content']) > len(duplicated):
duplicated['content'] = res['content']
duplicated['score'] += score
else:
res['score'] = score
results.append(res)
return sorted(results, key=itemgetter('score'), reverse=True)