| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2022-10-27 19:21:17 +02:00
										 |  |  | """This is the implementation of the Bing-WEB engine. Some of this
 | 
					
						
							|  |  |  | implementations are shared by other engines: | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-27 19:21:17 +02:00
										 |  |  | - :ref:`bing images engine` | 
					
						
							|  |  |  | - :ref:`bing news engine` | 
					
						
							|  |  |  | - :ref:`bing videos engine` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | On the `preference page`_ Bing offers a lot of languages an regions (see section | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  | LANGUAGE and COUNTRY/REGION).  The Language is the language of the UI, we need | 
					
						
							|  |  |  | in SearXNG to get the translations of data such as *"published last week"*. | 
					
						
							| 
									
										
										
										
											2022-10-27 19:21:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-09 11:59:31 +02:00
										 |  |  | There is a description of the official search-APIs_, unfortunately this is not | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  | the API we can use or that bing itself would use.  You can look up some things | 
					
						
							|  |  |  | in the API to get a better picture of bing, but the value specifications like | 
					
						
							|  |  |  | the market codes are usually outdated or at least no longer used by bing itself. | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  | The market codes have been harmonized and are identical for web, video and | 
					
						
							|  |  |  | images.  The news area has also been harmonized with the other categories.  Only | 
					
						
							|  |  |  | political adjustments still seem to be made -- for example, there is no news | 
					
						
							|  |  |  | category for the Chinese market. | 
					
						
							| 
									
										
										
										
											2022-10-27 19:21:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. _preference page: https://www.bing.com/account/general | 
					
						
							|  |  |  | .. _search-APIs: https://learn.microsoft.com/en-us/bing/search-apis/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | # pylint: disable=too-many-branches, invalid-name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from typing import TYPE_CHECKING | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  | import base64 | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  | import time | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  | from urllib.parse import parse_qs, urlencode, urlparse | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from lxml import html | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | import babel | 
					
						
							|  |  |  | import babel.languages | 
					
						
							| 
									
										
										
										
											2013-10-24 23:52:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | from searx.utils import eval_xpath, extract_text, eval_xpath_list, eval_xpath_getindex | 
					
						
							|  |  |  | from searx.locales import language_tag, region_tag | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | from searx.enginelib.traits import EngineTraits | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     import logging | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     logger = logging.getLogger() | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | traits: EngineTraits | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 11:31:25 +01:00
										 |  |  | about = { | 
					
						
							|  |  |  |     "website": 'https://www.bing.com', | 
					
						
							|  |  |  |     "wikidata_id": 'Q182496', | 
					
						
							|  |  |  |     "official_api_documentation": 'https://www.microsoft.com/en-us/bing/apis/bing-web-search-api', | 
					
						
							|  |  |  |     "use_official_api": False, | 
					
						
							|  |  |  |     "require_api_key": False, | 
					
						
							|  |  |  |     "results": 'HTML', | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  | # engine dependent config | 
					
						
							| 
									
										
										
										
											2021-12-22 16:58:52 +01:00
										 |  |  | categories = ['general', 'web'] | 
					
						
							| 
									
										
										
										
											2014-01-29 21:14:38 +01:00
										 |  |  | paging = True | 
					
						
							| 
									
										
										
										
											2023-11-14 08:25:06 +01:00
										 |  |  | max_page = 200 | 
					
						
							|  |  |  | """200 pages maximum (``&first=1991``)""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | time_range_support = True | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  | safesearch = True | 
					
						
							|  |  |  | """Bing results are always SFW.  To get NSFW links from bing some age
 | 
					
						
							|  |  |  | verification by a cookie is needed / thats not possible in SearXNG. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | base_url = 'https://www.bing.com/search' | 
					
						
							|  |  |  | """Bing (Web) search URL""" | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  | def _page_offset(pageno): | 
					
						
							|  |  |  |     return (int(pageno) - 1) * 10 + 1 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  | def set_bing_cookies(params, engine_language, engine_region): | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     params['cookies']['_EDGE_CD'] = f'm={engine_region}&u={engine_language}' | 
					
						
							|  |  |  |     params['cookies']['_EDGE_S'] = f'mkt={engine_region}&ui={engine_language}' | 
					
						
							|  |  |  |     logger.debug("bing cookies: %s", params['cookies']) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  | def request(query, params): | 
					
						
							|  |  |  |     """Assemble a Bing-Web request.""" | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01: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) | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     page = params.get('pageno', 1) | 
					
						
							|  |  |  |     query_params = { | 
					
						
							|  |  |  |         'q': query, | 
					
						
							| 
									
										
										
										
											2024-10-09 11:59:31 +02:00
										 |  |  |         # if arg 'pq' is missed, sometimes on page 4 we get results from page 1, | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         # don't ask why it is only sometimes / its M$ and they have never been | 
					
						
							|  |  |  |         # deterministic ;) | 
					
						
							|  |  |  |         'pq': query, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # To get correct page, arg first and this arg FORM is needed, the value PERE | 
					
						
							|  |  |  |     # is on page 2, on page 3 its PERE1 and on page 4 its PERE2 .. and so forth. | 
					
						
							|  |  |  |     # The 'first' arg should never send on page 1. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if page > 1: | 
					
						
							|  |  |  |         query_params['first'] = _page_offset(page)  # see also arg FORM | 
					
						
							|  |  |  |     if page == 2: | 
					
						
							|  |  |  |         query_params['FORM'] = 'PERE' | 
					
						
							|  |  |  |     elif page > 2: | 
					
						
							|  |  |  |         query_params['FORM'] = 'PERE%s' % (page - 2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  |     params['url'] = f'{base_url}?{urlencode(query_params)}' | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     if params.get('time_range'): | 
					
						
							|  |  |  |         unix_day = int(time.time() / 86400) | 
					
						
							|  |  |  |         time_ranges = {'day': '1', 'week': '2', 'month': '3', 'year': f'5_{unix_day-365}_{unix_day}'} | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  |         params['url'] += f'&filters=ex1:"ez{time_ranges[params["time_range"]]}"' | 
					
						
							| 
									
										
										
										
											2016-12-30 18:17:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-18 13:41:12 +01:00
										 |  |  |     return params | 
					
						
							| 
									
										
										
										
											2013-10-24 23:52:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-24 23:52:57 +02:00
										 |  |  | def response(resp): | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  |     # pylint: disable=too-many-locals | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-24 23:52:57 +02:00
										 |  |  |     results = [] | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |     result_len = 0 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-28 14:51:32 +02:00
										 |  |  |     dom = html.fromstring(resp.text) | 
					
						
							| 
									
										
										
										
											2021-12-18 11:40:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  |     # parse results again if nothing is found yet | 
					
						
							| 
									
										
										
										
											2022-05-21 18:24:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-08 19:12:52 +01:00
										 |  |  |     for result in eval_xpath_list(dom, '//ol[@id="b_results"]/li[contains(@class, "b_algo")]'): | 
					
						
							| 
									
										
										
										
											2021-12-18 11:40:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-08 19:12:52 +01:00
										 |  |  |         link = eval_xpath_getindex(result, './/h2/a', 0, None) | 
					
						
							|  |  |  |         if link is None: | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2013-10-25 01:37:48 +02:00
										 |  |  |         url = link.attrib.get('href') | 
					
						
							| 
									
										
										
										
											2015-01-25 20:14:37 +01:00
										 |  |  |         title = extract_text(link) | 
					
						
							| 
									
										
										
										
											2023-01-03 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         content = eval_xpath(result, './/p') | 
					
						
							| 
									
										
										
										
											2023-01-03 22:59:01 +01:00
										 |  |  |         for p in content: | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |             # Make sure that the element is free of: | 
					
						
							|  |  |  |             #  <span class="algoSlug_icon" # data-priority="2">Web</span> | 
					
						
							|  |  |  |             for e in p.xpath('.//span[@class="algoSlug_icon"]'): | 
					
						
							| 
									
										
										
										
											2023-01-03 22:59:01 +01:00
										 |  |  |                 e.getparent().remove(e) | 
					
						
							|  |  |  |         content = extract_text(content) | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  |         # get the real URL | 
					
						
							| 
									
										
										
										
											2022-05-21 18:24:47 +02:00
										 |  |  |         if url.startswith('https://www.bing.com/ck/a?'): | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  |             # get the first value of u parameter | 
					
						
							|  |  |  |             url_query = urlparse(url).query | 
					
						
							|  |  |  |             parsed_url_query = parse_qs(url_query) | 
					
						
							|  |  |  |             param_u = parsed_url_query["u"][0] | 
					
						
							|  |  |  |             # remove "a1" in front | 
					
						
							|  |  |  |             encoded_url = param_u[2:] | 
					
						
							|  |  |  |             # add padding | 
					
						
							|  |  |  |             encoded_url = encoded_url + '=' * (-len(encoded_url) % 4) | 
					
						
							|  |  |  |             # decode base64 encoded URL | 
					
						
							|  |  |  |             url = base64.urlsafe_b64decode(encoded_url).decode() | 
					
						
							| 
									
										
										
										
											2022-05-21 18:24:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-01 14:38:59 +02:00
										 |  |  |         # append result | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         results.append({'url': url, 'title': title, 'content': content}) | 
					
						
							| 
									
										
										
										
											2022-05-21 18:24:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # get number_of_results | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2020-01-02 22:28:47 +01:00
										 |  |  |         result_len_container = "".join(eval_xpath(dom, '//span[@class="sb_count"]//text()')) | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |         if "-" in result_len_container: | 
					
						
							| 
									
										
										
										
											2021-12-18 11:40:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |             # Remove the part "from-to" for paginated request ... | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             result_len_container = result_len_container[result_len_container.find("-") * 2 + 2 :] | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         result_len_container = re.sub('[^0-9]', '', result_len_container) | 
					
						
							| 
									
										
										
										
											2021-12-18 11:40:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |         if len(result_len_container) > 0: | 
					
						
							|  |  |  |             result_len = int(result_len_container) | 
					
						
							| 
									
										
										
										
											2021-12-18 11:40:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     except Exception as e:  # pylint: disable=broad-except | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |         logger.debug('result error :\n%s', e) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-20 17:39:42 +02:00
										 |  |  |     if result_len and _page_offset(resp.search_params.get("pageno", 0)) > result_len: | 
					
						
							| 
									
										
										
										
											2024-10-09 11:59:31 +02:00
										 |  |  |         # Avoid reading more results than available. | 
					
						
							| 
									
										
										
										
											2023-08-27 11:34:18 +02:00
										 |  |  |         # For example, if there is 100 results from some search and we try to get results from 120 to 130, | 
					
						
							|  |  |  |         # Bing will send back the results from 0 to 10 and no error. | 
					
						
							|  |  |  |         # If we compare results count with the first parameter of the request we can avoid this "invalid" results. | 
					
						
							| 
									
										
										
										
											2019-08-05 16:15:40 +02:00
										 |  |  |         return [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     results.append({'number_of_results': result_len}) | 
					
						
							| 
									
										
										
										
											2013-10-24 23:52:57 +02:00
										 |  |  |     return results | 
					
						
							| 
									
										
										
										
											2016-11-06 03:51:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-15 21:17:39 +02:00
										 |  |  | def fetch_traits(engine_traits: EngineTraits): | 
					
						
							|  |  |  |     """Fetch languages and regions from Bing-Web.""" | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     # pylint: disable=import-outside-toplevel | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     from searx.network import get  # see https://github.com/searxng/searxng/issues/762 | 
					
						
							| 
									
										
										
										
											2024-12-29 09:55:39 +01:00
										 |  |  |     from searx.utils import gen_useragent | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     headers = { | 
					
						
							|  |  |  |         "User-Agent": gen_useragent(), | 
					
						
							|  |  |  |         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", | 
					
						
							|  |  |  |         "Accept-Language": "en-US;q=0.5,en;q=0.3", | 
					
						
							|  |  |  |         "Accept-Encoding": "gzip, deflate, br", | 
					
						
							|  |  |  |         "DNT": "1", | 
					
						
							|  |  |  |         "Connection": "keep-alive", | 
					
						
							|  |  |  |         "Upgrade-Insecure-Requests": "1", | 
					
						
							|  |  |  |         "Sec-GPC": "1", | 
					
						
							|  |  |  |         "Cache-Control": "max-age=0", | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-29 09:55:39 +01:00
										 |  |  |     resp = get("https://www.bing.com/account/general", headers=headers) | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     if not resp.ok:  # type: ignore | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         print("ERROR: response from bing is not OK.") | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     dom = html.fromstring(resp.text)  # type: ignore | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     # languages | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     engine_traits.languages['zh'] = 'zh-hans' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     map_lang = {'prs': 'fa-AF', 'en': 'en-us'} | 
					
						
							|  |  |  |     bing_ui_lang_map = { | 
					
						
							|  |  |  |         # HINT: this list probably needs to be supplemented | 
					
						
							|  |  |  |         'en': 'us',  # en --> en-us | 
					
						
							|  |  |  |         'da': 'dk',  # da --> da-dk | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     for href in eval_xpath(dom, '//div[@id="language-section"]//li/a/@href'): | 
					
						
							|  |  |  |         eng_lang = parse_qs(urlparse(href).query)['setlang'][0] | 
					
						
							|  |  |  |         babel_lang = map_lang.get(eng_lang, eng_lang) | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |             sxng_tag = language_tag(babel.Locale.parse(babel_lang.replace('-', '_'))) | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |         except babel.UnknownLocaleError: | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |             print("ERROR: language (%s) is unknown by babel" % (babel_lang)) | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |             continue | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         # Language (e.g. 'en' or 'de') from https://www.bing.com/account/general | 
					
						
							|  |  |  |         # is converted by bing to 'en-us' or 'de-de'.  But only if there is not | 
					
						
							|  |  |  |         # already a '-' delemitter in the language.  For instance 'pt-PT' --> | 
					
						
							|  |  |  |         # 'pt-pt' and 'pt-br' --> 'pt-br' | 
					
						
							|  |  |  |         bing_ui_lang = eng_lang.lower() | 
					
						
							|  |  |  |         if '-' not in bing_ui_lang: | 
					
						
							|  |  |  |             bing_ui_lang = bing_ui_lang + '-' + bing_ui_lang_map.get(bing_ui_lang, bing_ui_lang) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |         conflict = engine_traits.languages.get(sxng_tag) | 
					
						
							|  |  |  |         if conflict: | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |             if conflict != bing_ui_lang: | 
					
						
							|  |  |  |                 print(f"CONFLICT: babel {sxng_tag} --> {conflict}, {bing_ui_lang}") | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |             continue | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         engine_traits.languages[sxng_tag] = bing_ui_lang | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     # regions (aka "market codes") | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     engine_traits.regions['zh-CN'] = 'zh-cn' | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |     map_market_codes = { | 
					
						
							|  |  |  |         'zh-hk': 'en-hk',  # not sure why, but at M$ this is the market code for Hongkong | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     for href in eval_xpath(dom, '//div[@id="region-section"]//li/a/@href'): | 
					
						
							|  |  |  |         cc_tag = parse_qs(urlparse(href).query)['cc'][0] | 
					
						
							|  |  |  |         if cc_tag == 'clear': | 
					
						
							|  |  |  |             engine_traits.all_locale = cc_tag | 
					
						
							| 
									
										
										
										
											2022-10-03 10:06:17 +02:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-27 18:24:33 +02:00
										 |  |  |         # add market codes from official languages of the country .. | 
					
						
							|  |  |  |         for lang_tag in babel.languages.get_official_languages(cc_tag, de_facto=True): | 
					
						
							|  |  |  |             if lang_tag not in engine_traits.languages.keys(): | 
					
						
							|  |  |  |                 # print("ignore lang: %s <-- %s" % (cc_tag, lang_tag)) | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             lang_tag = lang_tag.split('_')[0]  # zh_Hant --> zh | 
					
						
							|  |  |  |             market_code = f"{lang_tag}-{cc_tag}"  # zh-tw | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             market_code = map_market_codes.get(market_code, market_code) | 
					
						
							|  |  |  |             sxng_tag = region_tag(babel.Locale.parse('%s_%s' % (lang_tag, cc_tag.upper()))) | 
					
						
							|  |  |  |             conflict = engine_traits.regions.get(sxng_tag) | 
					
						
							|  |  |  |             if conflict: | 
					
						
							|  |  |  |                 if conflict != market_code: | 
					
						
							|  |  |  |                     print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, market_code)) | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |             engine_traits.regions[sxng_tag] = market_code |