noones-search/searx/engines/yahoo.py

188 lines
4.4 KiB
Python
Raw Normal View History

# SPDX-License-Identifier: AGPL-3.0-or-later
"""Yahoo Search (Web)
Languages are supported by mapping the language to a domain. If domain is not
found in :py:obj:`lang2domain` URL ``<lang>.search.yahoo.com`` is used.
"""
2014-01-30 01:33:24 +00:00
from urllib.parse import (
unquote,
urlencode,
)
2014-01-30 01:33:24 +00:00
from lxml import html
from searx.utils import (
eval_xpath_getindex,
eval_xpath_list,
extract_text,
html_to_text,
)
from searx.enginelib.traits import EngineTraits
traits: EngineTraits
2014-01-30 01:33:24 +00:00
# about
about = {
"website": 'https://search.yahoo.com/',
"wikidata_id": None,
"official_api_documentation": 'https://developer.yahoo.com/api/',
"use_official_api": False,
"require_api_key": False,
"results": 'HTML',
}
2014-09-01 14:17:29 +00:00
# engine dependent config
2021-12-22 15:58:52 +00:00
categories = ['general', 'web']
2014-09-01 14:17:29 +00:00
paging = True
2016-07-17 16:42:30 +00:00
time_range_support = True
# send_accept_language_header = True
2014-01-30 01:33:24 +00:00
time_range_dict = {
'day': ('1d', 'd'),
'week': ('1w', 'w'),
'month': ('1m', 'm'),
}
lang2domain = {
'zh_chs': 'hk.search.yahoo.com',
'zh_cht': 'tw.search.yahoo.com',
'any': 'search.yahoo.com',
'en': 'search.yahoo.com',
'bg': 'search.yahoo.com',
'cs': 'search.yahoo.com',
'da': 'search.yahoo.com',
'el': 'search.yahoo.com',
'et': 'search.yahoo.com',
'he': 'search.yahoo.com',
'hr': 'search.yahoo.com',
'ja': 'search.yahoo.com',
'ko': 'search.yahoo.com',
'sk': 'search.yahoo.com',
'sl': 'search.yahoo.com',
}
"""Map language to domain"""
yahoo_languages = {
"all": "any",
"ar": "ar",
"bg": "bg",
"cs": "cs",
"da": "da",
"de": "de",
"el": "el",
"en": "en",
"es": "es",
"et": "et",
"fi": "fi",
"fr": "fr",
"he": "he",
"hr": "hr",
"hu": "hu",
"it": "it",
"ja": "ja",
"ko": "ko",
"lt": "lt",
"lv": "lv",
"nl": "nl",
"no": "no",
"pl": "pl",
"pt": "pt",
"ro": "ro",
"ru": "ru",
"sk": "sk",
"sl": "sl",
"sv": "sv",
"th": "th",
"tr": "tr",
"zh": "zh_chs",
"zh_Hans": "zh_chs",
'zh-CN': "zh_chs",
"zh_Hant": "zh_cht",
"zh-HK": "zh_cht",
'zh-TW': "zh_cht",
}
def request(query, params):
"""build request"""
lang = params["language"].split("-")[0]
lang = yahoo_languages.get(lang, "any")
offset = (params['pageno'] - 1) * 7 + 1
age, btf = time_range_dict.get(params['time_range'], ('', ''))
args = urlencode(
{
'p': query,
'ei': 'UTF-8',
'fl': 1,
'vl': 'lang_' + lang,
'btf': btf,
'fr2': 'time',
'age': age,
'b': offset,
'xargs': 0,
}
)
domain = lang2domain.get(lang, '%s.search.yahoo.com' % lang)
params['url'] = 'https://%s/search?%s' % (domain, args)
return params
2014-03-08 18:09:03 +00:00
def parse_url(url_string):
"""remove yahoo-specific tracking-url"""
2014-03-18 09:06:14 +00:00
endings = ['/RS', '/RK']
endpositions = []
2015-02-04 19:41:40 +00:00
start = url_string.find('http', url_string.find('/RU=') + 1)
2014-09-01 14:17:29 +00:00
2014-03-18 09:06:14 +00:00
for ending in endings:
endpos = url_string.rfind(ending)
if endpos > -1:
endpositions.append(endpos)
if start == 0 or len(endpositions) == 0:
return url_string
2014-01-30 01:33:24 +00:00
end = min(endpositions)
return unquote(url_string[start:end])
2014-03-10 15:46:11 +00:00
2014-01-30 01:33:24 +00:00
def response(resp):
"""parse response"""
2014-09-01 14:17:29 +00:00
results = []
2014-01-30 01:33:24 +00:00
dom = html.fromstring(resp.text)
2014-09-01 14:17:29 +00:00
# parse results
for result in eval_xpath_list(dom, '//div[contains(@class,"algo-sr")]'):
url = eval_xpath_getindex(result, './/h3/a/@href', 0, default=None)
if url is None:
continue
url = parse_url(url)
title = eval_xpath_getindex(result, './/h3//a/@aria-label', 0, default='')
title: str = extract_text(title)
content = eval_xpath_getindex(result, './/div[contains(@class, "compText")]', 0, default='')
content: str = extract_text(content, allow_none=True)
2014-01-30 01:33:24 +00:00
2014-09-01 14:17:29 +00:00
# append result
results.append(
{
'url': url,
# title sometimes contains HTML tags / see
# https://github.com/searxng/searxng/issues/3790
'title': " ".join(html_to_text(title).strip().split()),
'content': " ".join(html_to_text(content).strip().split()),
}
)
2014-09-01 14:17:29 +00:00
for suggestion in eval_xpath_list(dom, '//div[contains(@class, "AlsoTry")]//table//a'):
2014-09-01 14:17:29 +00:00
# append suggestion
2014-01-30 01:33:24 +00:00
results.append({'suggestion': extract_text(suggestion)})
return results