Files

97 lines
2.7 KiB
Python
Raw Permalink Normal View History

2021-01-13 11:31:25 +01:00
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Bing-Videos: description see :py:obj:`searx.engines.bing`."""
2017-08-05 14:48:07 -05:00
import json
from urllib.parse import urlencode
2017-08-05 14:48:07 -05:00
2021-12-28 14:33:05 +01:00
from lxml import html
2026-03-18 14:55:25 +01:00
from searx.engines.bing import ( # pylint: disable=unused-import
fetch_traits,
get_locale_params,
override_accept_language,
)
2023-09-27 18:24:33 +02:00
from searx.engines.bing_images import time_map
2026-03-18 14:55:25 +01:00
from searx.utils import eval_xpath, eval_xpath_getindex
2017-08-05 14:48:07 -05:00
2021-01-13 11:31:25 +01:00
about = {
2026-03-18 14:55:25 +01:00
"website": "https://www.bing.com/videos",
"wikidata_id": "Q4914152",
"official_api_documentation": "https://github.com/MicrosoftDocs/bing-docs",
2021-01-13 11:31:25 +01:00
"use_official_api": False,
"require_api_key": False,
2026-03-18 14:55:25 +01:00
"results": "HTML",
2021-01-13 11:31:25 +01:00
}
# engine dependent config
2026-03-18 14:55:25 +01:00
categories = ["videos", "web"]
2017-08-05 14:48:07 -05:00
paging = True
safesearch = True
time_range_support = True
base_url = "https://www.bing.com"
2026-03-18 14:55:25 +01:00
"""Bing-Video search URL"""
2017-08-05 14:48:07 -05:00
def request(query, params):
"""Assemble a Bing-Video request."""
2019-07-27 17:49:30 +02:00
2026-03-18 14:55:25 +01:00
engine_region = traits.get_region(params["searxng_locale"], traits.all_locale)
2017-08-05 14:48:07 -05:00
2026-03-18 14:55:25 +01:00
override_accept_language(params, engine_region)
2017-08-05 14:48:07 -05:00
2026-03-18 14:55:25 +01:00
# build URL query
# - example: https://www.bing.com/videos/asyncv2?q=foo&async=content&first=1&count=35
query_params = {
2026-03-18 14:55:25 +01:00
"q": query,
"async": "content",
# to simplify the page count lets use the default of 35 videos per page
"first": (int(params.get("pageno", 1)) - 1) * 35 + 1,
"count": 35,
}
2017-08-05 14:48:07 -05:00
2026-03-18 14:55:25 +01:00
locale_params = get_locale_params(engine_region)
if locale_params:
query_params.update(locale_params)
2026-03-18 14:55:25 +01:00
# time range
# - example: one week (10080 minutes) '&qft= filterui:videoage-lt10080' '&form=VRFLTR'
if params["time_range"]:
query_params["form"] = "VRFLTR"
query_params["qft"] = " filterui:videoage-lt%s" % time_map[params["time_range"]]
params["url"] = base_url + "/videos/asyncv2?" + urlencode(query_params)
2017-08-05 14:48:07 -05:00
return params
def response(resp):
"""Get response from Bing-Video"""
2026-03-18 14:55:25 +01:00
2017-08-05 14:48:07 -05:00
results = []
dom = html.fromstring(resp.text)
2026-03-18 14:55:25 +01:00
for result in dom.xpath('//div[contains(@id, "mc_vtvc_video")]'):
metadata = json.loads(eval_xpath_getindex(result, './/div[@class="vrhdata"]/@vrhm', index=0))
info = " - ".join(eval_xpath(result, './/div[@class="mc_vtvc_meta_block"]//span/text()')).strip()
thumbnail = eval_xpath_getindex(
result,
'.//img[starts-with(@class, "rms")]/@data-src-hq',
index=0,
default=None,
)
2021-12-28 14:33:05 +01:00
results.append(
{
2026-03-18 14:55:25 +01:00
"url": metadata["murl"],
"thumbnail": thumbnail,
"title": metadata.get("vt", ""),
"content": info,
"length": metadata["du"],
"template": "videos.html",
2021-12-28 14:33:05 +01:00
}
)
2017-08-05 14:48:07 -05:00
return results