| 
									
										
										
										
											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 | 
					
						
							|  |  |  | """Bing (Videos)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from json import loads | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  | from searx.utils import match_language | 
					
						
							| 
									
										
										
										
											2020-11-02 11:19:53 +01:00
										 |  |  | from searx.engines.bing import language_aliases | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from searx.engines.bing import (  # pylint: disable=unused-import | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     _fetch_supported_languages, | 
					
						
							|  |  |  |     supported_languages_url, | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											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', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-08-01 17:01:59 +02:00
										 |  |  | send_accept_language_header = True | 
					
						
							| 
									
										
										
										
											2019-07-27 17:49:30 +02:00
										 |  |  | number_of_results = 28 | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-27 17:49:30 +02:00
										 |  |  | base_url = 'https://www.bing.com/' | 
					
						
							| 
									
										
										
										
											2021-12-27 10:16:20 +01:00
										 |  |  | search_string = ( | 
					
						
							|  |  |  |     # fmt: off | 
					
						
							|  |  |  |     'videos/search' | 
					
						
							|  |  |  |     '?{query}' | 
					
						
							|  |  |  |     '&count={count}' | 
					
						
							|  |  |  |     '&first={first}' | 
					
						
							|  |  |  |     '&scope=video' | 
					
						
							|  |  |  |     '&FORM=QBLH' | 
					
						
							|  |  |  |     # fmt: on | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | time_range_string = '&qft=+filterui:videoage-lt{interval}' | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | time_range_dict = {'day': '1440', 'week': '10080', 'month': '43200', 'year': '525600'} | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # safesearch definitions | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | safesearch_types = {2: 'STRICT', 1: 'DEMOTE', 0: 'OFF'} | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # do search-request | 
					
						
							|  |  |  | def request(query, params): | 
					
						
							| 
									
										
										
										
											2019-07-27 17:49:30 +02:00
										 |  |  |     offset = ((params['pageno'] - 1) * number_of_results) + 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     search_path = search_string.format(query=urlencode({'q': query}), count=number_of_results, first=offset) | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # safesearch cookie | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     params['cookies']['SRCHHPGUSR'] = 'ADLT=' + safesearch_types.get(params['safesearch'], 'DEMOTE') | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # language cookie | 
					
						
							| 
									
										
										
										
											2018-11-26 06:32:48 +01:00
										 |  |  |     language = match_language(params['language'], supported_languages, language_aliases).lower() | 
					
						
							| 
									
										
										
										
											2018-03-01 05:30:48 +01:00
										 |  |  |     params['cookies']['_EDGE_S'] = 'mkt=' + language + '&F=1' | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # query and paging | 
					
						
							| 
									
										
										
										
											2019-07-27 17:49:30 +02:00
										 |  |  |     params['url'] = base_url + search_path | 
					
						
							| 
									
										
										
										
											2017-08-05 21:48:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # time range | 
					
						
							|  |  |  |     if params['time_range'] in time_range_dict: | 
					
						
							|  |  |  |         params['url'] += time_range_string.format(interval=time_range_dict[params['time_range']]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return params | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # get response from search-request | 
					
						
							|  |  |  | def response(resp): | 
					
						
							|  |  |  |     results = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dom = html.fromstring(resp.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for result in dom.xpath('//div[@class="dg_u"]'): | 
					
						
							| 
									
										
										
										
											2021-12-28 14:33:05 +01:00
										 |  |  |         metadata = loads(result.xpath('.//div[@class="vrhdata"]/@vrhm')[0]) | 
					
						
							|  |  |  |         info = ' - '.join(result.xpath('.//div[@class="mc_vtvc_meta_block"]//span/text()')).strip() | 
					
						
							|  |  |  |         content = '{0} - {1}'.format(metadata['du'], info) | 
					
						
							|  |  |  |         thumbnail = '{0}th?id={1}'.format(base_url, metadata['thid']) | 
					
						
							|  |  |  |         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 |