forked from Masterminds/vcs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
git.go
611 lines (521 loc) · 17.4 KB
/
git.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
package vcs
import (
"bytes"
"encoding/xml"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"sync"
"time"
"github.com/sirupsen/logrus"
)
var (
repoMap sync.Map
)
// NewGitRepo creates a new instance of GitRepo. The remote and local directories
// need to be passed in.
func NewGitRepo(remote, local string) (*GitRepo, error) {
ins := depInstalled("git")
if !ins {
return nil, NewLocalError("git is not installed", nil, "")
}
ltype, err := DetectVcsFromFS(local)
// Found a VCS other than Git. Need to report an error.
if err == nil && ltype != Git {
return nil, ErrWrongVCS
}
r := &GitRepo{}
r.setRemote(remote)
r.setLocalPath(local)
r.RemoteLocation = "origin"
r.Logger = Logger
// Make sure the local Git repo is configured the same as the remote when
// A remote value was passed in.
if err == nil && r.CheckLocal() {
c := exec.Command("git", "config", "--get", "remote.origin.url")
c.Dir = local
c.Env = envForDir(c.Dir)
out, err := c.CombinedOutput()
if err != nil {
return nil, NewLocalError("Unable to retrieve local repo information", err, string(out))
}
localRemote := strings.TrimSpace(string(out))
if remote != "" && localRemote != remote {
return nil, ErrWrongRemote
}
// If no remote was passed in but one is configured for the locally
// checked out Git repo use that one.
if remote == "" && localRemote != "" {
r.setRemote(localRemote)
}
}
return r, nil
}
// GitRepo implements the Repo interface for the Git source control.
type GitRepo struct {
base
RemoteLocation string
}
type TempRepo struct {
fun string
rawPkg string
remote string
local string
branch string
RemoteLocation string
out string
buf []int
}
// Vcs retrieves the underlying VCS being implemented.
func (s GitRepo) Vcs() Type {
return Git
}
// Sets the branch of the current clone on the repository.
func (s *GitRepo) SetCloneBranch(branch string) {
s.setBranch(branch)
}
// Sets the import package on the repository.
func (s *GitRepo) SetPkg(pkg string) {
s.setRawPkg(pkg)
}
// Get is used to perform an initial clone of a repository.
func (s *GitRepo) Get() error {
remote := s.Remote()
local := s.LocalPath()
branch := s.Branch()
logrus.Infoln("0----------->", remote)
repoValue := &TempRepo{
fun: "[GET]",
rawPkg: s.rawPkg,
remote: s.remote,
local: s.local,
branch: s.branch,
RemoteLocation: s.RemoteLocation,
}
var out []byte
var err error
if branch == "" {
for i := 1; i < 50; i++ {
err = nil
repoValue.out = ""
out, err = s.run("git", "clone", "--recursive", remote, local)
if err == nil {
break
}
repoValue.out = string(out)
logrus.Warnfp(fmt.Sprintf("【times:%d】", i), s.value, repoValue)
}
} else {
ok := false
for i := 1; i < 50; i++ {
err = nil
repoValue.out = ""
if !ok {
out, err = s.run("git", "clone", "--recursive", "-b", branch, remote, local)
if err == nil {
break
}
repoValue.out = string(out)
}
outMsg := fmt.Sprintf("Remote branch %s not found in upstream", branch)
if strings.Contains(repoValue.out, outMsg) {
ok = true
}
if ok {
out, err = s.run("git", "clone", "--recursive", remote, local)
if err == nil {
break
}
repoValue.out = string(out)
}
logrus.Warnfp(fmt.Sprintf("【times:%d】", i), s.value, repoValue)
}
}
// There are some windows cases where Git cannot create the parent directory,
// if it does not already exist, to the location it's trying to create the
// repo. Catch that error and try to handle it.
if err != nil && s.isUnableToCreateDir(err) {
logrus.Infoln("1----------->", remote)
basePath := filepath.Dir(filepath.FromSlash(s.LocalPath()))
if _, err := os.Stat(basePath); os.IsNotExist(err) {
err = os.MkdirAll(basePath, 0755)
if err != nil {
repoValue.out = err.Error()
logrus.Errorfp("", s.value, repoValue)
return NewLocalError("[0] Unable to create directory", err, "")
}
if branch == "" {
out, err = s.run("git", "clone", remote, local)
} else {
out, err = s.run("git", "clone", "-b", branch, remote, local)
}
if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewRemoteError("[1] Unable to get repository", err, string(out))
}
return err
}
} else if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewRemoteError("[2] Unable to get repository", err, string(out))
}
if _, ok := repoMap.Load(remote); ok {
logrus.Infoln("2----------->", remote)
repoMap.Store(remote, true)
} else {
logrus.Infoln("3----------->", remote)
repoMap.Store(remote, true)
}
return nil
}
// Init initializes a git repository at local location.
func (s *GitRepo) Init() error {
out, err := s.run("git", "init", s.LocalPath())
repoValue := &TempRepo{
fun: "[INIT]",
rawPkg: s.rawPkg,
remote: s.remote,
local: s.local,
branch: s.branch,
RemoteLocation: s.RemoteLocation,
}
// There are some windows cases where Git cannot create the parent directory,
// if it does not already exist, to the location it's trying to create the
// repo. Catch that error and try to handle it.
if err != nil && s.isUnableToCreateDir(err) {
basePath := filepath.Dir(filepath.FromSlash(s.LocalPath()))
if _, err := os.Stat(basePath); os.IsNotExist(err) {
err = os.MkdirAll(basePath, 0755)
if err != nil {
repoValue.out = err.Error()
logrus.Errorfp("", s.value, repoValue)
return NewLocalError("[0] Unable to initialize repository", err, "")
}
out, err = s.run("git", "init", s.LocalPath())
if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewLocalError("[1] Unable to initialize repository", err, string(out))
}
return nil
}
} else if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewLocalError("[2] Unable to initialize repository", err, string(out))
}
return nil
}
// Update performs an Git fetch and pull to an existing checkout.
func (s *GitRepo) Update() error {
repoValue := &TempRepo{
fun: "[UPDATE]",
rawPkg: s.rawPkg,
remote: s.remote,
local: s.local,
branch: s.branch,
RemoteLocation: s.RemoteLocation,
}
var (
out []byte
err error
)
for i := 1; i < 50; i++ {
// Perform a fetch to make sure everything is up to date.
out, err = s.RunFromDir("git", "fetch", "--tags", s.RemoteLocation)
if err == nil {
break
}
repoValue.out = string(out)
outMsg := fmt.Sprintf("Failed to connect to github.com port 443: Connection refused")
if !strings.Contains(repoValue.out, outMsg) {
break
}
logrus.Warnfp(fmt.Sprintf("【times:%d】", i), s.value, repoValue)
}
if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewRemoteError("[0] Unable to update repository", err, string(out))
}
// When in a detached head state, such as when an individual commit is checked
// out do not attempt a pull. It will cause an error.
detached, err := isDetachedHead(s.LocalPath())
if err != nil {
repoValue.out = err.Error()
logrus.Errorfp("", s.value, repoValue)
return NewLocalError("[1] Unable to update repository", err, "")
}
if detached {
return nil
}
out, err = s.RunFromDir("git", "pull")
if err != nil {
repoValue.out = err.Error() + "|" + string(out)
logrus.Errorfp("", s.value, repoValue)
return NewRemoteError("[2] Unable to update repository", err, string(out))
}
return s.defendAgainstSubmodules()
}
// UpdateVersion sets the version of a package currently checked out via Git.
func (s *GitRepo) UpdateVersion(version string) error {
out, err := s.RunFromDir("git", "checkout", version)
if err != nil {
return NewLocalError("Unable to update checked out version", err, string(out))
}
return s.defendAgainstSubmodules()
}
// defendAgainstSubmodules tries to keep repo state sane in the event of
// submodules. Or nested submodules. What a great idea, submodules.
func (s *GitRepo) defendAgainstSubmodules() error {
// First, update them to whatever they should be, if there should happen to be any.
out, err := s.RunFromDir("git", "submodule", "update", "--init", "--recursive")
if err != nil {
return NewLocalError("Unexpected error while defensively updating submodules", err, string(out))
}
// Now, do a special extra-aggressive clean in case changing versions caused
// one or more submodules to go away.
out, err = s.RunFromDir("git", "clean", "-x", "-d", "-f", "-f")
if err != nil {
return NewLocalError("Unexpected error while defensively cleaning up after possible derelict submodule directories", err, string(out))
}
// Then, repeat just in case there are any nested submodules that went away.
out, err = s.RunFromDir("git", "submodule", "foreach", "--recursive", "git", "clean", "-x", "-d", "-f", "-f")
if err != nil {
return NewLocalError("Unexpected error while defensively cleaning up after possible derelict nested submodule directories", err, string(out))
}
return nil
}
// Version retrieves the current version.
func (s *GitRepo) Version() (string, error) {
out, err := s.RunFromDir("git", "rev-parse", "HEAD")
if err != nil {
return "", NewLocalError("Unable to retrieve checked out version", err, string(out))
}
return strings.TrimSpace(string(out)), nil
}
// Current returns the current version-ish. This means:
// * Branch name if on the tip of the branch
// * Tag if on a tag
// * Otherwise a revision id
func (s *GitRepo) Current() (string, error) {
out, err := s.RunFromDir("git", "symbolic-ref", "HEAD")
if err == nil {
o := bytes.TrimSpace(bytes.TrimPrefix(out, []byte("refs/heads/")))
return string(o), nil
}
v, err := s.Version()
if err != nil {
return "", err
}
ts, err := s.TagsFromCommit(v)
if err != nil {
return "", err
}
if len(ts) > 0 {
return ts[0], nil
}
return v, nil
}
// Date retrieves the date on the latest commit.
func (s *GitRepo) Date() (time.Time, error) {
out, err := s.RunFromDir("git", "log", "-1", "--date=iso", "--pretty=format:%cd")
if err != nil {
return time.Time{}, NewLocalError("Unable to retrieve revision date", err, string(out))
}
t, err := time.Parse(longForm, string(out))
if err != nil {
return time.Time{}, NewLocalError("Unable to retrieve revision date", err, string(out))
}
return t, nil
}
// Branches returns a list of available branches on the RemoteLocation
func (s *GitRepo) Branches() ([]string, error) {
out, err := s.RunFromDir("git", "show-ref")
if err != nil {
return []string{}, NewLocalError("Unable to retrieve branches", err, string(out))
}
branches := s.referenceList(string(out), `(?m-s)(?:`+s.RemoteLocation+`)/(\S+)$`)
return branches, nil
}
// Tags returns a list of available tags on the RemoteLocation
func (s *GitRepo) Tags() ([]string, error) {
out, err := s.RunFromDir("git", "show-ref")
if err != nil {
return []string{}, NewLocalError("Unable to retrieve tags", err, string(out))
}
tags := s.referenceList(string(out), `(?m-s)(?:tags)/(\S+)$`)
return tags, nil
}
// CheckLocal verifies the local location is a Git repo.
func (s *GitRepo) CheckLocal() bool {
if _, err := os.Stat(s.LocalPath() + "/.git"); err == nil {
return true
}
return false
}
// IsReference returns if a string is a reference. A reference can be a
// commit id, branch, or tag.
func (s *GitRepo) IsReference(r string) bool {
_, err := s.RunFromDir("git", "rev-parse", "--verify", r)
if err == nil {
return true
}
// Some refs will fail rev-parse. For example, a remote branch that has
// not been checked out yet. This next step should pickup the other
// possible references.
_, err = s.RunFromDir("git", "show-ref", r)
return err == nil
}
// IsDirty returns if the checkout has been modified from the checked
// out reference.
func (s *GitRepo) IsDirty() bool {
out, err := s.RunFromDir("git", "diff")
return err != nil || len(out) != 0
}
// CommitInfo retrieves metadata about a commit.
func (s *GitRepo) CommitInfo(id string) (*CommitInfo, error) {
fm := `--pretty=format:"<logentry><commit>%H</commit><author>%an <%ae></author><date>%aD</date><message>%s</message></logentry>"`
out, err := s.RunFromDir("git", "log", id, fm, "-1")
if err != nil {
return nil, ErrRevisionUnavailable
}
cis := struct {
Commit string `xml:"commit"`
Author string `xml:"author"`
Date string `xml:"date"`
Message string `xml:"message"`
}{}
err = xml.Unmarshal(out, &cis)
if err != nil {
return nil, NewLocalError("Unable to retrieve commit information", err, string(out))
}
t, err := time.Parse("Mon, _2 Jan 2006 15:04:05 -0700", cis.Date)
if err != nil {
return nil, NewLocalError("Unable to retrieve commit information", err, string(out))
}
ci := &CommitInfo{
Commit: cis.Commit,
Author: cis.Author,
Date: t,
Message: cis.Message,
}
return ci, nil
}
// TagsFromCommit retrieves tags from a commit id.
func (s *GitRepo) TagsFromCommit(id string) ([]string, error) {
// This is imperfect and a better method would be great.
var re []string
out, err := s.RunFromDir("git", "show-ref", "-d")
if err != nil {
return []string{}, NewLocalError("Unable to retrieve tags", err, string(out))
}
lines := strings.Split(string(out), "\n")
var list []string
for _, i := range lines {
if strings.HasPrefix(strings.TrimSpace(i), id) {
list = append(list, i)
}
}
tags := s.referenceList(strings.Join(list, "\n"), `(?m-s)(?:tags)/(\S+)$`)
for _, t := range tags {
// Dereferenced tags have ^{} appended to them.
re = append(re, strings.TrimSuffix(t, "^{}"))
}
return re, nil
}
// Ping returns if remote location is accessible.
func (s *GitRepo) Ping() bool {
c := exec.Command("git", "ls-remote", s.Remote())
// If prompted for a username and password, which GitHub does for all things
// not public, it's considered not available. To make it available the
// remote needs to be different.
c.Env = mergeEnvLists([]string{"GIT_TERMINAL_PROMPT=0"}, os.Environ())
_, err := c.CombinedOutput()
return err == nil
}
// EscapePathSeparator escapes the path separator by replacing it with several.
// Note: this is harmless on Unix, and needed on Windows.
func EscapePathSeparator(path string) string {
switch runtime.GOOS {
case `windows`:
// On Windows, triple all path separators.
// Needed to escape backslash(s) preceding doublequotes,
// because of how Windows strings treats backslash+doublequote combo,
// and Go seems to be implicitly passing around a doublequoted string on Windows,
// so we cannot use default string instead.
// See: https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/
// e.g., C:\foo\bar\ -> C:\\\foo\\\bar\\\
// used with --prefix, like this: --prefix=C:\foo\bar\ -> --prefix=C:\\\foo\\\bar\\\
return strings.Replace(path,
string(os.PathSeparator),
string(os.PathSeparator)+string(os.PathSeparator)+string(os.PathSeparator),
-1)
default:
return path
}
}
// ExportDir exports the current revision to the passed in directory.
func (s *GitRepo) ExportDir(dir string) error {
var path string
// Without the trailing / there can be problems.
if !strings.HasSuffix(dir, string(os.PathSeparator)) {
dir = dir + string(os.PathSeparator)
}
// checkout-index on some systems, such as some Windows cases, does not
// create the parent directory to export into if it does not exist. Explicitly
// creating it.
err := os.MkdirAll(dir, 0755)
if err != nil {
return NewLocalError("Unable to create directory", err, "")
}
path = EscapePathSeparator(dir)
out, err := s.RunFromDir("git", "checkout-index", "-f", "-a", "--prefix="+path)
s.log(out)
if err != nil {
return NewLocalError("Unable to export source", err, string(out))
}
// and now, the horror of submodules
path = EscapePathSeparator(dir + "$path" + string(os.PathSeparator))
out, err = s.RunFromDir("git", "submodule", "foreach", "--recursive", "git checkout-index -f -a --prefix="+path)
s.log(out)
if err != nil {
return NewLocalError("Error while exporting submodule sources", err, string(out))
}
return nil
}
// isDetachedHead will detect if git repo is in "detached head" state.
func isDetachedHead(dir string) (bool, error) {
p := filepath.Join(dir, ".git", "HEAD")
contents, err := ioutil.ReadFile(p)
if err != nil {
return false, err
}
contents = bytes.TrimSpace(contents)
if bytes.HasPrefix(contents, []byte("ref: ")) {
return false, nil
}
return true, nil
}
// isUnableToCreateDir checks for an error in Init() to see if an error
// where the parent directory of the VCS local path doesn't exist. This is
// done in a multi-lingual manner.
func (s *GitRepo) isUnableToCreateDir(err error) bool {
msg := err.Error()
if strings.HasPrefix(msg, "could not create work tree dir") ||
strings.HasPrefix(msg, "不能创建工作区目录") ||
strings.HasPrefix(msg, "no s'ha pogut crear el directori d'arbre de treball") ||
strings.HasPrefix(msg, "impossible de créer le répertoire de la copie de travail") ||
strings.HasPrefix(msg, "kunde inte skapa arbetskatalogen") ||
(strings.HasPrefix(msg, "Konnte Arbeitsverzeichnis") && strings.Contains(msg, "nicht erstellen")) ||
(strings.HasPrefix(msg, "작업 디렉터리를") && strings.Contains(msg, "만들 수 없습니다")) {
return true
}
return false
}