| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | import math | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from searx.data import EXTERNAL_URLS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IMDB_PREFIX_TO_URL_ID = { | 
					
						
							|  |  |  |     'tt': 'imdb_title', | 
					
						
							|  |  |  |     'mn': 'imdb_name', | 
					
						
							|  |  |  |     'ch': 'imdb_character', | 
					
						
							|  |  |  |     'co': 'imdb_company', | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     'ev': 'imdb_event', | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-06-04 09:35:26 +02:00
										 |  |  | HTTP_WIKIMEDIA_IMAGE = 'http://commons.wikimedia.org/wiki/Special:FilePath/' | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_imdb_url_id(imdb_item_id): | 
					
						
							|  |  |  |     id_prefix = imdb_item_id[:2] | 
					
						
							|  |  |  |     return IMDB_PREFIX_TO_URL_ID.get(id_prefix) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 09:35:26 +02:00
										 |  |  | def get_wikimedia_image_id(url): | 
					
						
							|  |  |  |     if url.startswith(HTTP_WIKIMEDIA_IMAGE): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         return url[len(HTTP_WIKIMEDIA_IMAGE) :] | 
					
						
							| 
									
										
										
										
											2021-06-04 09:35:26 +02:00
										 |  |  |     if url.startswith('File:'): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         return url[len('File:') :] | 
					
						
							| 
									
										
										
										
											2021-06-04 09:35:26 +02:00
										 |  |  |     return url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | def get_external_url(url_id, item_id, alternative="default"): | 
					
						
							|  |  |  |     """Return an external URL or None if url_id is not found.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     url_id can take value from data/external_urls.json | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |     The "imdb_id" value is automatically converted according to the item_id value. | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If item_id is None, the raw URL with the $1 is returned. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2021-06-04 09:35:26 +02:00
										 |  |  |     if item_id is not None: | 
					
						
							|  |  |  |         if url_id == 'imdb_id': | 
					
						
							|  |  |  |             url_id = get_imdb_url_id(item_id) | 
					
						
							|  |  |  |         elif url_id == 'wikimedia_image': | 
					
						
							|  |  |  |             item_id = get_wikimedia_image_id(item_id) | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     url_description = EXTERNAL_URLS.get(url_id) | 
					
						
							|  |  |  |     if url_description: | 
					
						
							|  |  |  |         url_template = url_description["urls"].get(alternative) | 
					
						
							|  |  |  |         if url_template is not None: | 
					
						
							|  |  |  |             if item_id is not None: | 
					
						
							|  |  |  |                 return url_template.replace('$1', item_id) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 return url_template | 
					
						
							|  |  |  |     return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_earth_coordinates_url(latitude, longitude, osm_zoom, alternative='default'): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     url = ( | 
					
						
							|  |  |  |         get_external_url('map', None, alternative) | 
					
						
							|  |  |  |         .replace('${latitude}', str(latitude)) | 
					
						
							|  |  |  |         .replace('${longitude}', str(longitude)) | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  |         .replace('${zoom}', str(osm_zoom)) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2020-10-26 19:19:18 +01:00
										 |  |  |     return url | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def area_to_osm_zoom(area): | 
					
						
							|  |  |  |     """Convert an area in km² into an OSM zoom. Less reliable if the shape is not round.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logarithm regression using these data: | 
					
						
							|  |  |  |      * 9596961 -> 4 (China) | 
					
						
							|  |  |  |      * 3287263 -> 5 (India) | 
					
						
							|  |  |  |      * 643801 -> 6 (France) | 
					
						
							|  |  |  |      * 6028 -> 9 | 
					
						
							|  |  |  |      * 1214 -> 10 | 
					
						
							|  |  |  |      * 891 -> 12 | 
					
						
							|  |  |  |      * 12 -> 13 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     In WolframAlpha: | 
					
						
							|  |  |  |         >>> log fit {9596961,15},{3287263, 14},{643801,13},{6028,10},{1214,9},{891,7},{12,6} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with 15 = 19-4 (China); 14 = 19-5 (India) and so on | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Args: | 
					
						
							|  |  |  |         area (int,float,str): area in km² | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Returns: | 
					
						
							|  |  |  |         int: OSM zoom or 19 in area is not a number | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         amount = float(area) | 
					
						
							|  |  |  |         return max(0, min(19, round(19 - 0.688297 * math.log(226.878 * amount)))) | 
					
						
							|  |  |  |     except ValueError: | 
					
						
							|  |  |  |         return 19 |