-
Notifications
You must be signed in to change notification settings - Fork 0
/
github_client.go
377 lines (319 loc) · 10 KB
/
github_client.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
package github
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"strings"
"github.com/sirupsen/logrus"
"github.com/tomnomnom/linkheader"
"github.com/rancher/types/apis/management.cattle.io/v3"
)
const (
gheAPI = "/api/v3"
githubAPI = "https://api.github.com"
githubDefaultHostName = "https://github.com"
)
//GClient implements a httpclient for github
type GClient struct {
httpClient *http.Client
}
func (g *GClient) getAccessToken(code string, config *v3.GithubConfig) (string, error) {
form := url.Values{}
form.Add("client_id", config.ClientID)
form.Add("client_secret", config.ClientSecret)
form.Add("code", code)
url := g.getURL("TOKEN", config)
b, err := g.postToGithub(url, form)
if err != nil {
logrus.Errorf("Github getAccessToken: GET url %v received error from github, err: %v", url, err)
return "", err
}
// Decode the response
var respMap map[string]interface{}
if err := json.Unmarshal(b, &respMap); err != nil {
logrus.Errorf("Github getAccessToken: received error unmarshalling response body, err: %v", err)
return "", err
}
if respMap["error"] != nil {
desc := respMap["error_description"]
logrus.Errorf("Received Error from github %v, description from github %v", respMap["error"], desc)
return "", fmt.Errorf("Received Error from github %v, description from github %v", respMap["error"], desc)
}
acessToken, ok := respMap["access_token"].(string)
if !ok {
return "", fmt.Errorf("Received Error reading accessToken from response %v", respMap)
}
return acessToken, nil
}
func (g *GClient) getUser(githubAccessToken string, config *v3.GithubConfig) (Account, error) {
url := g.getURL("USER_INFO", config)
b, _, err := g.getFromGithub(githubAccessToken, url)
if err != nil {
logrus.Errorf("Github getGithubUser: GET url %v received error from github, err: %v", url, err)
return Account{}, err
}
var githubAcct Account
if err := json.Unmarshal(b, &githubAcct); err != nil {
logrus.Errorf("Github getGithubUser: error unmarshalling response, err: %v", err)
return Account{}, err
}
return githubAcct, nil
}
func (g *GClient) getOrgs(githubAccessToken string, config *v3.GithubConfig) ([]Account, error) {
var orgs []Account
url := g.getURL("ORG_INFO", config)
responses, err := g.paginateGithub(githubAccessToken, url)
if err != nil {
logrus.Errorf("Github getGithubOrgs: GET url %v received error from github, err: %v", url, err)
return orgs, err
}
for _, b := range responses {
var orgObjs []Account
if err := json.Unmarshal(b, &orgObjs); err != nil {
logrus.Errorf("Github getGithubOrgs: received error unmarshalling org array, err: %v", err)
return nil, err
}
orgs = append(orgs, orgObjs...)
}
return orgs, nil
}
func (g *GClient) getTeams(githubAccessToken string, config *v3.GithubConfig) ([]Account, error) {
var teams []Account
url := g.getURL("TEAMS", config)
responses, err := g.paginateGithub(githubAccessToken, url)
if err != nil {
logrus.Errorf("Github getGithubTeams: GET url %v received error from github, err: %v", url, err)
return teams, err
}
for _, response := range responses {
teamObjs, err := g.getTeamInfo(response, config)
if err != nil {
logrus.Errorf("Github getGithubTeams: received error unmarshalling teams array, err: %v", err)
return teams, err
}
for _, teamObj := range teamObjs {
teams = append(teams, teamObj)
}
}
return teams, nil
}
func (g *GClient) getTeamInfo(b []byte, config *v3.GithubConfig) ([]Account, error) {
var teams []Account
var teamObjs []Team
if err := json.Unmarshal(b, &teamObjs); err != nil {
logrus.Errorf("Github getTeamInfo: received error unmarshalling team array, err: %v", err)
return teams, err
}
url := g.getURL("TEAM_PROFILE", config)
for _, team := range teamObjs {
teamAcct := Account{}
team.toGithubAccount(url, &teamAcct)
teams = append(teams, teamAcct)
}
return teams, nil
}
func (g *GClient) getTeamByID(id string, githubAccessToken string, config *v3.GithubConfig) (Account, error) {
var teamAcct Account
url := g.getURL("TEAM", config) + id
b, _, err := g.getFromGithub(githubAccessToken, url)
if err != nil {
logrus.Errorf("Github getTeamByID: GET url %v received error from github, err: %v", url, err)
return teamAcct, err
}
var teamObj Team
if err := json.Unmarshal(b, &teamObj); err != nil {
logrus.Errorf("Github getTeamByID: received error unmarshalling team array, err: %v", err)
return teamAcct, err
}
url = g.getURL("TEAM_PROFILE", config)
teamObj.toGithubAccount(url, &teamAcct)
return teamAcct, nil
}
func (g *GClient) paginateGithub(githubAccessToken string, url string) ([][]byte, error) {
var responses [][]byte
var err error
var response []byte
nextURL := url
for nextURL != "" {
response, nextURL, err = g.getFromGithub(githubAccessToken, nextURL)
if err != nil {
return nil, err
}
responses = append(responses, response)
}
return responses, nil
}
func (g *GClient) nextGithubPage(response *http.Response) string {
header := response.Header.Get("link")
if header != "" {
links := linkheader.Parse(header)
for _, link := range links {
if link.Rel == "next" {
return link.URL
}
}
}
return ""
}
func (g *GClient) searchUsers(searchTerm, searchType string, githubAccessToken string, config *v3.GithubConfig) ([]Account, error) {
if searchType == "group" {
searchType = orgType
}
search := searchTerm
if searchType != "" {
search += "+type:" + searchType
}
search = URLEncoded(search)
url := g.getURL("USER_SEARCH", config) + search
b, _, err := g.getFromGithub(githubAccessToken, url)
if err != nil {
// no match on search returns an error. do not log
return nil, nil
}
result := &searchResult{}
if err := json.Unmarshal(b, result); err != nil {
return nil, err
}
return result.Items, nil
}
func (g *GClient) getOrgByName(org string, githubAccessToken string, config *v3.GithubConfig) (Account, error) {
org = URLEncoded(org)
url := g.getURL("ORGS", config) + org
b, _, err := g.getFromGithub(githubAccessToken, url)
if err != nil {
logrus.Debugf("Github getGithubOrgByName: GET url %v received error from github, err: %v", url, err)
return Account{}, err
}
var githubAcct Account
if err := json.Unmarshal(b, &githubAcct); err != nil {
logrus.Errorf("Github getGithubOrgByName: error unmarshalling response, err: %v", err)
return Account{}, err
}
return githubAcct, nil
}
func (g *GClient) getUserOrgByID(id string, githubAccessToken string, config *v3.GithubConfig) (Account, error) {
url := g.getURL("USER_INFO", config) + "/" + id
b, _, err := g.getFromGithub(githubAccessToken, url)
if err != nil {
logrus.Errorf("Github getUserOrgById: GET url %v received error from github, err: %v", url, err)
return Account{}, err
}
var githubAcct Account
if err := json.Unmarshal(b, &githubAcct); err != nil {
logrus.Errorf("Github getUserOrgById: error unmarshalling response, err: %v", err)
return Account{}, err
}
return githubAcct, nil
}
//URLEncoded encodes the string
func URLEncoded(str string) string {
u, err := url.Parse(str)
if err != nil {
logrus.Errorf("Error encoding the url: %s, error: %v", str, err)
return str
}
return u.String()
}
func (g *GClient) postToGithub(url string, form url.Values) ([]byte, error) {
req, err := http.NewRequest("POST", url, strings.NewReader(form.Encode()))
if err != nil {
logrus.Error(err)
}
req.PostForm = form
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
req.Header.Add("Accept", "application/json")
resp, err := g.httpClient.Do(req)
if err != nil {
logrus.Errorf("Received error from github: %v", err)
return nil, err
}
defer resp.Body.Close()
// Check the status code
switch resp.StatusCode {
case 200:
case 201:
default:
var body bytes.Buffer
io.Copy(&body, resp.Body)
return nil, fmt.Errorf("Request failed, got status code: %d. Response: %s",
resp.StatusCode, body.Bytes())
}
return ioutil.ReadAll(resp.Body)
}
func (g *GClient) getFromGithub(githubAccessToken string, url string) ([]byte, string, error) {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, "", err
}
req.Header.Add("Authorization", "token "+githubAccessToken)
req.Header.Add("Accept", "application/json")
req.Header.Add("user-agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36)")
resp, err := g.httpClient.Do(req)
if err != nil {
logrus.Errorf("Received error from github: %v", err)
return nil, "", err
}
defer resp.Body.Close()
// Check the status code
switch resp.StatusCode {
case 200:
case 201:
default:
var body bytes.Buffer
io.Copy(&body, resp.Body)
return nil, "", fmt.Errorf("request failed, got status code: %d. Response: %s",
resp.StatusCode, body.Bytes())
}
nextURL := g.nextGithubPage(resp)
b, err := ioutil.ReadAll(resp.Body)
return b, nextURL, err
}
func (g *GClient) getURL(endpoint string, config *v3.GithubConfig) string {
var hostName, apiEndpoint, toReturn string
if config.Hostname != "" {
scheme := "http://"
if config.TLS {
scheme = "https://"
}
hostName = scheme + config.Hostname
if hostName == githubDefaultHostName {
apiEndpoint = githubAPI
} else {
apiEndpoint = scheme + config.Hostname + gheAPI
}
} else {
hostName = githubDefaultHostName
apiEndpoint = githubAPI
}
switch endpoint {
case "API":
toReturn = apiEndpoint
case "TOKEN":
toReturn = hostName + "/login/oauth/access_token"
case "USERS":
toReturn = apiEndpoint + "/users/"
case "ORGS":
toReturn = apiEndpoint + "/orgs/"
case "USER_INFO":
toReturn = apiEndpoint + "/user"
case "ORG_INFO":
toReturn = apiEndpoint + "/user/orgs?per_page=1"
case "USER_PICTURE":
toReturn = "https://avatars.githubusercontent.com/u/" + endpoint + "?v=3&s=72"
case "USER_SEARCH":
toReturn = apiEndpoint + "/search/users?q="
case "TEAM":
toReturn = apiEndpoint + "/teams/"
case "TEAMS":
toReturn = apiEndpoint + "/user/teams?per_page=100"
case "TEAM_PROFILE":
toReturn = hostName + "/orgs/%s/teams/%s"
default:
toReturn = apiEndpoint
}
return toReturn
}