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
|
2021-05-28 16:45:22 +00:00
|
|
|
from searx.settings_defaults import settings_set_defaults
|
|
|
|
from os.path import dirname, abspath
|
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__)))
|
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
|
|
|
|
2021-05-28 16:45:22 +00:00
|
|
|
if settings is not None:
|
|
|
|
settings = settings_set_defaults(settings)
|
2016-10-22 17:07:37 +00:00
|
|
|
|
2021-05-28 16:45:22 +00:00
|
|
|
searx_debug = settings['general']['debug']
|
2016-10-22 17:07:37 +00:00
|
|
|
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)
|
2017-12-29 08:13:29 +00:00
|
|
|
|
2021-05-28 16:45:22 +00:00
|
|
|
# log max_request_timeout
|
|
|
|
max_request_timeout = settings['outgoing']['max_request_timeout']
|
|
|
|
if max_request_timeout is None:
|
|
|
|
logger.info('max_request_timeout=%s', repr(max_request_timeout))
|
|
|
|
else:
|
|
|
|
logger.info('max_request_timeout=%i second(s)', max_request_timeout)
|
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()
|