-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathgithub.go
306 lines (283 loc) · 8.01 KB
/
github.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
package dashboard
import (
"context"
"fmt"
"log"
"os"
"sync"
"time"
gh "github.com/google/go-github/v50/github"
"golang.org/x/oauth2"
)
const accessTokenEnvVar = "GITHUB_ACCESS_TOKEN"
const graphqlQuery = `
query jekyllFetchDashboardData($ids: [ID!]!) {
nodes(ids: $ids) {
... on Repository {
id
owner {
login
}
name
pullRequests(states: [OPEN]) {
totalCount
}
issues(states: [OPEN]) {
totalCount
}
releases(first: 5, orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
tag {
name
target {
__typename
... on Commit {
history {
totalCount
}
}
... on Tag {
target {
... on Commit {
history {
totalCount
}
}
}
}
}
}
publishedAt
isPrerelease
}
}
defaultBranchRef {
target {
... on Commit {
history {
totalCount
nodes {
statusCheckRollup {
contexts(first: 100) {
nodes {
__typename
... on CheckRun {
name
status
conclusion
url
}
... on StatusContext {
description
state
targetUrl
}
}
}
}
}
}
}
}
}
}
}
}
`
type githubGraphQLResults struct {
once sync.Once
fetched bool
Data struct {
Nodes []struct {
GlobalRelayID string `json:"id"`
Owner struct {
Login string `json:"login"`
} `json:"owner"`
Name string `json:"name"`
PullRequests struct {
TotalCount int `json:"totalCount"`
} `json:"pullRequests"`
Issues struct {
TotalCount int `json:"totalCount"`
} `json:"issues"`
Releases struct {
Nodes []struct {
Tag struct {
Name string `json:"name"`
Target struct {
TypeName string `json:"__typename"`
Target struct {
History struct {
TotalCount int `json:"totalCount"`
} `json:"history"`
} `json:"target"`
History struct {
TotalCount int `json:"totalCount"`
} `json:"history"`
} `json:"target"`
} `json:"tag"`
PublishedAt time.Time `json:"publishedAt"`
IsPreRelease bool `json:"isPrerelease"`
} `json:"nodes"`
} `json:"releases"`
DefaultBranchRef struct {
Target struct {
History struct {
TotalCount int `json:"totalCount"`
Nodes []struct {
StatusCheckRollup struct {
Contexts struct {
Nodes []struct {
TypeName string `json:"__typename"`
// On CheckRun
Name string `json:"name"`
Status string `json:"status"`
Conclusion string `json:"conclusion"`
URL string `json:"url"`
// On StatusContext
Description string `json:"description"`
State string `json:"state"`
TargetURL string `json:"targetUrl"`
} `json:"nodes"`
} `json:"contexts"`
} `json:"statusCheckRollup"`
} `json:"nodes"`
} `json:"history"`
} `json:"target"`
} `json:"defaultBranchRef"`
} `json:"nodes"`
} `json:"data"`
}
var githubClient *gh.Client
type GitHub struct {
Owner string `json:"owner"`
Name string `json:"name"`
CommitsThisWeek int `json:"commits_this_week"`
OpenPRs int `json:"open_prs"`
OpenIssues int `json:"open_issues"`
CommitsSinceLatestRelease int `json:"commits_since_latest_release"`
LatestReleaseTag string `json:"latest_release_tag"`
LatestCommitCIData []githubCIContext `json:"latest_commit_ci_data"`
}
type githubCIContext struct {
Name string `json:"name"`
State string `json:"state"`
URL string `json:"url"`
TypeName string `json:"__typename"`
}
func gitHubToken() string {
return os.Getenv(accessTokenEnvVar)
}
func newGitHubClient() *gh.Client {
if token := gitHubToken(); token != "" {
return gh.NewClient(oauth2.NewClient(
oauth2.NoContext,
oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
),
))
} else {
log.Printf("%s required for GitHub", accessTokenEnvVar)
return gh.NewClient(nil)
}
}
func github(globalRelayID string) chan *GitHub {
githubChan := make(chan *GitHub, 1)
go func() {
if globalRelayID == "" || githubClient == nil {
githubChan <- nil
close(githubChan)
return
}
githubChan <- loadGitHubFromGraphQL(globalRelayID)
close(githubChan)
}()
return githubChan
}
func loadGitHubFromGraphQL(globalRelayID string) *GitHub {
githubGraphQLData := &githubGraphQLResults{}
githubData := &GitHub{}
err := doGraphql(githubClient, graphqlQuery, map[string]interface{}{"ids": []string{globalRelayID}}, githubGraphQLData)
if err != nil {
log.Printf("error fetching graphql: %+v", err)
}
for _, githubProject := range githubGraphQLData.Data.Nodes {
if githubProject.GlobalRelayID == globalRelayID {
githubData.Owner = githubProject.Owner.Login
githubData.Name = githubProject.Name
githubData.OpenPRs = githubProject.PullRequests.TotalCount
githubData.OpenIssues = githubProject.Issues.TotalCount
for _, release := range githubProject.Releases.Nodes {
if !release.IsPreRelease {
githubData.LatestReleaseTag = release.Tag.Name
if release.Tag.Target.TypeName == "Commit" {
githubData.CommitsSinceLatestRelease = githubProject.DefaultBranchRef.Target.History.TotalCount - release.Tag.Target.History.TotalCount
} else {
githubData.CommitsSinceLatestRelease = githubProject.DefaultBranchRef.Target.History.TotalCount - release.Tag.Target.Target.History.TotalCount
}
break
}
}
index := 0
if len(githubProject.DefaultBranchRef.Target.History.Nodes[1].StatusCheckRollup.Contexts.Nodes) > len(githubProject.DefaultBranchRef.Target.History.Nodes[0].StatusCheckRollup.Contexts.Nodes) {
index = 1
}
for _, ciContext := range githubProject.DefaultBranchRef.Target.History.Nodes[index].StatusCheckRollup.Contexts.Nodes {
var name, state, url string
if ciContext.TypeName == "CheckRun" {
name = ciContext.Name
url = ciContext.URL
if ciContext.Status == "pending" {
state = "pending"
} else {
state = ciContext.Conclusion
}
} else {
name = ciContext.Description
state = ciContext.State
url = ciContext.TargetURL
}
githubData.LatestCommitCIData = append(githubData.LatestCommitCIData, githubCIContext{
TypeName: ciContext.TypeName,
Name: name,
State: state,
URL: url,
})
}
break
}
}
return githubData
}
func prefillAllProjectsFromGitHub() {
var wg sync.WaitGroup
for _, project := range getProjects() {
wg.Add(1)
project := project
go func() {
project.fetchGitHubData()
wg.Done()
}()
}
wg.Wait()
}
func commitsSinceLatestRelease(owner, repo, latestReleaseTagName string) int {
var comparison *gh.CommitsComparison
var err error
logHTTP("GET", fmt.Sprintf(
"https://api.github.com/repos/%s/%s/compare/%s...master",
owner, repo, latestReleaseTagName,
), func() {
comparison, _, err = githubClient.Repositories.CompareCommits(
context.Background(),
owner, repo,
latestReleaseTagName, "master",
&gh.ListOptions{PerPage: 1}, // limit results so it's faster?
)
})
if err != nil {
log.Printf("error fetching commit comparison for %s...master for %s/%s: %v", latestReleaseTagName, owner, repo, err)
return -1
}
return *comparison.TotalCommits
}