##// 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:

r5326:cede61e3 default
r5496:cab50adf default
Show More
git.py
86 lines | 2.9 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
ssh-support: enabled full handling of all backends via SSH....
r2187 #
# 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 sys
import logging
feat(ssh-wrapper): added pre/post pull hooks on top of git for ssh backend....
r5302 import subprocess
ssh-support: enabled full handling of all backends via SSH....
r2187
feat(ssh-wrapper): added pre/post pull hooks on top of git for ssh backend....
r5302 from vcsserver import hooks
refactor(ssh-wrapper): changed SSHVcsServer to SshVcsServer, updated call_service_api method.
r5326 from .base import SshVcsServer
ssh-support: enabled full handling of all backends via SSH....
r2187
log = logging.getLogger(__name__)
class GitTunnelWrapper(object):
process = None
def __init__(self, server):
self.server = server
self.stdin = sys.stdin
self.stdout = sys.stdout
def create_hooks_env(self):
pass
def command(self):
root = self.server.get_root_store()
command = "cd {root}; {git_path} {mode} '{root}{repo_name}'".format(
root=root, git_path=self.server.git_path,
mode=self.server.repo_mode, repo_name=self.server.repo_name)
log.debug("Final CMD: %s", command)
return command
def run(self, extras):
action = "push" if self.server.repo_mode == "receive-pack" else "pull"
exit_code = self.server._check_permissions(action)
if exit_code:
return exit_code
feat(ssh-wrapper): added pre/post pull hooks on top of git for ssh backend....
r5302 scm_extras = self.server.update_environment(action=action, extras=extras)
fix(ssh): add pull fix into pre_pull hook
r5303 if action == "pull":
hook_response = hooks.git_pre_pull(scm_extras)
pre_pull_messages = hook_response.output
sys.stdout.write(pre_pull_messages)
feat(ssh-wrapper): added pre/post pull hooks on top of git for ssh backend....
r5302
ssh-support: enabled full handling of all backends via SSH....
r2187 self.create_hooks_env()
feat(ssh-wrapper): added pre/post pull hooks on top of git for ssh backend....
r5302 result = subprocess.run(self.command(), shell=True)
result = result.returncode
# Upload-pack == clone
if action == "pull":
hook_response = hooks.git_post_pull(scm_extras)
post_pull_messages = hook_response.output
sys.stderr.write(post_pull_messages)
return result
ssh-support: enabled full handling of all backends via SSH....
r2187
refactor(ssh-wrapper): changed SSHVcsServer to SshVcsServer, updated call_service_api method.
r5326 class GitServer(SshVcsServer):
ssh-support: enabled full handling of all backends via SSH....
r2187 backend = 'git'
statsd/audit-logs: cleanup push/pull user agent code....
r4858 repo_user_agent = 'git'
ssh-support: enabled full handling of all backends via SSH....
r2187
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325 def __init__(self, store, ini_path, repo_name, repo_mode, user, user_permissions, settings, env):
super().__init__(user, user_permissions, settings, env)
ssh-support: enabled full handling of all backends via SSH....
r2187
self.store = store
self.ini_path = ini_path
self.repo_name = repo_name
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325 self._path = self.git_path = settings['ssh.executable.git']
ssh-support: enabled full handling of all backends via SSH....
r2187
self.repo_mode = repo_mode
self.tunnel = GitTunnelWrapper(server=self)