-
Notifications
You must be signed in to change notification settings - Fork 128
/
repo_reference.go
296 lines (258 loc) · 9.18 KB
/
repo_reference.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// Copyright 2015 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package git
import (
"errors"
"strings"
"time"
)
const (
RefsHeads = "refs/heads/"
RefsTags = "refs/tags/"
)
// RefShortName returns short name of heads or tags. Other references will
// return original string.
func RefShortName(ref string) string {
if strings.HasPrefix(ref, RefsHeads) {
return ref[len(RefsHeads):]
} else if strings.HasPrefix(ref, RefsTags) {
return ref[len(RefsTags):]
}
return ref
}
// Reference contains information of a Git reference.
type Reference struct {
ID string
Refspec string
}
// ShowRefVerifyOptions contains optional arguments for verifying a reference.
//
// Docs: https://git-scm.com/docs/git-show-ref#Documentation/git-show-ref.txt---verify
type ShowRefVerifyOptions struct {
// The timeout duration before giving up for each shell command execution. The
// default timeout duration will be used when not supplied.
//
// Deprecated: Use CommandOptions.Timeout instead.
Timeout time.Duration
// The additional options to be passed to the underlying git.
CommandOptions
}
var ErrReferenceNotExist = errors.New("reference does not exist")
// ShowRefVerify returns the commit ID of given reference if it exists in the
// repository in given path.
func ShowRefVerify(repoPath, ref string, opts ...ShowRefVerifyOptions) (string, error) {
var opt ShowRefVerifyOptions
if len(opts) > 0 {
opt = opts[0]
}
cmd := NewCommand("show-ref", "--verify", ref).AddOptions(opt.CommandOptions)
stdout, err := cmd.RunInDirWithTimeout(opt.Timeout, repoPath)
if err != nil {
if strings.Contains(err.Error(), "not a valid ref") {
return "", ErrReferenceNotExist
}
return "", err
}
return strings.Split(string(stdout), " ")[0], nil
}
// Deprecated: Use ShowRefVerify instead.
func RepoShowRefVerify(repoPath, ref string, opts ...ShowRefVerifyOptions) (string, error) {
return ShowRefVerify(repoPath, ref, opts...)
}
// ShowRefVerify returns the commit ID of given reference (e.g.
// "refs/heads/master") if it exists in the repository.
func (r *Repository) ShowRefVerify(ref string, opts ...ShowRefVerifyOptions) (string, error) {
return ShowRefVerify(r.path, ref, opts...)
}
// BranchCommitID returns the commit ID of given branch if it exists in the
// repository. The branch must be given in short name e.g. "master".
func (r *Repository) BranchCommitID(branch string, opts ...ShowRefVerifyOptions) (string, error) {
return r.ShowRefVerify(RefsHeads+branch, opts...)
}
// TagCommitID returns the commit ID of given tag if it exists in the
// repository. The tag must be given in short name e.g. "v1.0.0".
func (r *Repository) TagCommitID(tag string, opts ...ShowRefVerifyOptions) (string, error) {
return r.ShowRefVerify(RefsTags+tag, opts...)
}
// RepoHasReference returns true if given reference exists in the repository in
// given path. The reference must be given in full refspec, e.g.
// "refs/heads/master".
func RepoHasReference(repoPath, ref string, opts ...ShowRefVerifyOptions) bool {
_, err := ShowRefVerify(repoPath, ref, opts...)
return err == nil
}
// RepoHasBranch returns true if given branch exists in the repository in given
// path. The branch must be given in short name e.g. "master".
func RepoHasBranch(repoPath, branch string, opts ...ShowRefVerifyOptions) bool {
return RepoHasReference(repoPath, RefsHeads+branch, opts...)
}
// HasTag returns true if given tag exists in the repository in given path. The
// tag must be given in short name e.g. "v1.0.0".
func HasTag(repoPath, tag string, opts ...ShowRefVerifyOptions) bool {
return RepoHasReference(repoPath, RefsTags+tag, opts...)
}
// Deprecated: Use HasTag instead.
func RepoHasTag(repoPath, tag string, opts ...ShowRefVerifyOptions) bool {
return HasTag(repoPath, tag, opts...)
}
// HasReference returns true if given reference exists in the repository. The
// reference must be given in full refspec, e.g. "refs/heads/master".
func (r *Repository) HasReference(ref string, opts ...ShowRefVerifyOptions) bool {
return RepoHasReference(r.path, ref, opts...)
}
// HasBranch returns true if given branch exists in the repository. The branch
// must be given in short name e.g. "master".
func (r *Repository) HasBranch(branch string, opts ...ShowRefVerifyOptions) bool {
return RepoHasBranch(r.path, branch, opts...)
}
// HasTag returns true if given tag exists in the repository. The tag must be
// given in short name e.g. "v1.0.0".
func (r *Repository) HasTag(tag string, opts ...ShowRefVerifyOptions) bool {
return HasTag(r.path, tag, opts...)
}
// SymbolicRefOptions contains optional arguments for get and set symbolic ref.
type SymbolicRefOptions struct {
// The name of the symbolic ref. When not set, default ref "HEAD" is used.
Name string
// The name of the reference, e.g. "refs/heads/master". When set, it will be
// used to update the symbolic ref.
Ref string
// The timeout duration before giving up for each shell command execution. The
// default timeout duration will be used when not supplied.
//
// Deprecated: Use CommandOptions.Timeout instead.
Timeout time.Duration
// The additional options to be passed to the underlying git.
CommandOptions
}
// SymbolicRef returns the reference name (e.g. "refs/heads/master") pointed by
// the symbolic ref in the repository in given path. It returns an empty string
// and nil error when doing set operation.
func SymbolicRef(repoPath string, opts ...SymbolicRefOptions) (string, error) {
var opt SymbolicRefOptions
if len(opts) > 0 {
opt = opts[0]
}
cmd := NewCommand("symbolic-ref").AddOptions(opt.CommandOptions)
if opt.Name == "" {
opt.Name = "HEAD"
}
cmd.AddArgs(opt.Name)
if opt.Ref != "" {
cmd.AddArgs(opt.Ref)
}
stdout, err := cmd.RunInDirWithTimeout(opt.Timeout, repoPath)
if err != nil {
return "", err
}
return strings.TrimSpace(string(stdout)), nil
}
// SymbolicRef returns the reference name (e.g. "refs/heads/master") pointed by
// the symbolic ref. It returns an empty string and nil error when doing set
// operation.
func (r *Repository) SymbolicRef(opts ...SymbolicRefOptions) (string, error) {
return SymbolicRef(r.path, opts...)
}
// ShowRefOptions contains optional arguments for listing references.
//
// Docs: https://git-scm.com/docs/git-show-ref
type ShowRefOptions struct {
// Indicates whether to include heads.
Heads bool
// Indicates whether to include tags.
Tags bool
// The list of patterns to filter results.
Patterns []string
// The timeout duration before giving up for each shell command execution. The
// default timeout duration will be used when not supplied.
//
// Deprecated: Use CommandOptions.Timeout instead.
Timeout time.Duration
// The additional options to be passed to the underlying git.
CommandOptions
}
// ShowRef returns a list of references in the repository.
func (r *Repository) ShowRef(opts ...ShowRefOptions) ([]*Reference, error) {
var opt ShowRefOptions
if len(opts) > 0 {
opt = opts[0]
}
cmd := NewCommand("show-ref").AddOptions(opt.CommandOptions)
if opt.Heads {
cmd.AddArgs("--heads")
}
if opt.Tags {
cmd.AddArgs("--tags")
}
cmd.AddArgs("--")
if len(opt.Patterns) > 0 {
cmd.AddArgs(opt.Patterns...)
}
stdout, err := cmd.RunInDirWithTimeout(opt.Timeout, r.path)
if err != nil {
return nil, err
}
lines := strings.Split(string(stdout), "\n")
refs := make([]*Reference, 0, len(lines))
for i := range lines {
fields := strings.Fields(lines[i])
if len(fields) != 2 {
continue
}
refs = append(refs, &Reference{
ID: fields[0],
Refspec: fields[1],
})
}
return refs, nil
}
// Branches returns a list of all branches in the repository.
func (r *Repository) Branches() ([]string, error) {
heads, err := r.ShowRef(ShowRefOptions{Heads: true})
if err != nil {
return nil, err
}
branches := make([]string, len(heads))
for i := range heads {
branches[i] = strings.TrimPrefix(heads[i].Refspec, RefsHeads)
}
return branches, nil
}
// DeleteBranchOptions contains optional arguments for deleting a branch.
//
// Docs: https://git-scm.com/docs/git-branch
type DeleteBranchOptions struct {
// Indicates whether to force delete the branch.
Force bool
// The timeout duration before giving up for each shell command execution. The
// default timeout duration will be used when not supplied.
//
// Deprecated: Use CommandOptions.Timeout instead.
Timeout time.Duration
// The additional options to be passed to the underlying git.
CommandOptions
}
// DeleteBranch deletes the branch from the repository in given path.
func DeleteBranch(repoPath, name string, opts ...DeleteBranchOptions) error {
var opt DeleteBranchOptions
if len(opts) > 0 {
opt = opts[0]
}
cmd := NewCommand("branch").AddOptions(opt.CommandOptions)
if opt.Force {
cmd.AddArgs("-D")
} else {
cmd.AddArgs("-d")
}
_, err := cmd.AddArgs(name).RunInDirWithTimeout(opt.Timeout, repoPath)
return err
}
// Deprecated: Use DeleteBranch instead.
func RepoDeleteBranch(repoPath, name string, opts ...DeleteBranchOptions) error {
return DeleteBranch(repoPath, name, opts...)
}
// DeleteBranch deletes the branch from the repository.
func (r *Repository) DeleteBranch(name string, opts ...DeleteBranchOptions) error {
return DeleteBranch(r.path, name, opts...)
}