| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-12-28 14:43:39 +01:00
										 |  |  | # lint: pylint | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | """Bing-Images: description see :py:obj:`searx.engines.bing`.
 | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | # pylint: disable=invalid-name | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | from typing import TYPE_CHECKING | 
					
						
							|  |  |  | import uuid | 
					
						
							|  |  |  | import json | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | from searx.enginelib.traits import EngineTraits | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | from searx.engines.bing import ( | 
					
						
							|  |  |  |     set_bing_cookies, | 
					
						
							|  |  |  |     _fetch_traits, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | from searx.engines.bing import send_accept_language_header  # pylint: disable=unused-import | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     import logging | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logger: logging.Logger | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | traits: EngineTraits | 
					
						
							| 
									
										
										
										
											2020-03-01 08:01:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # about | 
					
						
							|  |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.bing.com/images', | 
					
						
							|  |  |  |     "wikidata_id": 'Q182496', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://www.microsoft.com/en-us/bing/apis/bing-image-search-api', | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +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 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | base_url = 'https://www.bing.com/images/async' | 
					
						
							|  |  |  | """Bing (Images) search URL""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bing_traits_url = 'https://learn.microsoft.com/en-us/bing/search-apis/bing-image-search/reference/market-codes' | 
					
						
							|  |  |  | """Bing (Images) search API description""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time_map = { | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  |     # fmt: off | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     'day': 60 * 24, | 
					
						
							|  |  |  |     'week': 60 * 24 * 7, | 
					
						
							|  |  |  |     'month': 60 * 24 * 31, | 
					
						
							|  |  |  |     'year': 60 * 24 * 365, | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  |     # fmt: on | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-09-02 17:13:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-08 22:01:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     """Assemble a Bing-Image request.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     engine_region = traits.get_region(params['searxng_locale'], 'en-US') | 
					
						
							|  |  |  |     engine_language = traits.get_language(params['searxng_locale'], 'en') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SID = uuid.uuid1().hex.upper() | 
					
						
							|  |  |  |     set_bing_cookies(params, engine_language, engine_region, SID) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     # build URL query | 
					
						
							|  |  |  |     # - example: https://www.bing.com/images/async?q=foo&first=155&count=35 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     query_params = { | 
					
						
							|  |  |  |         # fmt: off | 
					
						
							|  |  |  |         'q': query, | 
					
						
							|  |  |  |         'async' : 'content', | 
					
						
							|  |  |  |         # to simplify the page count lets use the default of 35 images per page | 
					
						
							|  |  |  |         'first' : (int(params.get('pageno', 1)) - 1) * 35 + 1, | 
					
						
							|  |  |  |         'count' : 35, | 
					
						
							|  |  |  |         # fmt: on | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-10 23:49:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     # time range | 
					
						
							|  |  |  |     # - example: one year (525600 minutes) 'qft=+filterui:age-lt525600' | 
					
						
							| 
									
										
										
										
											2017-10-10 23:49:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     if params['time_range']: | 
					
						
							|  |  |  |         query_params['qft'] = 'filterui:age-lt%s' % time_map[params['time_range']] | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     params['url'] = base_url + '?' + urlencode(query_params) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     """Get response from Bing-Images""" | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2015-08-28 14:51:32 +02:00
										 |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     for result in dom.xpath('//ul[contains(@class, "dgControl_list")]/li'): | 
					
						
							| 
									
										
										
										
											2021-12-28 14:43:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |         metadata = result.xpath('.//a[@class="iusc"]/@m') | 
					
						
							|  |  |  |         if not metadata: | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2021-12-28 14:43:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |         metadata = json.loads(result.xpath('.//a[@class="iusc"]/@m')[0]) | 
					
						
							|  |  |  |         title = ' '.join(result.xpath('.//div[@class="infnmpt"]//a/text()')).strip() | 
					
						
							|  |  |  |         img_format = ' '.join(result.xpath('.//div[@class="imgpt"]/div/span/text()')).strip() | 
					
						
							|  |  |  |         source = ' '.join(result.xpath('.//div[@class="imgpt"]//div[@class="lnkw"]//a/text()')).strip() | 
					
						
							| 
									
										
										
										
											2021-12-28 14:43:39 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'template': 'images.html', | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |                 'url': metadata['purl'], | 
					
						
							|  |  |  |                 'thumbnail_src': metadata['turl'], | 
					
						
							|  |  |  |                 'img_src': metadata['murl'], | 
					
						
							|  |  |  |                 'content': metadata['desc'], | 
					
						
							| 
									
										
										
										
											2021-12-28 14:43:39 +01:00
										 |  |  |                 'title': title, | 
					
						
							|  |  |  |                 'source': source, | 
					
						
							|  |  |  |                 'img_format': img_format, | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  |     return results | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def fetch_traits(engine_traits: EngineTraits): | 
					
						
							|  |  |  |     """Fetch languages and regions from Bing-News.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xpath_market_codes = '//table[1]/tbody/tr/td[3]' | 
					
						
							|  |  |  |     # xpath_country_codes = '//table[2]/tbody/tr/td[2]' | 
					
						
							|  |  |  |     xpath_language_codes = '//table[3]/tbody/tr/td[2]' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     _fetch_traits(engine_traits, bing_traits_url, xpath_language_codes, xpath_market_codes) |