| 
									
										
										
										
											2020-12-16 13:41:32 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-04-27 15:13:39 +02:00
										 |  |  | # lint: pylint | 
					
						
							|  |  |  | """Processores for engine-type: ``online_dictionary``
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2020-12-16 13:41:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from searx.utils import is_valid_lang | 
					
						
							|  |  |  | from .online import OnlineProcessor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | parser_re = re.compile('.*?([a-z]+)-([a-z]+) ([^ ]+)$', re.I) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class OnlineDictionaryProcessor(OnlineProcessor): | 
					
						
							| 
									
										
										
										
											2021-06-03 18:02:47 +02:00
										 |  |  |     """Processor class used by ``online_dictionary`` engines.""" | 
					
						
							| 
									
										
										
										
											2020-12-16 13:41:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-03 18:02:47 +02:00
										 |  |  |     engine_type = 'online_dictionary' | 
					
						
							| 
									
										
										
										
											2020-12-16 13:41:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_params(self, search_query, engine_category): | 
					
						
							|  |  |  |         params = super().get_params(search_query, engine_category) | 
					
						
							|  |  |  |         if params is None: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m = parser_re.match(search_query.query) | 
					
						
							|  |  |  |         if not m: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         from_lang, to_lang, query = m.groups() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         from_lang = is_valid_lang(from_lang) | 
					
						
							|  |  |  |         to_lang = is_valid_lang(to_lang) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not from_lang or not to_lang: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         params['from_lang'] = from_lang | 
					
						
							|  |  |  |         params['to_lang'] = to_lang | 
					
						
							|  |  |  |         params['query'] = query | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return params | 
					
						
							| 
									
										
										
										
											2020-12-24 09:28:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_default_tests(self): | 
					
						
							|  |  |  |         tests = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if getattr(self.engine, 'paging', False): | 
					
						
							|  |  |  |             tests['translation_paging'] = { | 
					
						
							|  |  |  |                 'matrix': {'query': 'en-es house', | 
					
						
							|  |  |  |                            'pageno': (1, 2, 3)}, | 
					
						
							|  |  |  |                 'result_container': ['not_empty', ('one_title_contains', 'house')], | 
					
						
							|  |  |  |                 'test': ['unique_results'] | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             tests['translation'] = { | 
					
						
							|  |  |  |                 'matrix': {'query': 'en-es house'}, | 
					
						
							|  |  |  |                 'result_container': ['not_empty', ('one_title_contains', 'house')], | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return tests |