| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											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 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 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  | from searx.engines.bing import set_bing_cookies | 
					
						
							|  |  |  | from searx.engines.bing import fetch_traits  # pylint: disable=unused-import | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     import logging | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     logger = logging.getLogger() | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time_map = { | 
					
						
							|  |  |  |     'day': 60 * 24, | 
					
						
							|  |  |  |     'week': 60 * 24 * 7, | 
					
						
							|  |  |  |     'month': 60 * 24 * 31, | 
					
						
							|  |  |  |     'year': 60 * 24 * 365, | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											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.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     engine_region = traits.get_region(params['searxng_locale'], traits.all_locale)  # type: ignore | 
					
						
							|  |  |  |     engine_language = traits.get_language(params['searxng_locale'], 'en')  # type: ignore | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  |     set_bing_cookies(params, engine_language, engine_region) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:39:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     # build URL query | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     # - example: https://www.bing.com/images/async?q=foo&async=content&first=1&count=35 | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     query_params = { | 
					
						
							|  |  |  |         'q': query, | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         'async': '1', | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |         # to simplify the page count lets use the default of 35 images per page | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         'first': (int(params.get('pageno', 1)) - 1) * 35 + 1, | 
					
						
							|  |  |  |         'count': 35, | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											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() | 
					
						
							| 
									
										
										
										
											2024-02-20 10:51:58 +01:00
										 |  |  |         img_format = ' '.join(result.xpath('.//div[@class="imgpt"]/div/span/text()')).strip().split(" ยท ") | 
					
						
							| 
									
										
										
										
											2022-10-22 19:01:51 +02:00
										 |  |  |         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, | 
					
						
							| 
									
										
										
										
											2024-02-20 10:51:58 +01:00
										 |  |  |                 '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 |