##// END OF EJS Templates
feat(configs): deprecared old hooks protocol and ssh wrapper....
feat(configs): deprecared old hooks protocol and ssh wrapper. New defaults are now set on v2 keys, so previous installation are automatically set to new keys. Fallback mode is still available.

File last commit:

r5093:525812a8 default
r5496:cab50adf default
Show More
__init__.py
88 lines | 3.4 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
svn-support: move into apps module.
r1531 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
dan
py3: remove usage of basestring
r3425 import os
svn-support: move into apps module.
r1531 import logging
# Do not use `from rhodecode import events` here, it will be overridden by the
# events module in this package due to pythons import mechanism.
from rhodecode.events import RepoGroupEvent
from rhodecode.subscribers import AsyncSubprocessSubscriber
config: major update for the code to make it be almost fully controllable via env for new docker based installer.
r4823 from rhodecode.config.settings_maker import SettingsMaker
svn-support: move into apps module.
r1531
from .events import ModDavSvnConfigChange
from .subscribers import generate_config_subscriber
from . import config_keys
log = logging.getLogger(__name__)
def _sanitize_settings_and_apply_defaults(settings):
"""
Set defaults, convert to python types and validate settings.
"""
config: major update for the code to make it be almost fully controllable via env for new docker based installer.
r4823 settings_maker = SettingsMaker(settings)
settings_maker.make_setting(config_keys.generate_config, False, parser='bool')
settings_maker.make_setting(config_keys.list_parent_path, True, parser='bool')
settings_maker.make_setting(config_keys.reload_timeout, 10, parser='bool')
settings_maker.make_setting(config_keys.config_file_path, '')
settings_maker.make_setting(config_keys.location_root, '/')
settings_maker.make_setting(config_keys.reload_command, '')
settings_maker.make_setting(config_keys.template, '')
svn-support: move into apps module.
r1531
env-config: use proper ALL keys reconfiguration based on env vars
r4825 settings_maker.env_expand()
svn-support: move into apps module.
r1531 # Convert negative timeout values to zero.
if settings[config_keys.reload_timeout] < 0:
settings[config_keys.reload_timeout] = 0
# Append path separator to location root.
settings[config_keys.location_root] = _append_path_sep(
settings[config_keys.location_root])
# Validate settings.
if settings[config_keys.generate_config]:
assert len(settings[config_keys.config_file_path]) > 0
def _append_path_sep(path):
"""
Append the path separator if missing.
"""
py3: remove use of pyramid.compat
r4908 if isinstance(path, str) and not path.endswith(os.path.sep):
svn-support: move into apps module.
r1531 path += os.path.sep
return path
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610
def includeme(config):
settings = config.registry.settings
_sanitize_settings_and_apply_defaults(settings)
if settings[config_keys.generate_config]:
# Add subscriber to generate the Apache mod dav svn configuration on
# repository group events.
config.add_subscriber(generate_config_subscriber, RepoGroupEvent)
# If a reload command is set add a subscriber to execute it on
# configuration changes.
reload_cmd = settings[config_keys.reload_command]
if reload_cmd:
reload_timeout = settings[config_keys.reload_timeout] or None
reload_subscriber = AsyncSubprocessSubscriber(
cmd=reload_cmd, timeout=reload_timeout)
config.add_subscriber(reload_subscriber, ModDavSvnConfigChange)