##// END OF EJS Templates
scm-app: allow to set documented pyro4 as scm_app_implementation....
scm-app: allow to set documented pyro4 as scm_app_implementation. The documented ini setting allows to set pyro4 as scm_app, while the backend code crashes on import of pyro4 module. This change allows to configure the app based on the .ini docs. if we pass pyro4 as backedn, we simply skip import and use the default pyro4 scm_app

File last commit:

r574:0b49cf74 default
r632:064401fe default
Show More
utils.py
83 lines | 2.9 KiB | text/x-python | PythonLexer
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 # -*- coding: utf-8 -*-
# Copyright (C) 2016-2016 RhodeCode GmbH
#
# 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/
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 import logging
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 import os
from pyramid.renderers import render
Martin Bornhold
svn: Add rhodecode realm to subversion configuration generation.
r574 from rhodecode.lib.utils import get_rhodecode_realm
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 from rhodecode.model.db import RepoGroup
Martin Bornhold
svn: Rename keys.py to config_keys.py
r567 from . import config_keys
Martin Bornhold
svn: Moved code and make a small bugfix.
r563
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 log = logging.getLogger(__name__)
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 def generate_mod_dav_svn_config(settings):
"""
Generate the configuration file for use with subversion's mod_dav_svn
module. The configuration has to contain a <Location> block for each
available repository group because the mod_dav_svn module does not support
repositories organized in sub folders.
"""
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 config = _render_mod_dav_svn_config(
settings[config_keys.parent_path_root],
settings[config_keys.list_parent_path],
settings[config_keys.location_root],
RepoGroup.get_all_repo_groups())
_write_mod_dav_svn_config(config, settings[config_keys.config_file_path])
Martin Bornhold
svn: Moved code and make a small bugfix.
r563
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 def _render_mod_dav_svn_config(
parent_path_root, list_parent_path, location_root, repo_groups):
"""
Render mod_dav_svn configuration to string.
"""
Martin Bornhold
svn: Move path computation from themplate to python.
r570 repo_group_paths = []
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 for repo_group in repo_groups:
Martin Bornhold
svn: Move path computation from themplate to python.
r570 group_path = repo_group.full_path_splitted
location = os.path.join(location_root, *group_path)
parent_path = os.path.join(parent_path_root, *group_path)
repo_group_paths.append((location, parent_path))
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 context = {
'location_root': location_root,
'parent_path_root': parent_path_root,
Martin Bornhold
svn: Move path computation from themplate to python.
r570 'repo_group_paths': repo_group_paths,
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 'svn_list_parent_path': list_parent_path,
Martin Bornhold
svn: Add rhodecode realm to subversion configuration generation.
r574 'rhodecode_realm': get_rhodecode_realm(),
Martin Bornhold
svn: Moved code and make a small bugfix.
r563 }
Martin Bornhold
svn: Move path computation from themplate to python.
r570
# Render the configuration template to string.
template = 'rhodecode:svn_support/templates/mod-dav-svn.conf.mako'
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 return render(template, context)
Martin Bornhold
svn: Moved code and make a small bugfix.
r563
Martin Bornhold
svn: Split up config generation method and do not raise exceptions on writing config to file.
r571 def _write_mod_dav_svn_config(config, filepath):
"""
Write mod_dav_svn config to file. Log on exceptions but do not raise.
"""
try:
with open(filepath, 'w') as file_:
file_.write(config)
except Exception:
log.exception(
'Can not write mod_dav_svn configuration to "%s"', filepath)