Move ssh filter into regex and use list.insert in path

This commit is contained in:
Mads Oestergaard 2024-02-02 10:50:52 +01:00
parent 04fa8a9a86
commit f640eb6707

View File

@ -219,13 +219,15 @@ class VCS(object):
return branch
# parse scp-like git ssh URLs, e.g: git@host:user/project.git
# or git@ssh.dev.azure.com:v3/org/project/repo
SSH_URL_GIT_SYNTAX = re.compile(
r"""
^
(?:(?P<user>{regular}*?)@)?
(?:ssh\.)?
(?P<host>{regular}*?)
:
(?:v3/)? # present in azure ssh urls
(?:v3/)?
(?P<path>{regular}.*)?
$
""".format(
@ -255,14 +257,12 @@ class VCS(object):
if match:
user, host, path = match.groups()
# handle special azure cases
if "ssh" and "azure" in host:
host = host.replace("ssh.", "")
# azure http url is different than ssh url
# the format is https://dev.azure.com/{organization}/{project}/_git/{repo}
# handle the dev.azure format by inserting _git between project and repo
# as format is https://dev.azure.com/{organization}/{project}/_git/{repo}
if "azure" in host:
path_components = path.split("/")
path = "/".join(path_components[:-1]) + "/_git/" + path_components[-1]
path_components.insert(-1, "_git")
path = "/".join(path_components)
return (
furl()