-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmain.go
385 lines (360 loc) · 11.6 KB
/
main.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/*
Copyright 2020 Mason Egger All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"context"
"os"
"strings"
"golang.org/x/oauth2"
"github.com/apex/log"
"github.com/apex/log/handlers/cli"
"github.com/google/go-github/v32/github"
"github.com/xanzy/go-gitlab"
"gopkg.in/alecthomas/kingpin.v2"
)
var (
vcs = kingpin.Flag("vcs", "Github or GitLab, defaults to Github").Short('V').Default("Github").String()
accessToken = kingpin.Flag("access-token", "GitHub or GitLab API Token - if unset, attempts to use this tool's stored token of its current default context. env var: ACCESS_TOKEN").Short('t').Envar("ACCESS_TOKEN").String()
user = kingpin.Flag("user", "Github or GitLab user to fetch repos of").Short('u').String()
org = kingpin.Flag("org", "GitHub org or GitLab group to fetch repos of").Short('o').String()
topic = kingpin.Flag("topic", "topic to add to repos").Short('p').Default("hacktoberfest").String()
remove = kingpin.Flag("remove", "Remove topic and labels from all repos. Include -l to remove labels").Short('r').Default("false").Bool()
labels = kingpin.Flag("labels", "Add spam, invalid, and hacktoberfest-accepted labels to repo").Short('l').Default("false").Bool()
includeForks = kingpin.Flag("include-forks", "Include forks").Default("false").Bool()
includePrivate = kingpin.Flag("include-private", "Include private repos").Default("false").Bool()
includeCollabs = kingpin.Flag("include-collabs", "Include repos you collaborate on").Default("false").Bool()
dryRun = kingpin.Flag("dry-run", "Show more or less what will be done without doing anything").Short('d').Default("false").Bool()
)
func main() {
kingpin.Parse()
log.SetHandler(cli.Default)
if *accessToken == "" {
log.Info("no access token provided, attempting to look up access token in env vars")
token := os.Getenv("ACCESS_TOKEN")
if token == "" {
log.Fatalf("couldn't look up token in ACCESS_TOKEN")
}
*accessToken = token
log.Info("using access token found in env vars")
}
if *org == "" && *user == "" {
log.Fatalf("Neither user or org was set.")
}
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: *accessToken},
)
tc := oauth2.NewClient(ctx, ts)
if *vcs == "Gitlab" {
client, err := gitlab.NewClient(*accessToken)
if err != nil {
log.WithError(err).Fatalf("Couldn't connect to gitlab")
}
var allRepos []*gitlab.Project
if *org != "" {
log.Info("Getting repos for group")
listGroupOpt := gitlab.ListGroupsOptions{Search: gitlab.String(*org)}
groups, _, err := client.Groups.ListGroups(&listGroupOpt)
if err != nil {
log.WithError(err).Fatalf("issue getting group")
}
for {
listGroupProjOpt := gitlab.ListGroupProjectsOptions{Visibility: gitlab.Visibility("public")}
repos, resp, err := client.Groups.ListGroupProjects(groups[0].ID, &listGroupProjOpt)
if err != nil {
log.WithError(err).Fatalf("issue getting repos for group")
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
listGroupProjOpt.Page = resp.NextPage
}
if *includePrivate == true {
for {
listGroupProjOpt := gitlab.ListGroupProjectsOptions{Visibility: gitlab.Visibility("private")}
repos, resp, err := client.Groups.ListGroupProjects(groups[0].ID, &listGroupProjOpt)
if err != nil {
log.WithError(err).Fatalf("issue getting repos for group")
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
listGroupProjOpt.Page = resp.NextPage
}
}
if *includeForks == false {
var allReposNoForks []*gitlab.Project
for _, repo := range allRepos {
if repo.ForkedFromProject == nil {
allReposNoForks = append(allReposNoForks, repo)
}
}
allRepos = allReposNoForks
}
}
if *user != "" {
gitlab_user, _, err := client.Users.CurrentUser()
if err != nil {
log.WithError(err).Fatalf("issue getting user")
}
var opt *gitlab.ListProjectsOptions
if *includeCollabs == true {
opt = &gitlab.ListProjectsOptions{Membership: github.Bool(true)}
} else {
opt = &gitlab.ListProjectsOptions{Owned: github.Bool(true)}
}
for {
var repos, resp, err = client.Projects.ListUserProjects(gitlab_user.ID, opt)
if err != nil {
log.WithError(err).Fatalf("issue getting repositories")
break
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
}
for _, repo := range allRepos {
loggerWithFields := log.WithField("repo", repo.NameWithNamespace)
if repo.Archived {
loggerWithFields.Info("skipping archived")
continue
}
if !*includeForks {
if repo.ForkedFromProject != nil {
loggerWithFields.Info("skipping fork")
continue
}
}
if *includePrivate == false {
if repo.Visibility == "private" {
loggerWithFields.Info("skipping private")
continue
}
}
var operation string
var topics []string
if *remove == true {
operation = "removing"
for _, t := range repo.Topics {
if t != *topic {
topics = append(topics, t)
}
}
} else {
operation = "adding"
topics = repo.Topics
topics = append(topics, *topic)
}
if *dryRun != true {
opt := &gitlab.EditProjectOptions{Topics: &topics}
loggerWithFields.WithField("topic", *topic).Infof("%s topic", operation)
_, _, err := client.Projects.EditProject(repo.ID, opt)
if err != nil {
log.WithError(err).Fatalf("Failed to edit project")
break
}
labelColors := map[string]string{
"hacktoberfest-accepted": "#f54501",
"invalid": "#ca0b00",
"spam": "#b33a3a",
}
if *labels == true {
if *remove == true {
for label, _ := range labelColors {
labelOpt := gitlab.DeleteLabelOptions{Name: gitlab.String(label)}
_, err := client.Labels.DeleteLabel(repo.ID, &labelOpt)
if err != nil {
if strings.Contains(err.Error(), "doesnt_exist") {
continue
} else {
loggerWithFields.WithError(err).Infof("issue removing hacktoberfest labels in repo")
}
} else {
loggerWithFields.WithField("label", label).Info("removing labels")
}
}
} else {
for label, color := range labelColors {
labelOpt := gitlab.CreateLabelOptions{Name: gitlab.String(label), Color: gitlab.String(color)}
_, _, err := client.Labels.CreateLabel(repo.ID, &labelOpt)
if err != nil {
if strings.Contains(err.Error(), "already_exists") {
continue
} else {
loggerWithFields.WithError(err).Infof("issue adding hacktoberfest label to repo")
}
} else {
loggerWithFields.WithField("label", label).Info("adding labels")
}
}
}
}
} else {
loggerWithFields.WithField("topic", *topic).Infof("[dryrun] %s topic", operation)
}
}
} else {
client := github.NewClient(tc)
var allRepos []*github.Repository
if *org != "" {
opt := &github.RepositoryListByOrgOptions{Type: "public"}
for {
var repos, resp, err = client.Repositories.ListByOrg(ctx, *org, opt)
if err != nil {
log.WithError(err).Fatalf("issue getting repositories")
break
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
}
if *includeForks == true {
opt := &github.RepositoryListByOrgOptions{Type: "forks"}
for {
var repos, resp, err = client.Repositories.ListByOrg(ctx, *org, opt)
if err != nil {
log.WithError(err).Fatalf("issue getting repositories")
break
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
}
if *includePrivate == true {
opt := &github.RepositoryListByOrgOptions{Type: "private"}
for {
var repos, resp, err = client.Repositories.ListByOrg(ctx, *org, opt)
if err != nil {
log.WithError(err).Fatalf("issue getting repositories")
break
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
}
}
if *user != "" {
var opt *github.RepositoryListOptions
if *includeCollabs == true {
opt = &github.RepositoryListOptions{Type: "all"}
} else {
opt = &github.RepositoryListOptions{Type: "all", Affiliation: "owner,organization_member"}
}
for {
var repos, resp, err = client.Repositories.List(ctx, *user, opt)
if err != nil {
log.WithError(err).Fatalf("issue getting repositories")
break
}
allRepos = append(allRepos, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
}
for _, repo := range allRepos {
loggerWithFields := log.WithField("repo", *repo.Name)
if *repo.Archived == true {
loggerWithFields.Info("skipping archived")
continue
}
if *repo.Disabled == true {
loggerWithFields.Info("skipping disabled")
continue
}
if *includeForks == false {
if *repo.Fork == true {
loggerWithFields.Info("skipping fork")
continue
}
}
if *includePrivate == false {
if *repo.Private == true {
loggerWithFields.Info("skipping private")
continue
}
}
var operation string
var topics []string
if *remove == true {
operation = "removing"
for _, t := range repo.Topics {
if t != *topic {
topics = append(topics, t)
}
}
} else {
operation = "adding"
topics = repo.Topics
topics = append(topics, *topic)
}
if *dryRun != true {
_, _, err := client.Repositories.ReplaceAllTopics(ctx, *repo.Owner.Login, *repo.Name, topics)
loggerWithFields.WithField("topic", *topic).Infof("%s topic", operation)
if err != nil {
loggerWithFields.WithError(err).Infof("issue adding topic to repo")
}
labelColors := map[string]string{
"hacktoberfest-accepted": "f54501",
"invalid": "ca0b00",
"spam": "b33a3a",
}
if *labels == true {
if *remove == true {
for label, _ := range labelColors {
_, err := client.Issues.DeleteLabel(ctx, *repo.Owner.Login, *repo.Name, label)
if err != nil {
if strings.Contains(err.Error(), "doesnt_exist") {
continue
} else {
loggerWithFields.WithError(err).Infof("issue removing hacktoberfest labels in repo")
}
} else {
loggerWithFields.WithField("label", label).Info("removing labels")
}
}
} else {
for label, color := range labelColors {
_, _, err := client.Issues.CreateLabel(ctx, *repo.Owner.Login, *repo.Name, &github.Label{Name: github.String(label), Color: github.String(color)})
if err != nil {
if strings.Contains(err.Error(), "already_exists") {
continue
} else {
loggerWithFields.WithError(err).Infof("issue adding hacktoberfest label to repo")
}
} else {
loggerWithFields.WithField("label", label).Info("adding labels")
}
}
}
}
} else {
loggerWithFields.WithField("topic", *topic).Infof("[dryrun] %s topic", operation)
}
}
}
log.Info("done!")
}