forked from jenkins-x/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.go
210 lines (179 loc) · 5.79 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
// 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 gitea
import (
"context"
"errors"
"fmt"
"strings"
"time"
"code.gitea.io/sdk/gitea"
"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) {
namespace, name := scm.Split(repo)
out, giteaResp, err := s.client.GiteaClient.GetRepoRefs(namespace, name, ref)
resp := toSCMResponse(giteaResp)
if err != nil {
return "", resp, err
}
for _, r := range out {
if r.Object != nil {
return r.Object.SHA, resp, nil
}
}
return "", resp, fmt.Errorf("no match found for ref %s", ref)
}
func (s *gitService) CreateRef(ctx context.Context, repo, ref, sha string) (*scm.Reference, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *gitService) DeleteRef(ctx context.Context, repo, ref string) (*scm.Response, error) {
namespace, name := scm.Split(repo)
ref = strings.TrimPrefix(ref, "heads/")
out, giteaResp, err := s.client.GiteaClient.DeleteRepoBranch(namespace, name, ref)
resp := toSCMResponse(giteaResp)
if !out {
return resp, errors.New("failed to delete branch")
}
return resp, err
}
func (s *gitService) FindBranch(ctx context.Context, repo, branchName string) (*scm.Reference, *scm.Response, error) {
namespace, name := scm.Split(repo)
out, resp, err := s.client.GiteaClient.GetRepoBranch(namespace, name, branchName)
return convertBranch(out), toSCMResponse(resp), err
}
func (s *gitService) FindCommit(ctx context.Context, repo, ref string) (*scm.Commit, *scm.Response, error) {
namespace, name := scm.Split(repo)
out, resp, err := s.client.GiteaClient.GetSingleCommit(namespace, name, ref)
return convertCommit(out), toSCMResponse(resp), err
}
func (s *gitService) FindTag(ctx context.Context, repo, name string) (*scm.Reference, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *gitService) ListBranches(ctx context.Context, repo string, opts *scm.ListOptions) ([]*scm.Reference, *scm.Response, error) {
namespace, name := scm.Split(repo)
out, resp, err := s.client.GiteaClient.ListRepoBranches(namespace, name, gitea.ListRepoBranchesOptions{ListOptions: toGiteaListOptions(opts)})
return convertBranchList(out), toSCMResponse(resp), err
}
func (s *gitService) ListCommits(ctx context.Context, repo string, opts scm.CommitListOptions) ([]*scm.Commit, *scm.Response, error) {
namespace, name := scm.Split(repo)
listOpts := gitea.ListCommitOptions{
ListOptions: gitea.ListOptions{
Page: opts.Page,
PageSize: opts.Size,
},
SHA: opts.Sha,
}
out, resp, err := s.client.GiteaClient.ListRepoCommits(namespace, name, listOpts)
return convertCommitList(out), toSCMResponse(resp), err
}
func (s *gitService) ListTags(ctx context.Context, repo string, opts *scm.ListOptions) ([]*scm.Reference, *scm.Response, error) {
namespace, name := scm.Split(repo)
out, resp, err := s.client.GiteaClient.ListRepoTags(namespace, name, gitea.ListRepoTagsOptions{ListOptions: toGiteaListOptions(opts)})
return convertTagList(out), toSCMResponse(resp), err
}
func (s *gitService) ListChanges(ctx context.Context, repo, ref string, _ *scm.ListOptions) ([]*scm.Change, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *gitService) CompareCommits(ctx context.Context, repo, ref1, ref2 string, _ *scm.ListOptions) ([]*scm.Change, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
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)
}
//
// native data structures
//
type (
// gitea commit object.
commit struct {
ID string `json:"id"`
Sha string `json:"sha"`
Message string `json:"message"`
URL string `json:"url"`
Author signature `json:"author"`
Committer signature `json:"committer"`
Timestamp time.Time `json:"timestamp"`
}
// gitea signature object.
signature struct {
Name string `json:"name"`
Email string `json:"email"`
Username string `json:"username"`
}
)
//
// native data structure conversion
//
func convertBranchList(src []*gitea.Branch) []*scm.Reference {
dst := []*scm.Reference{}
for _, v := range src {
dst = append(dst, convertBranch(v))
}
return dst
}
func convertBranch(src *gitea.Branch) *scm.Reference {
if src == nil || src.Commit == nil {
return nil
}
return &scm.Reference{
Name: scm.TrimRef(src.Name),
Path: scm.ExpandRef(src.Name, "refs/heads/"),
Sha: src.Commit.ID,
}
}
func convertTagList(src []*gitea.Tag) []*scm.Reference {
dst := []*scm.Reference{}
for _, v := range src {
dst = append(dst, convertTag(v))
}
return dst
}
func convertTag(src *gitea.Tag) *scm.Reference {
if src == nil || src.Commit == nil {
return nil
}
return &scm.Reference{
Name: scm.TrimRef(src.Name),
Path: scm.ExpandRef(src.Name, "refs/tags/"),
Sha: src.Commit.SHA,
}
}
func convertCommitList(src []*gitea.Commit) []*scm.Commit {
dst := []*scm.Commit{}
for _, v := range src {
dst = append(dst, convertCommit(v))
}
return dst
}
func convertCommit(src *gitea.Commit) *scm.Commit {
if src == nil || src.RepoCommit == nil {
return nil
}
return &scm.Commit{
Sha: src.SHA,
Link: src.URL,
Message: src.RepoCommit.Message,
Author: convertUserSignature(src.Author),
Committer: convertUserSignature(src.Committer),
}
}
func convertUserSignature(src *gitea.User) scm.Signature {
if src == nil {
return scm.Signature{}
}
return scm.Signature{
Login: src.UserName,
Email: src.Email,
Name: src.FullName,
Avatar: src.AvatarURL,
}
}