-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathproject.go
182 lines (149 loc) · 3.58 KB
/
project.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package github
import (
"errors"
"fmt"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/utils"
"net/url"
"os"
"regexp"
"strings"
)
type Project struct {
Name string
Owner string
Host string
}
func (p Project) String() string {
return fmt.Sprintf("%s/%s", p.Owner, p.Name)
}
func (p *Project) WebURL(name, owner, path string) string {
if owner == "" {
owner = p.Owner
}
if name == "" {
name = p.Name
}
ownerWithName := fmt.Sprintf("%s/%s", owner, name)
if strings.Contains(ownerWithName, ".wiki") {
ownerWithName = strings.TrimSuffix(ownerWithName, ".wiki")
if path != "wiki" {
if strings.HasPrefix(path, "commits") {
path = "_history"
} else if path != "" {
path = fmt.Sprintf("_%s", path)
}
if path != "" {
path = utils.ConcatPaths("wiki", path)
} else {
path = "wiki"
}
}
}
url := fmt.Sprintf("https://%s", utils.ConcatPaths(p.Host, ownerWithName))
if path != "" {
url = utils.ConcatPaths(url, path)
}
return url
}
func (p *Project) GitURL(name, owner string, isSSH bool) (url string) {
if name == "" {
name = p.Name
}
if owner == "" {
owner = p.Owner
}
host := rawHost(p.Host)
if useHttpProtocol() {
url = fmt.Sprintf("https://%s/%s/%s.git", host, owner, name)
} else if isSSH {
url = fmt.Sprintf("git@%s:%s/%s.git", host, owner, name)
} else {
url = fmt.Sprintf("git://%s/%s/%s.git", host, owner, name)
}
return url
}
// Remove the scheme from host when the credential url is absolute.
func rawHost(host string) string {
u, err := url.Parse(host)
utils.Check(err)
if u.IsAbs() {
return u.Host
} else {
return u.Path
}
}
func useHttpProtocol() bool {
https := os.Getenv("GH_PROTOCOL")
if https == "" {
https, _ = git.Config("gh.protocol")
}
return https == "https"
}
func NewProjectFromURL(url *url.URL) (p *Project, err error) {
if !knownHosts().Include(url.Host) {
err = fmt.Errorf("Invalid GitHub URL: %s", url)
return
}
parts := strings.SplitN(url.Path, "/", 4)
if len(parts) <= 2 {
err = fmt.Errorf("Invalid GitHub URL: %s", url)
return
}
name := strings.TrimSuffix(parts[2], ".git")
p = NewProject(parts[1], name, url.Host)
return
}
func NewProject(owner, name, host string) *Project {
if strings.Contains(owner, "/") {
result := strings.SplitN(owner, "/", 2)
owner = result[0]
if name == "" {
name = result[1]
}
} else if strings.Contains(name, "/") {
result := strings.SplitN(name, "/", 2)
if owner == "" {
owner = result[0]
}
name = result[1]
}
if host == "" {
host = DefaultHost()
}
if owner == "" {
c := CurrentConfigs().PromptFor(host)
owner = c.User
}
if name == "" {
name, _ = utils.DirName()
}
return &Project{Name: name, Owner: owner, Host: host}
}
func parseOwnerAndName(remote string) (owner string, name string) {
url, err := mustMatchGitHubURL(remote)
utils.Check(err)
return url[1], url[2]
}
func MatchURL(url string) []string {
httpRegex := regexp.MustCompile("https://github\\.com/(.+)/(.+?)(\\.git|$)")
if httpRegex.MatchString(url) {
return httpRegex.FindStringSubmatch(url)
}
readOnlyRegex := regexp.MustCompile("git://.*github\\.com/(.+)/(.+?)(\\.git|$)")
if readOnlyRegex.MatchString(url) {
return readOnlyRegex.FindStringSubmatch(url)
}
sshRegex := regexp.MustCompile("git@github\\.com:(.+)/(.+?)(\\.git|$)")
if sshRegex.MatchString(url) {
return sshRegex.FindStringSubmatch(url)
}
return nil
}
func mustMatchGitHubURL(url string) ([]string, error) {
githubURL := MatchURL(url)
if githubURL == nil {
return nil, errors.New("The origin remote doesn't point to a GitHub repository: " + url)
}
return githubURL, nil
}