##// END OF EJS Templates
release: Finish preparation for 4.25.2
release: Finish preparation for 4.25.2

File last commit:

r894:5a847e1a default
r942:8610c4bf v4.25.2 stable
Show More
base.py
130 lines | 4.2 KiB | text/x-python | PythonLexer
initial commit
r0 # RhodeCode VCSServer provides access to different vcs backends via network.
code: update copyrights to 2020
r850 # Copyright (C) 2014-2020 RhodeCode GmbH
initial commit
r0 #
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# 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 General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
archive: implemented efficient way to perform archive for each repository.
r894 import os
exception-handling: better handling of remote exception and logging....
r171 import sys
import traceback
initial commit
r0 import logging
remote-clone: obfuscate also given query string paramas that RhodeCode uses. Fixes #4668
r106 import urlparse
initial commit
r0
archive: implemented efficient way to perform archive for each repository.
r894 from vcsserver import exceptions
from vcsserver.exceptions import NoContentException
from vcsserver.hgcompat import (archival)
caches: replaced beaker with dogpile cache.
r483 from vcsserver.lib.rc_cache import region_meta
initial commit
r0 log = logging.getLogger(__name__)
class RepoFactory(object):
"""
Utility to create instances of repository
It provides internal caching of the `repo` object based on
the :term:`call context`.
"""
caches: replaced beaker with dogpile cache.
r483 repo_type = None
initial commit
r0
caches: replaced beaker with dogpile cache.
r483 def __init__(self):
self._cache_region = region_meta.dogpile_cache_regions['repo_object']
initial commit
r0
def _create_config(self, path, config):
config = {}
return config
def _create_repo(self, wire, create):
raise NotImplementedError()
def repo(self, wire, create=False):
git: switched most git operations to libgit2
r725 raise NotImplementedError()
remote-clone: obfuscate also given query string paramas that RhodeCode uses. Fixes #4668
r106
def obfuscate_qs(query_string):
parse_qs: improved parsing of query string for obfuscation.
r107 if query_string is None:
return None
remote-clone: obfuscate also given query string paramas that RhodeCode uses. Fixes #4668
r106 parsed = []
parse_qs: improved parsing of query string for obfuscation.
r107 for k, v in urlparse.parse_qsl(query_string, keep_blank_values=True):
remote-clone: obfuscate also given query string paramas that RhodeCode uses. Fixes #4668
r106 if k in ['auth_token', 'api_key']:
v = "*****"
parsed.append((k, v))
parse_qs: improved parsing of query string for obfuscation.
r107 return '&'.join('{}{}'.format(
k, '={}'.format(v) if v else '') for k, v in parsed)
exception-handling: better handling of remote exception and logging....
r171
def raise_from_original(new_type):
"""
Raise a new exception type with original args and traceback.
"""
exc_type, exc_value, exc_traceback = sys.exc_info()
exception: store orginal tb and exc inside the new exception passed to rhodecode from vcsserver.
r621 new_exc = new_type(*exc_value.args)
# store the original traceback into the new exc
new_exc._org_exc_tb = traceback.format_exc(exc_traceback)
exception-handling: better handling of remote exception and logging....
r171
try:
exception: store orginal tb and exc inside the new exception passed to rhodecode from vcsserver.
r621 raise new_exc, None, exc_traceback
exception-handling: better handling of remote exception and logging....
r171 finally:
del exc_traceback
archive: implemented efficient way to perform archive for each repository.
r894
class ArchiveNode(object):
def __init__(self, path, mode, is_link, raw_bytes):
self.path = path
self.mode = mode
self.is_link = is_link
self.raw_bytes = raw_bytes
def archive_repo(walker, archive_dest_path, kind, mtime, archive_at_path,
archive_dir_name, commit_id, write_metadata=True, extra_metadata=None):
"""
walker should be a file walker, for example:
def walker():
for file_info in files:
yield ArchiveNode(fn, mode, is_link, ctx[fn].data)
"""
extra_metadata = extra_metadata or {}
if kind == "tgz":
archiver = archival.tarit(archive_dest_path, mtime, "gz")
elif kind == "tbz2":
archiver = archival.tarit(archive_dest_path, mtime, "bz2")
elif kind == 'zip':
archiver = archival.zipit(archive_dest_path, mtime)
else:
raise exceptions.ArchiveException()(
'Remote does not support: "%s" archive type.' % kind)
for f in walker(commit_id, archive_at_path):
f_path = os.path.join(archive_dir_name, f.path.lstrip('/'))
try:
archiver.addfile(f_path, f.mode, f.is_link, f.raw_bytes())
except NoContentException:
# NOTE(marcink): this is a special case for SVN so we can create "empty"
# directories which arent supported by archiver
archiver.addfile(os.path.join(f_path, '.dir'), f.mode, f.is_link, '')
if write_metadata:
metadata = dict([
('commit_id', commit_id),
('mtime', mtime),
])
metadata.update(extra_metadata)
meta = ["%s:%s" % (f_name, value) for f_name, value in metadata.items()]
f_path = os.path.join(archive_dir_name, '.archival.txt')
archiver.addfile(f_path, 0o644, False, '\n'.join(meta))
return archiver.done()