mirror of
https://github.com/searxng/searxng
synced 2024-11-09 01:10:26 +00:00
c80e82a855
Partial reverse engineering of the DuckDuckGo (DDG) engines including a improved language and region handling based on the enigne.traits_v1 data. - DDG Lite - DDG Instant Answer API - DDG Images - DDG Weather docs/src/searx.engine.duckduckgo.rst: Online documentation of the DDG engines (make docs.live) searx/data/engine_traits.json Add data type "traits_v1" generated by the fetch_traits() functions from: - "duckduckgo" (WEB), - "duckduckgo images" and - "duckduckgo weather" and remove data from obsolete data type "supported_languages". searx/autocomplete.py: Reversed engineered Autocomplete from DDG. Supports DDG's languages. searx/engines/duckduckgo.py: - fetch_traits(): Fetch languages & regions from DDG. - get_ddg_lang(): Get DDG's language identifier from SearXNG's locale. DDG defines its languages by region codes. DDG-Lite does not offer a language selection to the user, only a region can be selected by the user. - Cache ``vqd`` value: The vqd value depends on the query string and is needed for the follow up pages or the images loaded by a XMLHttpRequest (DDG images). The ``vqd`` value of a search term is stored for 10min in the redis DB. - DDG Lite engine: reversed engineered request method with improved Language and region support and better ``vqd`` handling. searx/engines/duckduckgo_definitions.py: DDG Instant Answer API The *instant answers* API does not support languages, or at least we could not find out how language support should work. It seems that most of the features are based on English terms. searx/engines/duckduckgo_images.py: DDG Images Reversed engineered request method. Improved language and region handling based on cookies and the enigne.traits_v1 data. Response: add image format to the result list searx/engines/duckduckgo_weather.py: DDG Weather Improved language and region handling based on cookies and the enigne.traits_v1 data. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
164 lines
4.4 KiB
Python
164 lines
4.4 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# lint: pylint
|
|
"""
|
|
DuckDuckGo Weather
|
|
~~~~~~~~~~~~~~~~~~
|
|
"""
|
|
|
|
from typing import TYPE_CHECKING
|
|
from json import loads
|
|
from urllib.parse import quote
|
|
|
|
from datetime import datetime
|
|
from flask_babel import gettext
|
|
|
|
from searx.engines.duckduckgo import fetch_traits # pylint: disable=unused-import
|
|
from searx.engines.duckduckgo import get_ddg_lang
|
|
from searx.enginelib.traits import EngineTraits
|
|
|
|
if TYPE_CHECKING:
|
|
import logging
|
|
|
|
logger: logging.Logger
|
|
|
|
traits: EngineTraits
|
|
|
|
|
|
about = {
|
|
"website": 'https://duckduckgo.com/',
|
|
"wikidata_id": 'Q12805',
|
|
"official_api_documentation": None,
|
|
"use_official_api": True,
|
|
"require_api_key": False,
|
|
"results": "JSON",
|
|
}
|
|
|
|
send_accept_language_header = True
|
|
|
|
# engine dependent config
|
|
categories = ["others"]
|
|
URL = "https://duckduckgo.com/js/spice/forecast/{query}/{lang}"
|
|
|
|
|
|
def generate_condition_table(condition):
|
|
res = ""
|
|
|
|
res += f"<tr><td><b>{gettext('Condition')}</b></td>" f"<td><b>{condition['summary']}</b></td></tr>"
|
|
|
|
res += (
|
|
f"<tr><td><b>{gettext('Temperature')}</b></td>"
|
|
f"<td><b>{f_to_c(condition['temperature'])}°C / {condition['temperature']}°F</b></td></tr>"
|
|
)
|
|
|
|
res += (
|
|
f"<tr><td>{gettext('Feels like')}</td><td>{f_to_c(condition['apparentTemperature'])}°C / "
|
|
f"{condition['apparentTemperature']}°F</td></tr>"
|
|
)
|
|
|
|
res += (
|
|
f"<tr><td>{gettext('Wind')}</td><td>{condition['windBearing']}° — "
|
|
f"{(condition['windSpeed'] * 1.6093440006147):.2f} km/h / {condition['windSpeed']} mph</td></tr>"
|
|
)
|
|
|
|
res += f"<tr><td>{gettext('Visibility')}</td><td>{condition['visibility']} km</td>"
|
|
|
|
res += f"<tr><td>{gettext('Humidity')}</td><td>{(condition['humidity'] * 100):.1f}%</td></tr>"
|
|
|
|
return res
|
|
|
|
|
|
def generate_day_table(day):
|
|
res = ""
|
|
|
|
res += (
|
|
f"<tr><td>{gettext('Min temp.')}</td><td>{f_to_c(day['temperatureLow'])}°C / "
|
|
f"{day['temperatureLow']}°F</td></tr>"
|
|
)
|
|
res += (
|
|
f"<tr><td>{gettext('Max temp.')}</td><td>{f_to_c(day['temperatureHigh'])}°C / "
|
|
f"{day['temperatureHigh']}°F</td></tr>"
|
|
)
|
|
res += f"<tr><td>{gettext('UV index')}</td><td>{day['uvIndex']}</td></tr>"
|
|
res += (
|
|
f"<tr><td>{gettext('Sunrise')}</td><td>{datetime.fromtimestamp(day['sunriseTime']).strftime('%H:%M')}</td></tr>"
|
|
)
|
|
res += (
|
|
f"<tr><td>{gettext('Sunset')}</td><td>{datetime.fromtimestamp(day['sunsetTime']).strftime('%H:%M')}</td></tr>"
|
|
)
|
|
|
|
return res
|
|
|
|
|
|
def request(query, params):
|
|
|
|
eng_region = traits.get_region(params['searxng_locale'], traits.all_locale)
|
|
eng_lang = get_ddg_lang(traits, params['searxng_locale'])
|
|
|
|
# !ddw paris :es-AR --> {'ad': 'es_AR', 'ah': 'ar-es', 'l': 'ar-es'}
|
|
params['cookies']['ad'] = eng_lang
|
|
params['cookies']['ah'] = eng_region
|
|
params['cookies']['l'] = eng_region
|
|
logger.debug("cookies: %s", params['cookies'])
|
|
|
|
params["url"] = URL.format(query=quote(query), lang=eng_lang.split('_')[0])
|
|
return params
|
|
|
|
|
|
def f_to_c(temperature):
|
|
return "%.2f" % ((temperature - 32) / 1.8)
|
|
|
|
|
|
def response(resp):
|
|
results = []
|
|
|
|
if resp.text.strip() == "ddg_spice_forecast();":
|
|
return []
|
|
|
|
result = loads(resp.text[resp.text.find('\n') + 1 : resp.text.rfind('\n') - 2])
|
|
|
|
current = result["currently"]
|
|
|
|
title = result['flags']['ddg-location']
|
|
|
|
infobox = f"<h3>{gettext('Current condition')}</h3><table><tbody>"
|
|
|
|
infobox += generate_condition_table(current)
|
|
|
|
infobox += "</tbody></table>"
|
|
|
|
last_date = None
|
|
|
|
for time in result['hourly']['data']:
|
|
current_time = datetime.fromtimestamp(time['time'])
|
|
|
|
if last_date != current_time.date():
|
|
if last_date is not None:
|
|
infobox += "</tbody></table>"
|
|
|
|
infobox += f"<h3>{current_time.strftime('%Y-%m-%d')}</h3>"
|
|
|
|
infobox += "<table><tbody>"
|
|
|
|
for day in result['daily']['data']:
|
|
if datetime.fromtimestamp(day['time']).date() == current_time.date():
|
|
infobox += generate_day_table(day)
|
|
|
|
infobox += "</tbody></table><table><tbody>"
|
|
|
|
last_date = current_time.date()
|
|
|
|
infobox += f"<tr><td rowspan=\"7\"><b>{current_time.strftime('%H:%M')}</b></td></tr>"
|
|
|
|
infobox += generate_condition_table(time)
|
|
|
|
infobox += "</tbody></table>"
|
|
|
|
results.append(
|
|
{
|
|
"infobox": title,
|
|
"content": infobox,
|
|
}
|
|
)
|
|
|
|
return results
|