mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-12 08:00:05 +01:00
git ssh cloning via git+ssh
This is nice when you're not running your repository on Github, or have a private repository.
This commit is contained in:
parent
562ffd6486
commit
004e9f3f99
1 changed files with 67 additions and 2 deletions
|
|
@ -45,7 +45,11 @@ var (
|
||||||
initActionName,
|
initActionName,
|
||||||
installActionName,
|
installActionName,
|
||||||
}
|
}
|
||||||
gitSSHRegex = regexp.MustCompile("git@([^:])([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)")
|
gitSSHRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git")
|
||||||
|
gitSSHWithVersionRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git@(.*)")
|
||||||
|
gitSSHWithPathRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git/(.*)")
|
||||||
|
gitSSHWithPathAndVersionRegex = regexp.MustCompile("git\\+ssh://git@([^:]+):([^/]+)/([^/]+).git/(.*)@(.*)")
|
||||||
|
|
||||||
githubSlugRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)")
|
githubSlugRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)")
|
||||||
githubSlugWithVersionRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)@(.*)")
|
githubSlugWithVersionRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)@(.*)")
|
||||||
githubSlugWithPathRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/(.*)")
|
githubSlugWithPathRegex = regexp.MustCompile("github.com/([-_a-zA-Z0-9]+)/([-_a-zA-Z0-9]+)/(.*)")
|
||||||
|
|
@ -101,6 +105,67 @@ func initCommand() int {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseDepedency(urlString string) *spec.Dependency {
|
||||||
|
if spec := parseGitSSHDependency(urlString); spec != nil {
|
||||||
|
return spec
|
||||||
|
}
|
||||||
|
|
||||||
|
if spec := parseGithubDependency(urlString); spec != nil {
|
||||||
|
return spec
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseGitSSHDependency(urlString string) *spec.Dependency {
|
||||||
|
if !gitSSHRegex.MatchString(urlString) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
subdir := ""
|
||||||
|
host := ""
|
||||||
|
org := ""
|
||||||
|
repo := ""
|
||||||
|
version := "master"
|
||||||
|
|
||||||
|
if gitSSHWithPathAndVersionRegex.MatchString(urlString) {
|
||||||
|
matches := gitSSHWithPathAndVersionRegex.FindStringSubmatch(urlString)
|
||||||
|
host = matches[1]
|
||||||
|
org = matches[2]
|
||||||
|
repo = matches[3]
|
||||||
|
subdir = matches[4]
|
||||||
|
version = matches[5]
|
||||||
|
} else if gitSSHWithPathRegex.MatchString(urlString) {
|
||||||
|
matches := gitSSHWithPathRegex.FindStringSubmatch(urlString)
|
||||||
|
host = matches[1]
|
||||||
|
org = matches[2]
|
||||||
|
repo = matches[3]
|
||||||
|
subdir = matches[4]
|
||||||
|
} else if gitSSHWithVersionRegex.MatchString(urlString) {
|
||||||
|
matches := gitSSHWithVersionRegex.FindStringSubmatch(urlString)
|
||||||
|
host = matches[1]
|
||||||
|
org = matches[2]
|
||||||
|
repo = matches[3]
|
||||||
|
version = matches[4]
|
||||||
|
} else {
|
||||||
|
matches := gitSSHRegex.FindStringSubmatch(urlString)
|
||||||
|
host = matches[1]
|
||||||
|
org = matches[2]
|
||||||
|
repo = matches[3]
|
||||||
|
}
|
||||||
|
|
||||||
|
return &spec.Dependency{
|
||||||
|
Name: repo,
|
||||||
|
Source: spec.Source{
|
||||||
|
GitSource: &spec.GitSource{
|
||||||
|
Remote: fmt.Sprintf("git@%s:%s/%s", host, org, repo),
|
||||||
|
Subdir: subdir,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Version: version,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func parseGithubDependency(urlString string) *spec.Dependency {
|
func parseGithubDependency(urlString string) *spec.Dependency {
|
||||||
if !githubSlugRegex.MatchString(urlString) {
|
if !githubSlugRegex.MatchString(urlString) {
|
||||||
return nil
|
return nil
|
||||||
|
|
@ -171,7 +236,7 @@ func installCommand(jsonnetHome string, urls ...*url.URL) int {
|
||||||
// github.com/(slug)/(dir)
|
// github.com/(slug)/(dir)
|
||||||
|
|
||||||
urlString := url.String()
|
urlString := url.String()
|
||||||
newDep := parseGithubDependency(urlString)
|
newDep := parseDepedency(urlString)
|
||||||
if newDep == nil {
|
if newDep == nil {
|
||||||
kingpin.Errorf("ignoring unrecognized url: %s", url)
|
kingpin.Errorf("ignoring unrecognized url: %s", url)
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue