2021-06-01 14:03:19 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# lint: pylint
|
2021-09-07 11:34:35 +00:00
|
|
|
# pylint: disable=missing-module-docstring
|
2014-09-13 16:39:03 +00:00
|
|
|
|
2021-09-06 17:47:50 +00:00
|
|
|
import sys
|
|
|
|
import os
|
2021-06-01 14:03:19 +00:00
|
|
|
from os.path import dirname, abspath
|
2021-09-06 17:47:50 +00:00
|
|
|
|
2015-01-09 03:01:31 +00:00
|
|
|
import logging
|
2021-06-01 14:03:19 +00:00
|
|
|
|
2021-06-08 09:34:36 +00:00
|
|
|
import searx.unixthreadname
|
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
|
2014-01-18 23:17:02 +00:00
|
|
|
|
2021-09-06 17:47:50 +00:00
|
|
|
|
|
|
|
# Debug
|
|
|
|
LOG_FORMAT_DEBUG = '%(levelname)-7s %(name)-30.30s: %(message)s'
|
|
|
|
|
|
|
|
# Production
|
|
|
|
LOG_FORMAT_PROD = '%(asctime)-15s %(levelname)s:%(name)s: %(message)s'
|
2021-09-08 06:44:40 +00:00
|
|
|
LOG_LEVEL_PROD = logging.WARNING
|
2021-09-06 17:47:50 +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-07-17 17:03:54 +00:00
|
|
|
_unset = object()
|
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
|
2021-07-17 17:03:54 +00:00
|
|
|
def get_setting(name, default=_unset):
|
|
|
|
"""Returns the value to which ``name`` point. If there is no such name in the
|
|
|
|
settings and the ``default`` is unset, a :py:obj:`KeyError` is raised.
|
|
|
|
|
|
|
|
"""
|
|
|
|
value = settings
|
|
|
|
for a in name.split('.'):
|
|
|
|
if isinstance(value, dict):
|
|
|
|
value = value.get(a, _unset)
|
|
|
|
else:
|
|
|
|
value = _unset
|
|
|
|
|
|
|
|
if value is _unset:
|
|
|
|
if default is _unset:
|
|
|
|
raise KeyError(name)
|
|
|
|
value = default
|
|
|
|
break
|
|
|
|
|
|
|
|
return value
|
2021-09-06 17:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
def is_color_terminal():
|
|
|
|
if os.getenv('TERM') in ('dumb', 'unknown'):
|
|
|
|
return False
|
|
|
|
return sys.stdout.isatty()
|
|
|
|
|
|
|
|
|
|
|
|
def logging_config_debug():
|
|
|
|
try:
|
|
|
|
import coloredlogs # pylint: disable=import-outside-toplevel
|
|
|
|
except ImportError:
|
|
|
|
coloredlogs = None
|
|
|
|
|
2021-10-02 10:21:02 +00:00
|
|
|
log_level = os.environ.get('SEARXNG_DEBUG_LOG_LEVEL', 'DEBUG')
|
2021-09-06 17:47:50 +00:00
|
|
|
if coloredlogs and is_color_terminal():
|
|
|
|
level_styles = {
|
|
|
|
'spam': {'color': 'green', 'faint': True},
|
|
|
|
'debug': {},
|
|
|
|
'notice': {'color': 'magenta'},
|
|
|
|
'success': {'bold': True, 'color': 'green'},
|
|
|
|
'info': {'bold': True, 'color': 'cyan'},
|
|
|
|
'warning': {'color': 'yellow'},
|
|
|
|
'error': {'color': 'red'},
|
|
|
|
'critical': {'bold': True, 'color': 'red'},
|
|
|
|
}
|
|
|
|
field_styles = {
|
|
|
|
'asctime': {'color': 'green'},
|
|
|
|
'hostname': {'color': 'magenta'},
|
|
|
|
'levelname': {'color': 8},
|
|
|
|
'name': {'color': 8},
|
|
|
|
'programname': {'color': 'cyan'},
|
2021-12-27 08:26:22 +00:00
|
|
|
'username': {'color': 'yellow'},
|
2021-09-06 17:47:50 +00:00
|
|
|
}
|
2021-12-27 08:26:22 +00:00
|
|
|
coloredlogs.install(level=log_level, level_styles=level_styles, field_styles=field_styles, fmt=LOG_FORMAT_DEBUG)
|
2021-09-06 17:47:50 +00:00
|
|
|
else:
|
|
|
|
logging.basicConfig(level=logging.getLevelName(log_level), format=LOG_FORMAT_DEBUG)
|
|
|
|
|
|
|
|
|
|
|
|
searx_debug = settings['general']['debug']
|
|
|
|
if searx_debug:
|
|
|
|
logging_config_debug()
|
|
|
|
else:
|
2021-09-08 06:44:40 +00:00
|
|
|
logging.basicConfig(level=LOG_LEVEL_PROD, format=LOG_FORMAT_PROD)
|
|
|
|
logging.root.setLevel(level=LOG_LEVEL_PROD)
|
|
|
|
logging.getLogger('werkzeug').setLevel(level=LOG_LEVEL_PROD)
|
2021-09-06 17:47:50 +00:00
|
|
|
logger = logging.getLogger('searx')
|
|
|
|
logger.info(settings_load_message)
|
|
|
|
|
|
|
|
# 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)
|