-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithub-client.go
More file actions
241 lines (195 loc) · 6.27 KB
/
github-client.go
File metadata and controls
241 lines (195 loc) · 6.27 KB
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
package main
import (
"fmt"
"github.com/google/go-github/github"
"golang.org/x/oauth2"
"github.com/sirupsen/logrus"
"strings"
"github.com/pkg/errors"
)
func getAllRepositories(client *github.Client) (allRepositories []*github.Repository, err error) {
opt := &github.RepositoryListOptions{
Type: "all",
ListOptions: github.ListOptions{PerPage: 20},
}
for {
repositories, resp, err := client.Repositories.List(ctx, "", opt)
if err != nil {
return nil, err
}
allRepositories = append(allRepositories, repositories...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return allRepositories, nil
}
func getAllContributors() (allContributors []*github.Contributor, err error) {
anon := "true"
opt := &github.ListContributorsOptions{
Anon: anon,
ListOptions: github.ListOptions{PerPage: 20},
}
for {
contributors, resp, err := destinationClient.Repositories.ListContributors(ctx, config.Destination.Repo.Owner, config.Destination.Repo.Name, opt)
if err != nil {
return allContributors, nil
}
allContributors = append(allContributors, contributors...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return allContributors, nil
}
func acceptInvitationsToDestinationRepo() {
for contributor, token := range config.Destination.Repo.Contributors {
client := github.NewClient(oauth2.NewClient(ctx, oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)))
invitations, _, err := client.Users.ListInvitations(ctx, nil)
if err != nil {
logrus.Fatalf("Failed to fetch invitations: %s", err)
}
for _, invitation := range invitations {
if invitation.GetRepo().GetOwner().GetLogin() == config.Destination.Repo.Owner && invitation.GetRepo().GetName() == config.Destination.Repo.Name {
client.Users.AcceptInvitation(ctx, invitation.GetID())
logrus.Printf("Accepting invitation for %s", contributor)
}
}
}
}
func getAllLabels(client *github.Client, repoOwner, repoName string) (allLabels []*github.Label, err error) {
opt := &github.ListOptions{PerPage: 20}
for {
labels, resp, err := client.Issues.ListLabels(ctx, repoOwner, repoName, opt)
if err != nil {
return nil, err
}
allLabels = append(allLabels, labels...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return allLabels, nil
}
func getAllIssues(client *github.Client, repoOwner, repoName string) (allIssues []*github.Issue, err error) {
opt := &github.IssueListByRepoOptions{
State: "all",
Sort: "id",
Direction: "asc",
ListOptions: github.ListOptions{PerPage: 20},
}
for {
issues, resp, err := client.Issues.ListByRepo(ctx, repoOwner, repoName, opt)
if err != nil {
return nil, err
}
allIssues = append(allIssues, issues...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return
}
func getAllComments(issue *github.Issue) (sourceComments []*github.IssueComment, err error) {
opt := &github.IssueListCommentsOptions{
Sort: "id",
Direction: "asc",
ListOptions: github.ListOptions{PerPage: 20},
}
for {
comments, resp, err := sourceClient.Issues.ListComments(ctx, config.Source.Repo.Owner, config.Source.Repo.Name, issue.GetNumber(), opt)
if err != nil {
return nil, err
}
sourceComments = append(sourceComments, comments...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return sourceComments, nil
}
func formatIssueBody(issue *github.Issue) string {
return fmt.Sprintf("_From @%s on %s_\n\n%s\n\n_Copied from original issue: %s/%s#%d_", issue.GetUser().GetLogin(), issue.CreatedAt.String(), issue.GetBody(), config.Source.Repo.Owner, config.Source.Repo.Name, issue.GetNumber())
}
func formatCommentBody(comment *github.IssueComment) string {
return fmt.Sprintf("_From @%s on %s_\n\n%s", comment.GetUser().GetLogin(), comment.CreatedAt.String(), comment.GetBody())
}
func containsContributor(login string) bool {
for _, contributor := range allContributors {
if strings.EqualFold(contributor.GetLogin(), login) {
return true
}
}
return false
}
func convertAssignees(issue *github.Issue) []string {
assignees := make([]string, 0)
for _, assignee := range issue.Assignees {
if containsContributor(assignee.GetLogin()) {
assignees = append(assignees, assignee.GetLogin())
}
}
return assignees
}
func convertLabels(issue *github.Issue) []string {
labels := make([]string, 0, len(issue.Labels))
for _, label := range issue.Labels {
labels = append(labels, label.GetName())
}
return labels
}
func createRepo(client *github.Client, repo *github.Repository) (*github.Repository, error) {
repo, _, err := client.Repositories.Create(ctx, "", &github.Repository{
Name: &config.Destination.Repo.Name,
Private: &config.Destination.Repo.Private,
})
return repo, err
}
func repoExists(client *github.Client, owner, repoName string) (err error) {
repos, err := getAllRepositories(client)
if err == nil {
for _, repo := range repos {
if strings.EqualFold(*repo.Name, repoName) {
return nil
}
}
err = errors.Errorf("Repository [%s/%s] not found", owner, repoName)
}
return err
}
func createLabel(label *github.Label) (*github.Label, error) {
labelToCreate := &github.Label{
Name: label.Name,
Color: label.Color,
}
createdLabel, _, err := destinationClient.Issues.CreateLabel(ctx, config.Destination.Repo.Owner, config.Destination.Repo.Name, labelToCreate)
return createdLabel, err
}
func createIssue(issue *github.Issue) (*github.Issue, error) {
body := formatIssueBody(issue)
assignees := convertAssignees(issue)
labels := convertLabels(issue)
issueToCreate := &github.IssueRequest{
Title: issue.Title,
Body: &body,
Assignees: &assignees,
Labels: &labels,
}
createdIssue, _, err := getDestinationClient(issue.GetUser().GetLogin()).Issues.Create(ctx, config.Destination.Repo.Owner, config.Destination.Repo.Name, issueToCreate)
return createdIssue, err
}
func createComment(issue *github.Issue, comment *github.IssueComment) (*github.IssueComment, error) {
body := formatCommentBody(comment)
commentToCreate := &github.IssueComment{
Body: &body,
}
comment, _, err := getDestinationClient(comment.GetUser().GetLogin()).Issues.CreateComment(ctx, config.Destination.Repo.Owner, config.Destination.Repo.Name, issue.GetNumber(), commentToCreate)
return comment, err
}