forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
pr.go
170 lines (148 loc) · 5.79 KB
/
pr.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
package fake
import (
"context"
"fmt"
"regexp"
"github.com/jenkins-x/go-scm/scm"
"k8s.io/apimachinery/pkg/util/sets"
)
type pullService struct {
client *wrapper
data *Data
}
func (s *pullService) Find(ctx context.Context, repo string, number int) (*scm.PullRequest, *scm.Response, error) {
f := s.data
val, exists := f.PullRequests[number]
if !exists {
return nil, nil, fmt.Errorf("Pull request number %d does not exit", number)
}
if labels, _, err := s.client.Issues.ListLabels(ctx, repo, number, scm.ListOptions{}); err == nil {
val.Labels = labels
}
return val, nil, nil
}
func (s *pullService) FindComment(context.Context, string, int, int) (*scm.Comment, *scm.Response, error) {
panic("implement me")
}
func (s *pullService) List(context.Context, string, scm.PullRequestListOptions) ([]*scm.PullRequest, *scm.Response, error) {
panic("implement me")
}
func (s *pullService) ListChanges(ctx context.Context, repo string, number int, opts scm.ListOptions) ([]*scm.Change, *scm.Response, error) {
f := s.data
returnStart, returnEnd := paginated(opts.Page, opts.Size, len(f.PullRequestChanges[number]))
return f.PullRequestChanges[number][returnStart:returnEnd], nil, nil
}
func (s *pullService) ListComments(ctx context.Context, repo string, number int, opts scm.ListOptions) ([]*scm.Comment, *scm.Response, error) {
f := s.data
return append([]*scm.Comment{}, f.PullRequestComments[number]...), nil, nil
}
func (s *pullService) ListLabels(ctx context.Context, repo string, number int, opts scm.ListOptions) ([]*scm.Label, *scm.Response, error) {
f := s.data
re := regexp.MustCompile(fmt.Sprintf(`^%s#%d:(.*)$`, repo, number))
la := []*scm.Label{}
allLabels := sets.NewString(f.PullRequestLabelsExisting...)
allLabels.Insert(f.PullRequestLabelsAdded...)
allLabels.Delete(f.PullRequestLabelsRemoved...)
for _, l := range allLabels.List() {
groups := re.FindStringSubmatch(l)
if groups != nil {
la = append(la, &scm.Label{Name: groups[1]})
}
}
return la, nil, nil
}
func (s *pullService) ListEvents(context.Context, string, int, scm.ListOptions) ([]*scm.ListedIssueEvent, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *pullService) AddLabel(ctx context.Context, repo string, number int, label string) (*scm.Response, error) {
f := s.data
labelString := fmt.Sprintf("%s#%d:%s", repo, number, label)
if sets.NewString(f.PullRequestLabelsAdded...).Has(labelString) {
return nil, fmt.Errorf("cannot add %v to %s/#%d", label, repo, number)
}
if f.RepoLabelsExisting == nil {
f.PullRequestLabelsAdded = append(f.PullRequestLabelsAdded, labelString)
return nil, nil
}
for _, l := range f.RepoLabelsExisting {
if label == l {
f.PullRequestLabelsAdded = append(f.PullRequestLabelsAdded, labelString)
return nil, nil
}
}
return nil, fmt.Errorf("cannot add %v to %s/#%d", label, repo, number)
}
// DeleteLabel removes a label
func (s *pullService) DeleteLabel(ctx context.Context, repo string, number int, label string) (*scm.Response, error) {
f := s.data
labelString := fmt.Sprintf("%s#%d:%s", repo, number, label)
if !sets.NewString(f.PullRequestLabelsRemoved...).Has(labelString) {
f.PullRequestLabelsRemoved = append(f.PullRequestLabelsRemoved, labelString)
return nil, nil
}
return nil, fmt.Errorf("cannot remove %v from %s/#%d", label, repo, number)
}
func (s *pullService) Merge(context.Context, string, int, *scm.PullRequestMergeOptions) (*scm.Response, error) {
panic("implement me")
}
func (s *pullService) Close(context.Context, string, int) (*scm.Response, error) {
panic("implement me")
}
func (s *pullService) CreateComment(ctx context.Context, repo string, number int, comment *scm.CommentInput) (*scm.Comment, *scm.Response, error) {
f := s.data
f.PullRequestCommentsAdded = append(f.PullRequestCommentsAdded, fmt.Sprintf("%s#%d:%s", repo, number, comment.Body))
answer := &scm.Comment{
ID: f.IssueCommentID,
Body: comment.Body,
Author: scm.User{Login: botName},
}
f.PullRequestComments[number] = append(f.PullRequestComments[number], answer)
f.IssueCommentID++
return answer, nil, nil
}
func (s *pullService) DeleteComment(ctx context.Context, repo string, number int, id int) (*scm.Response, error) {
f := s.data
f.PullRequestCommentsDeleted = append(f.PullRequestCommentsDeleted, fmt.Sprintf("%s#%d", repo, id))
for num, ics := range f.PullRequestComments {
for i, ic := range ics {
if ic.ID == id {
f.PullRequestComments[num] = append(ics[:i], ics[i+1:]...)
return nil, nil
}
}
}
return nil, fmt.Errorf("could not find issue comment %d", id)
}
func (s *pullService) EditComment(ctx context.Context, repo string, number int, id int, input *scm.CommentInput) (*scm.Comment, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *pullService) AssignIssue(ctx context.Context, repo string, number int, logins []string) (*scm.Response, error) {
panic("implement me")
}
func (s *pullService) UnassignIssue(ctx context.Context, repo string, number int, logins []string) (*scm.Response, error) {
panic("implement me")
}
func (s *pullService) RequestReview(ctx context.Context, repo string, number int, logins []string) (*scm.Response, error) {
return nil, scm.ErrNotSupported
}
func (s *pullService) UnrequestReview(ctx context.Context, repo string, number int, logins []string) (*scm.Response, error) {
return nil, scm.ErrNotSupported
}
func (s *pullService) Create(ctx context.Context, repo string, input *scm.PullRequestInput) (*scm.PullRequest, *scm.Response, error) {
f := s.data
f.PullRequestID++
answer := &scm.PullRequest{
Number: f.PullRequestID,
Title: input.Title,
Body: input.Body,
Base: scm.PullRequestBranch{
Ref: input.Base,
},
Head: scm.PullRequestBranch{
Ref: input.Head,
},
}
f.PullRequestsCreated[f.PullRequestID] = input
f.PullRequests[f.PullRequestID] = answer
return answer, nil, nil
}