Files

100 lines
2.9 KiB
Python
Raw Permalink Normal View History

2021-01-13 11:31:25 +01:00
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Bing-Images: description see :py:obj:`searx.engines.bing`."""
2026-03-18 14:55:25 +01:00
import json
from urllib.parse import urlencode
2021-12-28 14:43:39 +01:00
2014-09-01 14:39:18 +02: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
2021-01-13 11:31:25 +01:00
# about
about = {
2026-03-18 14:55:25 +01:00
"website": "https://www.bing.com/images",
"wikidata_id": "Q182496",
"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
}
2014-09-01 14:39:18 +02:00
# engine dependent config
2026-03-18 14:55:25 +01:00
categories = ["images", "web"]
2014-09-01 14:39:18 +02:00
paging = True
2015-02-08 21:53:37 +01:00
safesearch = True
2016-10-30 20:58:34 +01:00
time_range_support = True
time_map = {
2026-03-18 14:55:25 +01:00
"day": 60 * 24,
"week": 60 * 24 * 7,
"month": 60 * 24 * 31,
"year": 60 * 24 * 365,
}
2014-09-02 17:13:44 +02:00
base_url = "https://www.bing.com"
2026-03-18 14:55:25 +01:00
"""Bing-Image search URL"""
2015-02-08 22:01:24 +01:00
2014-09-01 14:39:18 +02:00
def request(query, params):
"""Assemble a Bing-Image request."""
2026-03-18 14:55:25 +01:00
engine_region = traits.get_region(params["searxng_locale"], traits.all_locale)
override_accept_language(params, engine_region)
2014-09-01 14:39:18 +02:00
# build URL query
2026-03-18 14:55:25 +01:00
# - example: https://www.bing.com/images/async?q=foo&async=1&first=1&count=35
query_params = {
2026-03-18 14:55:25 +01:00
"q": query,
"async": "1",
# to simplify the page count lets use the default of 35 images per page
2026-03-18 14:55:25 +01:00
"first": (int(params.get("pageno", 1)) - 1) * 35 + 1,
"count": 35,
}
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 year (525600 minutes) 'qft=filterui:age-lt525600'
if params["time_range"]:
query_params["qft"] = "filterui:age-lt%s" % time_map[params["time_range"]]
2014-09-01 14:39:18 +02:00
params["url"] = base_url + "/images/async?" + urlencode(query_params)
2014-09-01 14:39:18 +02:00
def response(resp):
2026-03-18 14:55:25 +01:00
"""Get response from Bing-Image"""
2014-09-01 14:39:18 +02:00
results = []
2026-03-18 14:55:25 +01:00
dom = html.fromstring(resp.text)
2014-09-01 14:39:18 +02:00
for result in dom.xpath('//ul[contains(@class, "dgControl_list")]/li'):
metadata = result.xpath('.//a[@class="iusc"]/@m')
if not metadata:
continue
2021-12-28 14:43:39 +01:00
metadata = json.loads(result.xpath('.//a[@class="iusc"]/@m')[0])
2026-03-18 14:55:25 +01:00
title = " ".join(result.xpath('.//div[@class="infnmpt"]//a/text()')).strip()
img_format = " ".join(result.xpath('.//div[@class="imgpt"]/div/span/text()')).strip().split(" · ")
source = " ".join(result.xpath('.//div[@class="imgpt"]//div[@class="lnkw"]//a/text()')).strip()
2021-12-28 14:43:39 +01:00
results.append(
{
2026-03-18 14:55:25 +01:00
"template": "images.html",
"url": metadata["purl"],
"thumbnail_src": metadata["turl"],
"img_src": metadata["murl"],
"content": metadata.get("desc"),
"title": title,
"source": source,
"resolution": img_format[0],
"img_format": img_format[1] if len(img_format) >= 2 else None,
2021-12-28 14:43:39 +01:00
}
)
2014-09-01 14:39:18 +02:00
return results