forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git_url.go
88 lines (76 loc) · 2.14 KB
/
git_url.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package gits
import (
"fmt"
"github.com/jenkins-x/jx/pkg/util"
"net/url"
"strings"
)
const (
GitHubHost = "github.com"
gitPrefix = "git@"
)
type GitRepositoryInfo struct {
URL string
Scheme string
Host string
Organisation string
Name string
}
func (i *GitRepositoryInfo) IsGitHub() bool {
return GitHubHost == i.Host
}
// PullRequestURL returns the URL of a pull request of the given name/number
func (i *GitRepositoryInfo) PullRequestURL(prName string) string {
return util.UrlJoin("https://"+i.Host, i.Organisation, i.Name, "pull", prName)
}
// HttpCloneURL returns the HTTPS git URL this repository
func (i *GitRepositoryInfo) HttpCloneURL() string {
return util.UrlJoin("https://"+i.Host, i.Organisation, i.Name) + ".git"
}
// ParseGitURL attempts to parse the given text as a URL or git URL-like string to determine
// the protocol, host, organisation and name
func ParseGitURL(text string) (*GitRepositoryInfo, error) {
answer := GitRepositoryInfo{
URL: text,
}
u, err := url.Parse(text)
if err == nil && u != nil {
answer.Host = u.Host
// lets default to github
if answer.Host == "" {
answer.Host = GitHubHost
}
if answer.Scheme == "" {
answer.Scheme = "https"
}
answer.Scheme = u.Scheme
return parsePath(u.Path, &answer)
}
// handle git@ kinds of URIs
if strings.HasPrefix(text, gitPrefix) {
t := strings.TrimPrefix(text, gitPrefix)
t = strings.TrimPrefix(t, "/")
t = strings.TrimPrefix(t, "/")
t = strings.TrimSuffix(t, "/")
t = strings.TrimSuffix(t, ".git")
arr := util.RegexpSplit(t, ":|/")
if len(arr) >= 3 {
answer.Scheme = "git"
answer.Host = arr[0]
answer.Organisation = arr[1]
answer.Name = arr[2]
return &answer, nil
}
}
return nil, fmt.Errorf("Could not parse git url %s", text)
}
func parsePath(path string, info *GitRepositoryInfo) (*GitRepositoryInfo, error) {
arr := strings.Split(strings.TrimPrefix(path, "/"), "/")
if len(arr) >= 2 {
info.Organisation = arr[0]
info.Name = strings.TrimSuffix(arr[1], ".git")
return info, nil
} else {
return info, fmt.Errorf("Invalid path %s could not determine organisation and repository name")
}
}