| 
									
										
										
										
											2014-09-13 18:39:03 +02:00
										 |  |  | '''
 | 
					
						
							|  |  |  | searx is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | searx is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | along with searx. If not, see < http://www.gnu.org/licenses/ >. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | (C) 2013- by Adam Tauber, <asciimoo@gmail.com> | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-09 04:01:31 +01:00
										 |  |  | import logging | 
					
						
							| 
									
										
										
										
											2020-11-27 19:32:45 +01:00
										 |  |  | import searx.settings_loader | 
					
						
							| 
									
										
										
										
											2014-01-19 00:17:02 +01:00
										 |  |  | from os import environ | 
					
						
							| 
									
										
										
										
											2017-01-06 13:52:59 +01:00
										 |  |  | from os.path import realpath, dirname, join, abspath, isfile | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 00:17:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | searx_dir = abspath(dirname(__file__)) | 
					
						
							| 
									
										
										
										
											2014-01-19 00:17:02 +01:00
										 |  |  | engine_dir = dirname(realpath(__file__)) | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | static_path = abspath(join(dirname(__file__), 'static')) | 
					
						
							| 
									
										
										
										
											2020-11-27 19:32:45 +01:00
										 |  |  | settings, settings_load_message = searx.settings_loader.load_settings() | 
					
						
							| 
									
										
										
										
											2014-09-14 11:09:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 03:20:29 +02:00
										 |  |  | if settings['ui']['static_path']: | 
					
						
							|  |  |  |     static_path = settings['ui']['static_path'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 19:07:37 +02:00
										 |  |  | '''
 | 
					
						
							|  |  |  | enable debug if | 
					
						
							|  |  |  | the environnement variable SEARX_DEBUG is 1 or true | 
					
						
							|  |  |  | (whatever the value in settings.yml) | 
					
						
							|  |  |  | or general.debug=True in settings.yml | 
					
						
							|  |  |  | disable debug if | 
					
						
							|  |  |  | the environnement variable SEARX_DEBUG is 0 or false | 
					
						
							|  |  |  | (whatever the value in settings.yml) | 
					
						
							|  |  |  | or general.debug=False in settings.yml | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | searx_debug_env = environ.get('SEARX_DEBUG', '').lower() | 
					
						
							|  |  |  | if searx_debug_env == 'true' or searx_debug_env == '1': | 
					
						
							|  |  |  |     searx_debug = True | 
					
						
							|  |  |  | elif searx_debug_env == 'false' or searx_debug_env == '0': | 
					
						
							|  |  |  |     searx_debug = False | 
					
						
							|  |  |  | else: | 
					
						
							|  |  |  |     searx_debug = settings.get('general', {}).get('debug') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if searx_debug: | 
					
						
							| 
									
										
										
										
											2015-01-09 04:01:31 +01:00
										 |  |  |     logging.basicConfig(level=logging.DEBUG) | 
					
						
							|  |  |  | else: | 
					
						
							|  |  |  |     logging.basicConfig(level=logging.WARNING) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | logger = logging.getLogger('searx') | 
					
						
							| 
									
										
										
										
											2020-11-03 15:29:59 +01:00
										 |  |  | logger.info(settings_load_message) | 
					
						
							| 
									
										
										
										
											2015-01-09 04:01:31 +01:00
										 |  |  | logger.info('Initialisation done') | 
					
						
							| 
									
										
										
										
											2017-12-29 09:13:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | if 'SEARX_SECRET' in environ: | 
					
						
							|  |  |  |     settings['server']['secret_key'] = environ['SEARX_SECRET'] | 
					
						
							| 
									
										
										
										
											2019-06-17 22:08:35 +02:00
										 |  |  | if 'SEARX_BIND_ADDRESS' in environ: | 
					
						
							|  |  |  |     settings['server']['bind_address'] = environ['SEARX_BIND_ADDRESS'] | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _brand_namespace: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							|  |  |  |     def get_val(cls, group, name, default=''): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return settings.get(group, {}).get(name) or default | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def SEARX_URL(self): | 
					
						
							|  |  |  |         return self.get_val('server', 'base_url') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |     @property | 
					
						
							|  |  |  |     def CONTACT_URL(self): | 
					
						
							|  |  |  |         return self.get_val('general', 'contact_url') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  |     @property | 
					
						
							|  |  |  |     def GIT_URL(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'git_url') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def GIT_BRANCH(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'git_branch') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def ISSUE_URL(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'issue_url') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-23 21:08:48 +02:00
										 |  |  |     @property | 
					
						
							|  |  |  |     def NEW_ISSUE_URL(self): | 
					
						
							|  |  |  |         return self.get_val('brand', 'new_issue_url') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  |     @property | 
					
						
							|  |  |  |     def DOCS_URL(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'docs_url') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def PUBLIC_INSTANCES(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'public_instances') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def WIKI_URL(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'wiki_url') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @property | 
					
						
							|  |  |  |     def TWITTER_URL(self): | 
					
						
							| 
									
										
										
										
											2021-01-11 11:49:06 +01:00
										 |  |  |         return self.get_val('brand', 'twitter_url') | 
					
						
							| 
									
										
										
										
											2020-12-27 14:39:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | brand = _brand_namespace() |