mirror of https://github.com/searxng/searxng.git
[fix] sanitize results
This commit is contained in:
parent
ad2ff1fda8
commit
d2da51179a
|
@ -1,6 +1,6 @@
|
||||||
from urllib import quote
|
from urllib import quote
|
||||||
from lxml import html
|
from lxml import html
|
||||||
from urlparse import urljoin
|
from urlparse import urljoin, urlparse
|
||||||
from cgi import escape
|
from cgi import escape
|
||||||
|
|
||||||
base_url = 'https://startpage.com/'
|
base_url = 'https://startpage.com/'
|
||||||
|
@ -22,6 +22,10 @@ def response(resp):
|
||||||
for result in dom.xpath('//div[@class="result"]'):
|
for result in dom.xpath('//div[@class="result"]'):
|
||||||
link = result.xpath('.//h3/a')[0]
|
link = result.xpath('.//h3/a')[0]
|
||||||
url = urljoin(base_url, link.attrib.get('href'))
|
url = urljoin(base_url, link.attrib.get('href'))
|
||||||
|
parsed_url = urlparse(url)
|
||||||
|
# TODO better google link detection
|
||||||
|
if parsed_url.netloc.find('google.com') >= 0:
|
||||||
|
continue
|
||||||
title = ' '.join(link.xpath('.//text()'))
|
title = ' '.join(link.xpath('.//text()'))
|
||||||
content = escape(' '.join(result.xpath('.//p[@class="desc"]//text()')))
|
content = escape(' '.join(result.xpath('.//p[@class="desc"]//text()')))
|
||||||
results.append({'url': url, 'title': title, 'content': content})
|
results.append({'url': url, 'title': title, 'content': content})
|
||||||
|
|
Loading…
Reference in New Issue