-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreststats.go
146 lines (112 loc) · 3.25 KB
/
reststats.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
package repostats
import (
"fmt"
"log"
"net/http"
"slices"
"strconv"
"time"
"github.com/emanuelef/github-repo-activity-stats/stats"
"github.com/go-resty/resty/v2"
)
const (
apiGHUrl = "https://api.github.com"
rawGHUrl = "https://raw.githubusercontent.com"
)
type Client struct {
restyClient *resty.Client
}
func NewClient(transport *http.RoundTripper) *Client {
restyClient := resty.New()
restyClient.SetTransport(*transport)
return &Client{restyClient: restyClient}
}
func (c *Client) getStarsHistory(ghRepo string, totalStars int) (stats.StarsHistory, error) {
// https://api.github.com/repos/temporalio/temporal/stargazers?per_page=100&page=80
// Accept: application/vnd.github.star+json
result := stats.StarsHistory{}
res := [](map[string]any){}
restyReq := c.restyClient.R().SetResult(&res).SetHeader("Accept", "application/vnd.github.star+json")
apiGithubUrl := fmt.Sprintf("%s/repos/%s/stargazers", apiGHUrl, ghRepo)
// The stargazer endpoint allows only to reach page 400, and a maximum 100 results per page
// It also doesn't seem to support sorting in reverse order
perPage := strconv.Itoa(100)
page := (totalStars / 100) + 1
for i := 0; i < 2; i++ {
currentPage := page - i
if currentPage < 0 {
break
}
resp, err := restyReq.
SetQueryParams(map[string]string{
"page": strconv.Itoa(currentPage),
"per_page": perPage,
}).Get(apiGithubUrl)
if resp.StatusCode() == http.StatusUnprocessableEntity {
log.Println("Request over limit")
}
if err != nil {
log.Println(err)
}
if resp.IsSuccess() {
if len(res) == 0 {
log.Println("No stars")
return result, nil
}
result.LastStarDate, _ = time.Parse(time.RFC3339, res[0]["starred_at"].(string))
currentTime := time.Now()
slices.Reverse(res)
for _, star := range res {
// "2023-08-23T15:06:33Z"
dateString := star["starred_at"].(string)
output, err := time.Parse(time.RFC3339, dateString)
if err == nil {
days := currentTime.Sub(output).Hours() / 24
if days < 1 {
result.AddedLast24H += 1
}
if days < 7 {
result.AddedLast7d += 1
}
if days < 14 {
result.AddedLast14d += 1
}
if days < 30 {
result.AddedLast30d += 1
}
}
}
}
}
return result, nil
}
// Refactor this and most of the code
func (c *Client) GetAllStats(ghRepo string) (*stats.RepoStats, error) {
res := make(map[string]any)
restyReq := c.restyClient.R().SetResult(&res)
apiGithubUrl := fmt.Sprintf("%s/repos/%s", apiGHUrl, ghRepo)
resp, err := restyReq.Get(apiGithubUrl)
if err != nil {
return nil, err
}
if !resp.IsSuccess() {
log.Println("Error getting repo infos")
return nil, fmt.Errorf("%s Error getting repo infos", resp.Status())
}
language, ok := res["language"].(string)
if !ok {
language = ""
}
result := stats.RepoStats{
GHPath: ghRepo,
Stars: int(res["stargazers_count"].(float64)),
Size: int(res["size"].(float64)),
Language: language,
OpenIssues: int(res["open_issues_count"].(float64)),
Forks: int(res["forks_count"].(float64)),
Archived: res["archived"].(bool),
DefaultBranch: res["default_branch"].(string),
}
result.StarsHistory, _ = c.getStarsHistory(ghRepo, result.Stars)
return &result, nil
}