forked from jenkins-x/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.go
217 lines (190 loc) · 6.43 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
// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gitlab
import (
"context"
"fmt"
"net/url"
"strings"
"time"
"github.com/jenkins-x/go-scm/scm"
)
type gitService struct {
client *wrapper
}
func (s *gitService) FindRef(ctx context.Context, repo, ref string) (string, *scm.Response, error) {
ref = strings.TrimPrefix(ref, "heads/")
path := fmt.Sprintf("api/v4/projects/%s/repository/commits?ref_name=%s", encode(repo), ref)
out := []*commit{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
if err != nil {
return "", res, err
}
if len(out) > 0 {
commit := out[0]
if commit.ID != "" {
return commit.ID, res, err
}
}
idx := strings.LastIndex(ref, "/")
if idx >= 0 {
ref = ref[idx+1:]
}
return ref, res, err
}
func (s *gitService) CreateRef(ctx context.Context, repo, ref, sha string) (*scm.Reference, *scm.Response, error) {
params := url.Values{
"branch": []string{ref},
"ref": []string{sha},
}
path := fmt.Sprintf("api/v4/projects/%s/repository/branches?%s", encode(repo), params.Encode())
out := &struct {
Name string `json:"name"`
Commit struct {
ID string `json:"id"`
} `json:"commit"`
}{}
res, err := s.client.do(ctx, "POST", path, nil, out)
scmRef := &scm.Reference{
Name: out.Name,
Sha: out.Commit.ID,
}
return scmRef, res, err
}
func (s *gitService) DeleteRef(ctx context.Context, repo, ref string) (*scm.Response, error) {
return nil, scm.ErrNotSupported
}
func (s *gitService) FindBranch(ctx context.Context, repo, name string) (*scm.Reference, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/branches/%s", encode(repo), encode(name))
out := new(branch)
res, err := s.client.do(ctx, "GET", path, nil, out)
return convertBranch(out), res, err
}
func (s *gitService) FindCommit(ctx context.Context, repo, ref string) (*scm.Commit, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/commits/%s", encode(repo), encode(scm.TrimRef(ref)))
out := new(commit)
res, err := s.client.do(ctx, "GET", path, nil, out)
return convertCommit(out), res, err
}
func (s *gitService) FindTag(ctx context.Context, repo, name string) (*scm.Reference, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/tags/%s", encode(repo), encode(name))
out := new(branch)
res, err := s.client.do(ctx, "GET", path, nil, out)
return convertTag(out), res, err
}
func (s *gitService) ListBranches(ctx context.Context, repo string, opts *scm.ListOptions) ([]*scm.Reference, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/branches?%s", encode(repo), encodeListOptions(opts))
out := []*branch{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
return convertBranchList(out), res, err
}
func (s *gitService) ListCommits(ctx context.Context, repo string, opts scm.CommitListOptions) ([]*scm.Commit, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/commits?%s", encode(repo), encodeCommitListOptions(opts))
out := []*commit{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
return convertCommitList(out), res, err
}
func (s *gitService) ListTags(ctx context.Context, repo string, opts *scm.ListOptions) ([]*scm.Reference, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/tags?%s", encode(repo), encodeListOptions(opts))
out := []*branch{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
return convertTagList(out), res, err
}
func (s *gitService) ListChanges(ctx context.Context, repo, ref string, opts *scm.ListOptions) ([]*scm.Change, *scm.Response, error) {
path := fmt.Sprintf("api/v4/projects/%s/repository/commits/%s/diff", encode(repo), encode(ref))
out := []*change{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
return convertChangeList(out), res, err
}
func (s *gitService) CompareCommits(ctx context.Context, repo, ref1, ref2 string, opts *scm.ListOptions) ([]*scm.Change, *scm.Response, error) {
opts.From = encode(ref1)
opts.To = encode(ref2)
path := fmt.Sprintf("api/v4/projects/%s/repository/compare?%s", encode(repo), encodeListOptions(opts))
out := compare{}
res, err := s.client.do(ctx, "GET", path, nil, &out)
return convertChangeList(out.Diffs), res, err
}
func (s *gitService) GetDefaultBranch(ctx context.Context, repo string) (*scm.Reference, *scm.Response, error) {
repository, res, err := s.client.Repositories.Find(ctx, repo)
if err != nil {
return nil, res, err
}
return s.FindBranch(ctx, repo, repository.Branch)
}
type compare struct {
Diffs []*change `json:"diffs"`
}
type branch struct {
Name string `json:"name"`
Commit struct {
ID string `json:"id"`
}
}
type commit struct {
ID string `json:"id"`
Title string `json:"title"`
Message string `json:"message"`
AuthorName string `json:"author_name"`
AuthorEmail string `json:"author_email"`
AuthorDate time.Time `json:"authored_date"`
CommittedDate time.Time `json:"committed_date"`
CommitterName string `json:"committer_name"`
CommitterEmail string `json:"committer_email"`
Created time.Time `json:"created_at"`
URL string `json:"web_url"`
}
func convertCommitList(from []*commit) []*scm.Commit {
to := []*scm.Commit{}
for _, v := range from {
to = append(to, convertCommit(v))
}
return to
}
func convertCommit(from *commit) *scm.Commit {
return &scm.Commit{
Message: from.Message,
Sha: from.ID,
Link: from.URL,
Author: scm.Signature{
Login: from.AuthorName,
Name: from.AuthorName,
Email: from.AuthorEmail,
Date: from.AuthorDate,
},
Committer: scm.Signature{
Login: from.CommitterName,
Name: from.CommitterName,
Email: from.CommitterEmail,
Date: from.CommittedDate,
},
}
}
func convertBranchList(from []*branch) []*scm.Reference {
to := []*scm.Reference{}
for _, v := range from {
to = append(to, convertBranch(v))
}
return to
}
func convertBranch(from *branch) *scm.Reference {
return &scm.Reference{
Name: scm.TrimRef(from.Name),
Path: scm.ExpandRef(from.Name, "refs/heads/"),
Sha: from.Commit.ID,
}
}
func convertTagList(from []*branch) []*scm.Reference {
to := []*scm.Reference{}
for _, v := range from {
to = append(to, convertTag(v))
}
return to
}
func convertTag(from *branch) *scm.Reference {
return &scm.Reference{
Name: scm.TrimRef(from.Name),
Path: scm.ExpandRef(from.Name, "refs/tags/"),
Sha: from.Commit.ID,
}
}