This repository has been archived by the owner on Mar 10, 2021. It is now read-only.
forked from harbur/captain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git.go
167 lines (130 loc) · 3.09 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
package captain // import "github.com/harbur/captain"
import (
"fmt"
"os"
git "gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
)
func getRepository() (*git.Repository, error) {
dir, err := os.Getwd()
if err != nil {
return nil, err
}
opt := &git.PlainOpenOptions{DetectDotGit: true}
return git.PlainOpenWithOptions(dir, opt)
}
func getRevision(longSha bool) (string, error) {
r, err := getRepository()
if err != nil {
return "", err
}
h, err := getCurrentCommitFromRepository(r)
if longSha || err != nil {
return h, err
}
return h[:7], err
}
func getBranches(all_branches bool) ([]string, error) {
// Labels (branches + tags)
var labels = []string{}
r, err := getRepository()
if err != nil {
return labels, err
}
branches, err := getCurrentBranchesFromRepository(r)
if err != nil {
return labels, err
}
if all_branches {
for _, branch := range branches {
labels = append(labels, branch)
}
} else if len(branches) > 0 {
labels = append(labels, branches[0])
} else {
return labels, fmt.Errorf("no branch")
}
tags, err := getCurrentTagsFromRepository(r)
for _, tag := range tags {
labels = append(labels, tag)
}
return labels, err
}
func isDirty() bool {
r, err := getRepository()
if err != nil {
return true
}
w, err := r.Worktree()
if err != nil {
return true
}
status, err := w.Status()
if err != nil {
return true
}
return !status.IsClean()
// res, _ := oneliner("git", "status", "--porcelain")
// return len(res) > 0
}
func isGit() bool {
_, err := getRepository()
if err != nil {
return false
}
return true
}
// Thanks King'ori Maina @itskingori
// https://github.com/src-d/go-git/issues/1030#issuecomment-443679681
func getCurrentBranchesFromRepository(repository *git.Repository) ([]string, error) {
var currentBranchesNames []string
branchRefs, err := repository.Branches()
if err != nil {
return currentBranchesNames, err
}
headRef, err := repository.Head()
if err != nil {
return currentBranchesNames, err
}
err = branchRefs.ForEach(func(branchRef *plumbing.Reference) error {
if branchRef.Hash() == headRef.Hash() {
currentBranchesNames = append(currentBranchesNames, branchRef.Name().Short())
return nil
}
return nil
})
if err != nil {
return currentBranchesNames, err
}
return currentBranchesNames, nil
}
func getCurrentCommitFromRepository(repository *git.Repository) (string, error) {
headRef, err := repository.Head()
if err != nil {
return "", err
}
headSha := headRef.Hash().String()
return headSha, nil
}
func getCurrentTagsFromRepository(repository *git.Repository) ([]string, error) {
var currentTagsNames []string
tagRefs, err := repository.Branches()
if err != nil {
return currentTagsNames, err
}
headRef, err := repository.Head()
if err != nil {
return currentTagsNames, err
}
err = tagRefs.ForEach(func(tagRef *plumbing.Reference) error {
if tagRef.Hash() == headRef.Hash() {
currentTagsNames = append(currentTagsNames, tagRef.Name().Short())
return nil
}
return nil
})
if err != nil {
return currentTagsNames, err
}
return currentTagsNames, nil
}