mirror of
https://github.com/searxng/searxng
synced 2024-11-01 15:40:29 +00:00
542f7d0d7b
In the past, some files were tested with the standard profile, others with a profile in which most of the messages were switched off ... some files were not checked at all. - ``PYLINT_SEARXNG_DISABLE_OPTION`` has been abolished - the distinction ``# lint: pylint`` is no longer necessary - the pylint tasks have been reduced from three to two 1. ./searx/engines -> lint engines with additional builtins 2. ./searx ./searxng_extra ./tests -> lint all other python files Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Implement some checks in the active installation
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import logging
|
|
import warnings
|
|
from pathlib import Path
|
|
|
|
repo_root = Path(__file__).resolve().parent.parent
|
|
|
|
LOG_FORMAT_DEBUG = '%(levelname)-7s %(name)-30.30s: %(message)s'
|
|
logging.basicConfig(level=logging.getLevelName('DEBUG'), format=LOG_FORMAT_DEBUG)
|
|
os.environ['SEARXNG_DEBUG'] = '1'
|
|
|
|
# from here on implement the checks of the installation
|
|
|
|
import searx
|
|
|
|
OLD_SETTING = '/etc/searx/settings.yml'
|
|
|
|
if os.path.isfile(OLD_SETTING):
|
|
msg = (
|
|
'%s is no longer valid, move setting to %s' % (
|
|
OLD_SETTING,
|
|
os.environ.get('SEARXNG_SETTINGS_PATH', '/etc/searxng/settings.yml')
|
|
))
|
|
warnings.warn(msg, DeprecationWarning)
|
|
|
|
OLD_BRAND_ENV = repo_root / 'utils' / 'brand.env'
|
|
|
|
if os.path.isfile(OLD_BRAND_ENV):
|
|
msg = ('%s is no longer needed, remove the file' % (OLD_BRAND_ENV))
|
|
warnings.warn(msg, DeprecationWarning)
|
|
|
|
from searx import redisdb, get_setting
|
|
|
|
if not redisdb.initialize():
|
|
warnings.warn("can't connect to redis DB at: %s" % get_setting('redis.url'), RuntimeWarning, stacklevel=2)
|
|
warnings.warn("--> no bot protection without redis DB", RuntimeWarning, stacklevel=2)
|