2014-09-13 16:39:03 +00: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 03:01:31 +00:00
|
|
|
import logging
|
2020-11-27 18:32:45 +00:00
|
|
|
import searx.settings_loader
|
2014-01-18 23:17:02 +00:00
|
|
|
from os import environ
|
2017-01-06 12:52:59 +00:00
|
|
|
from os.path import realpath, dirname, join, abspath, isfile
|
2020-08-06 15:42:46 +00:00
|
|
|
|
2014-01-18 23:17:02 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
searx_dir = abspath(dirname(__file__))
|
2021-04-27 08:42:00 +00:00
|
|
|
searx_parent_dir = abspath(dirname(dirname(__file__)))
|
2014-01-18 23:17:02 +00:00
|
|
|
engine_dir = dirname(realpath(__file__))
|
2020-07-14 16:56:57 +00:00
|
|
|
static_path = abspath(join(dirname(__file__), 'static'))
|
2020-11-27 18:32:45 +00:00
|
|
|
settings, settings_load_message = searx.settings_loader.load_settings()
|
2014-09-14 09:09:44 +00:00
|
|
|
|
2020-07-25 01:20:29 +00:00
|
|
|
if settings['ui']['static_path']:
|
|
|
|
static_path = settings['ui']['static_path']
|
|
|
|
|
2016-10-22 17:07:37 +00: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 03:01:31 +00:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
else:
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
|
|
|
|
logger = logging.getLogger('searx')
|
2020-11-03 14:29:59 +00:00
|
|
|
logger.info(settings_load_message)
|
2015-01-09 03:01:31 +00:00
|
|
|
logger.info('Initialisation done')
|
2017-12-29 08:13:29 +00:00
|
|
|
|
|
|
|
if 'SEARX_SECRET' in environ:
|
|
|
|
settings['server']['secret_key'] = environ['SEARX_SECRET']
|
2019-06-17 20:08:35 +00:00
|
|
|
if 'SEARX_BIND_ADDRESS' in environ:
|
|
|
|
settings['server']['bind_address'] = environ['SEARX_BIND_ADDRESS']
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class _brand_namespace:
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_val(cls, group, name, default=''):
|
2021-01-11 10:49:06 +00:00
|
|
|
return settings.get(group, {}).get(name) or default
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def SEARX_URL(self):
|
|
|
|
return self.get_val('server', 'base_url')
|
|
|
|
|
2021-01-11 10:49:06 +00:00
|
|
|
@property
|
|
|
|
def CONTACT_URL(self):
|
|
|
|
return self.get_val('general', 'contact_url')
|
|
|
|
|
2020-12-27 13:39:48 +00:00
|
|
|
@property
|
|
|
|
def GIT_URL(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'git_url')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def GIT_BRANCH(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'git_branch')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ISSUE_URL(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'issue_url')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
2021-04-23 19:08:48 +00:00
|
|
|
@property
|
|
|
|
def NEW_ISSUE_URL(self):
|
|
|
|
return self.get_val('brand', 'new_issue_url')
|
|
|
|
|
2020-12-27 13:39:48 +00:00
|
|
|
@property
|
|
|
|
def DOCS_URL(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'docs_url')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def PUBLIC_INSTANCES(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'public_instances')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def WIKI_URL(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'wiki_url')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def TWITTER_URL(self):
|
2021-01-11 10:49:06 +00:00
|
|
|
return self.get_val('brand', 'twitter_url')
|
2020-12-27 13:39:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
brand = _brand_namespace()
|