| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-12-28 14:33:05 +01:00
										 |  |  | # lint: pylint | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | """Bing-Videos: description see :py:obj:`searx.engines.bing`.
 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | # pylint: disable=invalid-name | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | from typing import TYPE_CHECKING | 
					
						
							|  |  |  | import json | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | from urllib.parse import urlencode | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 14:33:05 +01: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 | 
					
						
							|  |  |  | from searx.engines.bing_images import time_map | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     import logging | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logger: logging.Logger | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | traits: EngineTraits | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.bing.com/videos', | 
					
						
							|  |  |  |     "wikidata_id": 'Q4914152', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://www.microsoft.com/en-us/bing/apis/bing-video-search-api', | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +01:00
										 |  |  | categories = ['videos', 'web'] | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | paging = True | 
					
						
							|  |  |  | safesearch = True | 
					
						
							|  |  |  | time_range_support = True | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  | base_url = 'https://www.bing.com/videos/asyncv2' | 
					
						
							|  |  |  | """Bing (Videos) async search URL.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     """Assemble a Bing-Video request.""" | 
					
						
							| 
									
										
										
										
											2019-07-27 17:49:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     # build URL query | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # example: https://www.bing.com/videos/asyncv2?q=foo&async=content&first=1&count=35 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     query_params = { | 
					
						
							|  |  |  |         'q': query, | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         'async': 'content', | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +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-17 18:35:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # time range | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     # | 
					
						
							|  |  |  |     # 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 + '?' + urlencode(query_params) | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     """Get response from Bing-Video""" | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dom = html.fromstring(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |     for result in dom.xpath('//div[@class="dg_u"]//div[contains(@id, "mc_vtvc_video")]'): | 
					
						
							|  |  |  |         metadata = json.loads(result.xpath('.//div[@class="vrhdata"]/@vrhm')[0]) | 
					
						
							| 
									
										
										
										
											2021-12-28 14:33:05 +01:00
										 |  |  |         info = ' - '.join(result.xpath('.//div[@class="mc_vtvc_meta_block"]//span/text()')).strip() | 
					
						
							|  |  |  |         content = '{0} - {1}'.format(metadata['du'], info) | 
					
						
							| 
									
										
										
										
											2022-10-17 18:35:24 +02:00
										 |  |  |         thumbnail = result.xpath('.//div[contains(@class, "mc_vtvc_th")]//img/@src')[0] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 14:33:05 +01:00
										 |  |  |         results.append( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'url': metadata['murl'], | 
					
						
							|  |  |  |                 'thumbnail': thumbnail, | 
					
						
							|  |  |  |                 'title': metadata.get('vt', ''), | 
					
						
							|  |  |  |                 'content': content, | 
					
						
							|  |  |  |                 'template': 'videos.html', | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return results |