-
Notifications
You must be signed in to change notification settings - Fork 0
/
info_remote.go
161 lines (132 loc) · 3.33 KB
/
info_remote.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
package gitw
import (
"fmt"
"github.com/gookit/goutil/mathutil"
)
// remote type names
const (
RemoteTypePush = "push"
RemoteTypeFetch = "fetch"
)
// RemoteInfos map. key is type name(see RemoteTypePush)
type RemoteInfos map[string]*RemoteInfo
// FetchInfo fetch remote info
func (rs RemoteInfos) FetchInfo() *RemoteInfo {
return rs[RemoteTypeFetch]
}
// PushInfo push remote info
func (rs RemoteInfos) PushInfo() *RemoteInfo {
return rs[RemoteTypePush]
}
// RemoteInfo struct
//
// - http: "https://github.com/gookit/gitw.git"
// - git: "git@github.com:gookit/gitw.git"
type RemoteInfo struct {
// Name the repo remote name, default see DefaultRemoteName
Name string
// Type remote type. allow: push, fetch
Type string
// URL full git remote URL string.
//
// eg:
// - http: "https://github.com/gookit/gitw.git"
// - git: "git@github.com:gookit/gitw.git"
URL string
// ---- details
// Scheme the url scheme. eg: git, http, https
Scheme string
// Host name. eg: "github.com"
Host string
Port int
// the group, repo name
Group, Repo string
// Proto the type 'ssh' OR 'http'
Proto string
}
// NewRemoteInfo create
func NewRemoteInfo(name, url, typ string) (*RemoteInfo, error) {
r := &RemoteInfo{
Name: name,
URL: url,
Type: typ,
}
if err := ParseRemoteURL(url, r); err != nil {
return nil, err
}
return r, nil
}
// NewEmptyRemoteInfo only with URL string.
func NewEmptyRemoteInfo(URL string) *RemoteInfo {
return &RemoteInfo{
Name: DefaultRemoteName,
URL: URL,
Type: RemoteTypePush,
}
}
// Valid check
func (r *RemoteInfo) Valid() bool {
return r.URL != ""
}
// Invalid check
func (r *RemoteInfo) Invalid() bool {
return r.URL == ""
}
// GitURL build. eg: "git@github.com:gookit/gitw.git"
func (r *RemoteInfo) GitURL() string {
return SchemeGIT + "@" + r.Host + ":" + r.Group + "/" + r.Repo + ".git"
}
// RawURLOfHTTP get remote url, if RemoteInfo.URL is git proto, build an HTTPS url.
func (r *RemoteInfo) RawURLOfHTTP() string {
return r.URLOrBuild()
}
// URLOrBuild get remote HTTP url, if RemoteInfo.URL is git proto, build an HTTPS url.
func (r *RemoteInfo) URLOrBuild() string {
if r.Proto == ProtoHTTP {
return r.URL
}
return r.buildHTTPURL(true)
}
// URLOfHTTP build an HTTP url.
func (r *RemoteInfo) URLOfHTTP() string {
return r.buildHTTPURL(false)
}
// URLOfHTTPS build an HTTPS url.
func (r *RemoteInfo) URLOfHTTPS() string {
return r.buildHTTPURL(true)
}
// URLOfHTTPS build an HTTP(S) url.
func (r *RemoteInfo) buildHTTPURL(toHttps bool) string {
schema := SchemeHTTP
if toHttps {
schema = SchemeHTTPS
}
return schema + "://" + r.Host + "/" + r.Group + "/" + r.Repo
}
// HTTPHost URL build. return like: https://github.com
func (r *RemoteInfo) HTTPHost(disableHttps ...bool) string {
if len(disableHttps) > 0 && disableHttps[0] {
return SchemeHTTP + "://" + r.Host
}
schema := r.Scheme
if r.Proto != ProtoHTTP {
schema = SchemeHTTPS
}
return schema + "://" + r.Host
}
// Path string
func (r *RemoteInfo) Path() string {
return r.RepoPath()
}
// RepoPath string
func (r *RemoteInfo) RepoPath() string {
return r.Group + "/" + r.Repo
}
// String remote info to string.
func (r *RemoteInfo) String() string {
return fmt.Sprintf("%s %s (%s)", r.Name, r.URL, r.Type)
}
// HostWithPort host with port
func (r *RemoteInfo) HostWithPort() string {
return r.Host + ":" + mathutil.String(r.Port)
}