-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.go
460 lines (389 loc) · 9.93 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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
// This is a trivial application which will output a dump of repositories
// which are hosted upon github, or some other host which uses a
// compatible API.
//
// It relies upon having an access-token for authentication.
package main
import (
"bytes"
"context"
"flag"
"fmt"
"net/url"
"os"
"sort"
"strings"
"text/template"
"github.com/google/go-github/v29/github"
"golang.org/x/oauth2"
)
var (
//
// Context for all calls
//
ctx context.Context
//
// The actual github client
//
client *github.Client
//
// The token to use for accessing the remote host.
//
// This is required because gitbucket prefers to see
//
// Authorization: token SECRET-TOKEN
//
// Instead of:
//
// Authorization: bearer SECRET-TOKEN
//
oauthToken = &oauth2.Token{}
//
// The number of repos to fetch from the API at a time.
//
pageSize = 50
//
// Our version number, set for release-builds.
//
version = "unreleased"
)
// Login accepts the address of a github endpoint, and a corresponding
// token to authenticate with.
//
// We use the login to get the user-information which confirms
// that the login was correct.
func Login(api string, token string) error {
// Setup context
ctx = context.Background()
// Setup token
ts := oauth2.StaticTokenSource(oauthToken)
tc := oauth2.NewClient(ctx, ts)
// Create the API-client
client = github.NewClient(tc)
// If the user is using a custom URL which doesn't have the
// versioned API-suffix add it. This appears to be necessary.
if api != "https://api.github.com/" {
if !strings.HasSuffix(api, "/api/v3/") {
if !strings.HasSuffix(api, "/") {
api += "/"
}
api += "api/v3/"
}
}
// Parse the URL for sanity, and update the client with it
url, err := url.Parse(api)
if err != nil {
return err
}
client.BaseURL = url
// Fetch user-information about the user who we are logging in as.
user, _, err := client.Users.Get(ctx, "")
if err != nil {
return err
}
// Ensure we have a login
if *user.Login == "" {
return fmt.Errorf("we failed to find our username, which suggests our login failed")
}
return nil
}
// getPersonalRepos returns all the personal repositories which
// belong to our user.
func getPersonalRepos(fetch string) ([]*github.Repository, error) {
var results []*github.Repository
// Fetch in pages
opt := &github.RepositoryListOptions{
ListOptions: github.ListOptions{PerPage: pageSize},
Type: fetch,
}
// Loop until we're done.
for {
repos, resp, err := client.Repositories.List(ctx, "", opt)
if err != nil {
return results, err
}
results = append(results, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return results, nil
}
// getOrganizationalRepositores finds all the organizations the
// user is a member of, then fetches their repositories
func getOrganizationalRepositores(fetch string) ([]*github.Repository, error) {
var results []*github.Repository
// Get the organizations the user is a member of.
orgs, _, err := client.Organizations.List(ctx, "", nil)
if err != nil {
return results, err
}
// Fetch in pages
opt := &github.RepositoryListByOrgOptions{
ListOptions: github.ListOptions{PerPage: pageSize},
Type: fetch,
}
// For each organization we want to get their repositories.
for _, org := range orgs {
// Loop forever getting the repositories
for {
repos, resp, err := client.Repositories.ListByOrg(ctx, *org.Login, opt)
if err != nil {
return results, err
}
results = append(results, repos...)
if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
}
return results, nil
}
//
// Entry-point
//
func main() {
//
// Parse flags
//
archived := flag.Bool("archived", false, "Include archived repositories in the output?")
api := flag.String("api", "https://api.github.com/", "The API end-point to use for the remote git-host.")
authHeader := flag.Bool("auth-header-token", false, "Use an authorization-header including 'token' rather than 'bearer'.\nThis is required for gitbucket, and perhaps other systems.")
exclude := flag.String("exclude", "", "Comma-separated list of repositories to exclude.")
getOrgs := flag.String("organizations", "all", "Which organizational repositories to fetch.\nValid values are 'public', 'private', 'none', or 'all'.")
getPersonal := flag.String("personal", "all", "Which personal repositories to fetch.\nValid values are 'public', 'private', 'none', or 'all'.")
http := flag.Bool("http", false, "Generate HTTP-based clones rather than SSH-based ones.")
ssh := flag.Bool("ssh", false, "Add 'ssh://'-prefix to the git clone command.")
output := flag.String("output", "", "Write output to the named file, instead of printing to STDOUT.")
prefix := flag.String("prefix", "", "The prefix beneath which to store the repositories upon the current system.")
token := flag.String("token", "", "The API token used to authenticate to the remote API-host.")
versionCmd := flag.Bool("version", false, "Report upon our version, and terminate.")
flag.Parse()
//
// Showing only the version?
//
if *versionCmd {
fmt.Printf("github2mr %s\n", version)
return
}
//
// Validate the repository-types
//
if *getPersonal != "all" &&
*getPersonal != "none" &&
*getPersonal != "public" &&
*getPersonal != "private" {
fmt.Fprintf(os.Stderr, "Valid settings are 'public', 'private', 'none', or 'all'\n")
return
}
if *getOrgs != "all" &&
*getOrgs != "none" &&
*getOrgs != "public" &&
*getOrgs != "private" {
fmt.Fprintf(os.Stderr, "Valid settings are 'public', 'private', 'none', or 'all'\n")
return
}
//
// Get the authentication token supplied via the flag, falling back
// to the environment if nothing has been specified.
//
tok := *token
if tok == "" {
// Fallback
tok = os.Getenv("GITHUB_TOKEN")
if tok == "" {
fmt.Printf("Please specify your github token!\n")
return
}
}
//
// Populate our global OAUTH token with the supplied value.
//
oauthToken.AccessToken = tok
//
// Allow setting the authorization header-type, if required.
//
if *authHeader {
oauthToken.TokenType = "token"
}
//
// Login and confirm that this worked.
//
err := Login(*api, tok)
if err != nil {
fmt.Fprintf(os.Stderr, "Login error - is your token set/correct? %s\n", err.Error())
return
}
//
// Fetch details of all "personal" repositories, unless we're not
// supposed to.
//
var personal []*github.Repository
if *getPersonal != "none" {
personal, err = getPersonalRepos(*getPersonal)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to fetch personal repository list: %s\n", err.Error())
return
}
}
//
// Fetch details of all organizational repositories, unless we're
// not supposed to.
//
var orgs []*github.Repository
if *getOrgs != "none" {
orgs, err = getOrganizationalRepositores(*getOrgs)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to fetch organizational repositories: %s\n",
err.Error())
return
}
}
//
// If the prefix is not set then create a default.
//
// This will be of the form:
//
// ~/Repos/github.com/x/y
// ~/Repos/git.example.com/x/y
// ~/Repos/git.steve.fi/x/y
//
// i.e "~/Repos/${git host}/${owner}/${path}
//
// (${git host} comes from the remote API host.)
//
repoPrefix := *prefix
if repoPrefix == "" {
// Get the hostname
url, _ := url.Parse(*api)
host := url.Hostname()
// Handle the obvious case
if host == "api.github.com" {
host = "github.com"
}
// Generate a prefix
repoPrefix = os.Getenv("HOME") + "/Repos/" + host
}
//
// Combine the results of the repositories we've found.
//
var all []*github.Repository
all = append(all, personal...)
all = append(all, orgs...)
//
// Sort the list, based upon the full-name.
//
sort.Slice(all[:], func(i, j int) bool {
// Case-insensitive sorting.
a := strings.ToLower(*all[i].FullName)
b := strings.ToLower(*all[j].FullName)
return a < b
})
//
// Repos we're excluding
//
excluded := strings.Split(*exclude, ",")
//
// Structure we use for template expansion
//
type Repo struct {
// Prefix-directory for local clones.
Prefix string
// Name of the repository "owner/repo-name".
Name string
// Source to clone from http/ssh-based.
Source string
}
//
// Repos we will output
//
var repos []*Repo
//
// Now format the repositories we've discovered.
//
for _, repo := range all {
//
// If the repository is archived then
// skip it, unless we're supposed to keep
// it.
//
if *repo.Archived && !*archived {
continue
}
//
// The clone-type is configurable
//
clone := *repo.SSHURL
if *http {
clone = *repo.CloneURL
}
//
// Sometimes SSH clones need a prefix
//
if *ssh {
clone = "ssh://" + clone
}
//
// Hack!
//
clone = strings.ReplaceAll(clone, ":4444:", ":4444/")
//
// Should we exclude this entry?
//
skip := false
for _, exc := range excluded {
exc = strings.TrimSpace(exc)
if len(exc) > 0 && strings.Contains(strings.ToLower(clone), strings.ToLower(exc)) {
skip = true
}
}
// Skipped
if skip {
continue
}
repos = append(repos, &Repo{Prefix: repoPrefix,
Name: *repo.FullName,
Source: clone})
}
//
// Load the template we'll use for formatting the output
//
tmpl := `# Generated by github2mr - {{len .}} repositories
{{range .}}
[{{.Prefix}}/{{.Name}}]
checkout = git clone {{.Source}}
{{end}}
`
//
// Parse the template and execute it.
//
var out bytes.Buffer
t := template.Must(template.New("tmpl").Parse(tmpl))
err = t.Execute(&out, repos)
//
// If there were errors we're done.
//
if err != nil {
fmt.Fprintf(os.Stderr, "Error interpolating template:%s\n", err.Error())
return
}
//
// Show the results, or write to the specified file as appropriate
//
if *output != "" {
file, err := os.Create(*output)
if err != nil {
fmt.Fprintf(os.Stderr, "failed to open %s:%s\n", *output, err.Error())
return
}
defer file.Close()
file.Write(out.Bytes())
} else {
fmt.Println(out.String())
}
//
// All done.
//
}