-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
603 lines (503 loc) · 14.9 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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
package main
import (
"context"
"encoding/json"
"errors"
"flag"
"fmt"
"io"
"net/http"
"os"
"regexp"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/google/go-github/v58/github"
"github.com/joho/godotenv"
"golang.org/x/net/html"
"golang.org/x/oauth2"
)
const (
SPECIALCATEGORY = "#### "
SUBCATEGORY = "### "
CATEGORY = "## "
)
type MarkdownRepo struct {
Category string `json:"category"`
SubCategory string `json:"subcategory"`
SpecialCategory string `json:"special_category"`
ProjectName string `json:"project_name"`
Description string `json:"description"`
OwnerName string `json:"owner_name"`
RepoName string `json:"repo_name"`
GithubPagesName string `json:"github_pages_name"`
URL string `json:"url"`
}
type GithubRepo struct {
MarkdownRepo
Stars int `json:"stars"`
Watchers int `json:"watchers"`
CreatedAt time.Time `json:"created_at"`
PushedAt time.Time `json:"pushed_at"`
LastCommit time.Time `json:"last_commit"`
Forks int `json:"forks"`
OpenIssues int `json:"open_issues"`
ContributerCount int `json:"contributer_count"`
License string `json:"license"`
Archived bool `json:"archived"`
Contributers map[string]int `json:"contributers"`
Error error `json:"error,omitempty"`
}
func parseCategory(lineGroup []string, category string, subCategory string, specialCategory string) []MarkdownRepo {
items := []MarkdownRepo{}
if category == "" {
fmt.Println("Category is empty")
}
if len(lineGroup) == 0 {
return items
}
text := strings.Join(lineGroup, "\n")
submatches := parseGithubsURLRegex(text)
for _, match := range submatches {
item := MarkdownRepo{
ProjectName: string(match[1]),
URL: string(match[2]),
Description: string(match[6]),
Category: category,
SubCategory: subCategory,
SpecialCategory: specialCategory,
}
if string(match[3]) != "" {
item.GithubPagesName = string(match[3])
} else {
item.OwnerName = string(match[4])
item.RepoName = string(match[5])
}
items = append(items, item)
}
return items
}
func getFileName() string {
return "github_repos.json"
}
func jsonFileExists() bool {
fileName := getFileName()
if _, err := os.Stat(fileName); err == nil {
return false
}
return true
}
func bytesToFile(bytes []byte) error {
fileName := getFileName()
err := os.WriteFile(fileName, bytes, 0o644)
if err != nil {
return err
}
return nil
}
func parseMarkdownRepos(githubToken string) ([]MarkdownRepo, error) {
if !jsonFileExists() {
fmt.Println("File already exists")
return nil, nil
}
readmeURL := "https://raw.githubusercontent.com/avelino/awesome-go/master/README.md"
readme := getText(readmeURL)
lines := strings.Split(readme, "\n")
specialCategory := ""
subCategory := ""
category := ""
lineGroup := []string{}
markdownRepos := []MarkdownRepo{}
for _, line := range lines {
switch {
case strings.HasPrefix(line, SPECIALCATEGORY):
markdownRepos = append(markdownRepos, parseCategory(lineGroup, category, subCategory, specialCategory)...)
lineGroup = []string{}
specialCategory = line[len(SPECIALCATEGORY):]
case strings.HasPrefix(line, SUBCATEGORY):
markdownRepos = append(markdownRepos, parseCategory(lineGroup, category, subCategory, specialCategory)...)
lineGroup = []string{}
subCategory = line[len(SUBCATEGORY):]
specialCategory = ""
case strings.HasPrefix(line, CATEGORY):
markdownRepos = append(markdownRepos, parseCategory(lineGroup, category, subCategory, specialCategory)...)
lineGroup = []string{}
category = line[len(CATEGORY):]
subCategory = ""
specialCategory = ""
default:
lineGroup = append(lineGroup, line)
}
}
filteredRepos := []MarkdownRepo{}
for _, repo := range markdownRepos {
if repo.GithubPagesName == "" {
filteredRepos = append(filteredRepos, repo)
} else {
fmt.Printf("skipping custom domain repo %+v\n", repo)
}
}
return filteredRepos, nil
}
func getGithubReposFromMarkdownRepos(client *github.Client, markdownRepos []MarkdownRepo) []GithubRepo {
githubRepoWithContributors := make(chan GithubRepo, len(markdownRepos))
manageGoRoutines(client, githubRepoWithContributors, markdownRepos)
githubReposWithContributers := make([]GithubRepo, 0, len(githubRepoWithContributors))
for githubRepo := range githubRepoWithContributors {
if githubRepo.Error != nil {
fmt.Println("Error", githubRepo.Error)
} else {
githubReposWithContributers = append(githubReposWithContributers, githubRepo)
}
}
return githubReposWithContributers
}
func manageGoRoutines(client *github.Client, githubRepoWithContributors chan GithubRepo, markdownRepos []MarkdownRepo) {
markdownRepoChan := make(chan MarkdownRepo, len(markdownRepos))
githubRepoChan := make(chan GithubRepo, len(markdownRepos))
for _, item := range markdownRepos {
markdownRepoChan <- item
}
fmt.Println("markdown repo length", len(markdownRepos))
rateLimit := &atomic.Int32{}
limits, _, err := client.RateLimit.Get(context.Background())
if err != nil {
fmt.Println(err)
}
rateLimit.Store(int32(limits.Core.Remaining))
fmt.Println("initial rate limit", rateLimit.Load())
wg := sync.WaitGroup{}
const THREADS = 1
for i := 0; i < THREADS; i++ {
go getRepoDataFromGithub(client, rateLimit, &wg, markdownRepoChan, githubRepoChan)
wg.Add(1)
}
for i := 0; i < THREADS; i++ {
go getContributorsFromGithub(client, rateLimit, &wg, githubRepoChan, githubRepoWithContributors, markdownRepoChan)
wg.Add(1)
}
counter := 0
fmt.Println("initial sleep time", 30)
time.Sleep(time.Second * 30)
for len(githubRepoChan) > 0 || len(markdownRepoChan) > 0 {
// fetch rate limit every 5 seconds
if counter%10 == 0 && counter != 0 {
fmt.Printf("waiting for all tasks to finish %d/%d\n", len(githubRepoWithContributors), len(markdownRepos))
fmt.Println("fetching ratelimit")
limits, _, err := client.RateLimit.Get(context.Background())
if err != nil {
if rateLimitErr, ok := err.(*github.RateLimitError); ok {
fmt.Println("rate limit reached while fetching ratelimits sleeping until reset time", time.Until(rateLimitErr.Rate.Reset.Time).Seconds())
time.Sleep(time.Until(rateLimitErr.Rate.Reset.Time))
} else {
fmt.Println("unknown error when retrieving ratelimits sleeping 5 second", err)
time.Sleep(5 * time.Second)
}
continue
} else {
fmt.Printf("core: total_limit: %d; expected_limit: %d; remaining_limit: %d; resets in %f seconds\n",
limits.Core.Limit,
rateLimit.Load(),
limits.Core.Remaining,
time.Until(limits.Core.Reset.Time).Seconds())
fmt.Println("storing real rate limit")
rateLimit.Store(int32(limits.Core.Remaining))
}
if rateLimit.Load() < 1 {
fmt.Println("rate limit reached, sleeping for", time.Until(limits.Core.Reset.Time).Seconds())
time.Sleep(time.Until(limits.Core.Reset.Time) + (time.Second * 5))
}
}
time.Sleep(time.Second)
counter++
}
}
func getClient(authToken string) *github.Client {
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: authToken},
)
tc := oauth2.NewClient(ctx, ts)
return github.NewClient(tc)
}
func getRepoDataFromGithub(client *github.Client, rateLimit *atomic.Int32, wg *sync.WaitGroup, markdownRepoChan chan MarkdownRepo, githubRepoChan chan GithubRepo) {
for {
for rateLimit.Load()-1 < 1 {
fmt.Println("GithubRepo: waiting for rate limit to reset", rateLimit.Load())
time.Sleep(1 * time.Second)
continue
}
select {
case markdownRepo, ok := <-markdownRepoChan:
if !ok {
fmt.Println("GithubRepo: channel closed")
wg.Done()
return
}
rateLimit.Add(-1)
repo, _, err := client.Repositories.Get(context.Background(), markdownRepo.OwnerName, markdownRepo.RepoName)
if err != nil {
if strings.Contains(err.Error(), "secondary") {
fmt.Println("secondary rate limit reached, sleeping for 3 seconds")
time.Sleep(3 * time.Second)
markdownRepoChan <- markdownRepo
continue
}
if rateLimitErr, ok := err.(*github.RateLimitError); ok {
fmt.Println("repo function returned ratelimit error")
rateLimit.Store(int32(rateLimitErr.Rate.Remaining))
markdownRepoChan <- markdownRepo
continue
}
fmt.Println("error when getting repo", err)
githubRepoChan <- GithubRepo{
MarkdownRepo: markdownRepo,
Error: err,
}
continue
}
githubRepo := GithubRepo{
MarkdownRepo: markdownRepo,
Stars: repo.GetStargazersCount(),
LastCommit: repo.GetUpdatedAt().Time,
Watchers: repo.GetWatchersCount(),
Forks: repo.GetForksCount(),
CreatedAt: repo.GetCreatedAt().Time,
PushedAt: repo.GetPushedAt().Time,
OpenIssues: repo.GetOpenIssuesCount(),
License: repo.GetLicense().GetName(),
Archived: repo.GetArchived(),
}
githubRepoChan <- githubRepo
default:
close(markdownRepoChan)
wg.Done()
return
}
}
}
func getContributorsFromGithub(client *github.Client, rateLimit *atomic.Int32, wg *sync.WaitGroup, githubRepoChan chan GithubRepo, githubRepoWithContributorsChan chan GithubRepo, markdownRepoChan chan MarkdownRepo) {
for {
for rateLimit.Load()-1 < 1 {
fmt.Println("RepoContributors: waiting for rate limit to reset", rateLimit.Load())
time.Sleep(1 * time.Second)
continue
}
select {
case githubRepo, ok := <-githubRepoChan:
// hypothetical for multiple threads (secondary rate limit is reached using more than 1 thread)
if !ok {
fmt.Println("RepoContributors: channel closed")
wg.Done()
return
}
if githubRepo.Error != nil {
githubRepoWithContributorsChan <- githubRepo
continue
}
rateLimit.Add(-1)
contributers, _, err := client.Repositories.ListContributors(context.Background(), githubRepo.OwnerName, githubRepo.RepoName, nil)
if err != nil {
if strings.Contains(err.Error(), "secondary") {
fmt.Println("secondary rate limit reached, sleeping for 3 seconds")
time.Sleep(3 * time.Second)
githubRepoChan <- githubRepo
continue
}
if rateLimitErr, ok := err.(*github.RateLimitError); ok {
fmt.Println("contrib function returned ratelimit error")
rateLimit.Store(int32(rateLimitErr.Rate.Remaining))
githubRepoChan <- githubRepo
continue
}
fmt.Println("error when getting contributers", err)
githubRepo.Error = err
githubRepoWithContributorsChan <- githubRepo
continue
}
contributerMap := map[string]int{}
for _, contributer := range contributers {
contributerMap[*contributer.Login] = *contributer.Contributions
}
githubRepo.ContributerCount = len(contributers)
githubRepo.Contributers = contributerMap
githubRepoWithContributorsChan <- githubRepo
default:
if len(markdownRepoChan) == 0 {
close(githubRepoChan)
close(githubRepoWithContributorsChan)
wg.Done()
return
}
}
}
}
func getText(URL string) string {
resp, err := http.Get(URL)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
panic(err)
}
return string(body)
}
func parseGithubsURLRegex(text string) [][][]byte {
reRepo := regexp.MustCompile(`\[([a-zA-Z0-9-_\/ ]+)\]\((https:\/\/(?:([a-zA-Z0-9-._]+)\.)?(?:github\.io|github\.com\/([a-zA-Z0-9-._]+)\/([a-zA-Z0-9-._]+)))\)(?: - (.+))`)
return reRepo.FindAllSubmatch([]byte(text), -1)
}
func addJSONToIndex(bytes []byte) {
f, err := os.OpenFile("template.html", os.O_RDWR, 0o644)
if err != nil {
panic(err)
}
defer f.Close()
f2, err := os.Create("index.html")
if err != nil {
panic(err)
}
defer f.Close()
doc, err := html.Parse(f)
if err != nil {
panic(err)
}
var recurseHTML func(*html.Node)
recurseHTML = func(n *html.Node) {
if n.Type == html.ElementNode && n.Data == "head" {
script := &html.Node{
Type: html.ElementNode,
Data: "script",
Attr: []html.Attribute{
{
Key: "id",
Val: "data",
},
},
}
script.AppendChild(&html.Node{
Type: html.TextNode,
Data: "const repoData = " + string(bytes),
})
n.AppendChild(script)
return
}
for c := n.FirstChild; c != nil; c = c.NextSibling {
recurseHTML(c)
}
}
recurseHTML(doc)
err = html.Render(f2, doc)
if err != nil {
panic(err)
}
}
func getReleaseJSON() ([]byte, error) {
resp, err := http.Get("https://api.github.com/repos/codeliger/awesome-go-table/releases/latest")
if err != nil {
return []byte{}, err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return []byte{}, err
}
type Asset struct {
BrowserDownloadURL string `json:"browser_download_url"`
}
type Release struct {
Assets []Asset
}
release := Release{}
err = json.Unmarshal(body, &release)
if err != nil {
return []byte{}, err
}
resp, err = http.Get(release.Assets[0].BrowserDownloadURL)
if err != nil {
return []byte{}, err
}
defer resp.Body.Close()
body, err = io.ReadAll(resp.Body)
if err != nil {
return []byte{}, err
}
return body, err
}
func main() {
getRepos := flag.Bool("update", false, "fetch repos from github and save it as json")
testRateLimit := flag.Bool("test", false, "test rate limit")
latestRelease := flag.Bool("latest", false, "fetch latest build artifact")
saveInHTML := flag.Bool("save", false, "save in html")
flag.Parse()
err := godotenv.Load()
fmt.Println(err)
githubToken := os.Getenv("GITHUB_TOKEN")
if githubToken == "" {
panic(errors.New("GITHUB_TOKEN is not set"))
}
if *latestRelease {
jsonBytes, err := getReleaseJSON()
if err != nil {
panic(err)
}
if *saveInHTML {
githubRepos := []GithubRepo{}
err = json.Unmarshal(jsonBytes, &githubRepos)
if err != nil {
panic(err)
}
remarshalledBytes, err := json.Marshal(githubRepos)
if err != nil {
panic(err)
}
addJSONToIndex(remarshalledBytes)
}
} else if *getRepos {
markdownRepos, err := parseMarkdownRepos(githubToken)
if err != nil {
panic(err)
}
client := getClient(githubToken)
githubRepos := getGithubReposFromMarkdownRepos(client, markdownRepos)
bytes, err := json.Marshal(githubRepos)
if err != nil {
panic(err)
}
err = bytesToFile(bytes)
if err != nil {
panic(err)
}
if *saveInHTML {
addJSONToIndex(bytes)
}
} else if *saveInHTML {
jsonBytes, err := os.ReadFile("github_repos.json")
if err != nil {
panic(err)
}
// WHY DO I NEED TO RETRANSFORM THE JSON SO IT WORKS IN JAVASCRIPT?
githubRepos := []GithubRepo{}
err = json.Unmarshal(jsonBytes, &githubRepos)
if err != nil {
panic(err)
}
remarshalledBytes, err := json.Marshal(githubRepos)
if err != nil {
panic(err)
}
addJSONToIndex(remarshalledBytes)
}
if *testRateLimit {
client := getClient(githubToken)
limits, resp, err := client.RateLimit.Get(context.Background())
if err != nil {
fmt.Println(err)
}
fmt.Println(limits)
fmt.Println(resp)
fmt.Println(err)
}
}