##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r5356:99a91100 default
r5365:ae8a165b default
Show More
utils.py
97 lines | 3.5 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/
import codecs
import logging
import os
from pyramid.renderers import render
from rhodecode.events import trigger
feat(repo_path-config): moved main storage location path into ini file. Fixes: RCCE-61
r5356 from rhodecode.lib.utils import get_rhodecode_realm, get_rhodecode_repo_store_path
svn-support: move into apps module.
r1531 from rhodecode.lib.utils2 import str2bool
from rhodecode.model.db import RepoGroup
from . import config_keys
from .events import ModDavSvnConfigChange
log = logging.getLogger(__name__)
svn: split generate and write parts for easier usage in automation scripts.
r3223 def write_mod_dav_svn_config(settings):
use_ssl = str2bool(settings['force_https'])
svn: expose file path for generated config.
r4337 file_path = settings[config_keys.config_file_path]
svn-support: move into apps module.
r1531 config = _render_mod_dav_svn_config(
use_ssl=use_ssl,
feat(repo_path-config): moved main storage location path into ini file. Fixes: RCCE-61
r5356 parent_path_root=get_rhodecode_repo_store_path(),
svn-support: move into apps module.
r1531 list_parent_path=settings[config_keys.list_parent_path],
location_root=settings[config_keys.location_root],
repo_groups=RepoGroup.get_all_repo_groups(),
svn: allow specifying alternative template file for mod_dav config.
r2161 realm=get_rhodecode_realm(), template=settings[config_keys.template])
svn: expose file path for generated config.
r4337 _write_mod_dav_svn_config(config, file_path)
return file_path
svn-support: move into apps module.
r1531
svn: split generate and write parts for easier usage in automation scripts.
r3223
def generate_mod_dav_svn_config(registry):
"""
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.
"""
settings = registry.settings
svn: expose file path for generated config.
r4337 file_path = write_mod_dav_svn_config(settings)
svn: split generate and write parts for easier usage in automation scripts.
r3223
svn-support: move into apps module.
r1531 # Trigger an event on mod dav svn configuration change.
trigger(ModDavSvnConfigChange(), registry)
svn: expose file path for generated config.
r4337 return file_path
svn-support: move into apps module.
r1531
code: small fixes/whitespace/logging
r4872
svn-support: move into apps module.
r1531 def _render_mod_dav_svn_config(
parent_path_root, list_parent_path, location_root, repo_groups, realm,
svn: allow specifying alternative template file for mod_dav config.
r2161 use_ssl, template):
svn-support: move into apps module.
r1531 """
Render mod_dav_svn configuration to string.
"""
repo_group_paths = []
for repo_group in repo_groups:
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))
context = {
'location_root': location_root,
'parent_path_root': parent_path_root,
'repo_group_paths': repo_group_paths,
'svn_list_parent_path': list_parent_path,
'rhodecode_realm': realm,
svn: allow specifying alternative template file for mod_dav config.
r2161 'use_https': use_ssl,
svn-support: move into apps module.
r1531 }
svn: allow specifying alternative template file for mod_dav config.
r2161 template = template or \
'rhodecode:apps/svn_support/templates/mod-dav-svn.conf.mako'
svn-support: move into apps module.
r1531 # Render the configuration template to string.
return render(template, context)
def _write_mod_dav_svn_config(config, filepath):
"""
Write mod_dav_svn config to file.
"""
with codecs.open(filepath, 'w', encoding='utf-8') as f:
f.write(config)