forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
github.go
307 lines (281 loc) · 7.41 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
307
package gits
import (
"context"
"fmt"
"strings"
"time"
"github.com/google/go-github/github"
"github.com/jenkins-x/jx/pkg/auth"
"golang.org/x/oauth2"
)
type GitHubProvider struct {
Username string
Client *github.Client
Context context.Context
Server auth.AuthServer
User auth.UserAuth
}
func NewGitHubProvider(server *auth.AuthServer, user *auth.UserAuth) (GitProvider, error) {
ctx := context.Background()
provider := GitHubProvider{
Server: *server,
User: *user,
Context: ctx,
Username: user.Username,
}
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: user.ApiToken},
)
tc := oauth2.NewClient(ctx, ts)
provider.Client = github.NewClient(tc)
return &provider, nil
}
func (p *GitHubProvider) ListOrganisations() ([]GitOrganisation, error) {
answer := []GitOrganisation{}
orgs, _, err := p.Client.Organizations.List(p.Context, p.Username, nil)
if err != nil {
return answer, err
}
for _, org := range orgs {
name := org.Login
if name != nil {
o := GitOrganisation{
Login: *name,
}
answer = append(answer, o)
}
}
return answer, nil
}
func (p *GitHubProvider) ListRepositories(org string) ([]*GitRepository, error) {
owner := org
if owner == "" {
owner = p.Username
}
answer := []*GitRepository{}
pageSize := 100
options := &github.RepositoryListOptions{
ListOptions: github.ListOptions{
Page: 0,
PerPage: pageSize,
},
}
for {
repos, _, err := p.Client.Repositories.List(p.Context, owner, options)
if err != nil {
return answer, err
}
for _, repo := range repos {
answer = append(answer, toGitHubRepo(asText(repo.Name), repo))
}
if len(repos) < pageSize || len(repos) == 0 {
break
}
options.ListOptions.Page += 1
}
return answer, nil
}
func (p *GitHubProvider) CreateRepository(org string, name string, private bool) (*GitRepository, error) {
repoConfig := &github.Repository{
Name: github.String(name),
Private: github.Bool(private),
}
repo, _, err := p.Client.Repositories.Create(p.Context, org, repoConfig)
if err != nil {
return nil, fmt.Errorf("Failed to create repository %s/%s due to: %s", org, name, err)
}
return toGitHubRepo(name, repo), nil
}
func (p *GitHubProvider) DeleteRepository(org string, name string) error {
owner := org
if owner == "" {
owner = p.Username
}
_, err := p.Client.Repositories.Delete(p.Context, owner, name)
if err != nil {
return fmt.Errorf("Failed to delete repository %s/%s due to: %s", owner, name, err)
}
return err
}
func toGitHubRepo(name string, repo *github.Repository) *GitRepository {
return &GitRepository{
Name: name,
AllowMergeCommit: asBool(repo.AllowMergeCommit),
CloneURL: asText(repo.CloneURL),
HTMLURL: asText(repo.HTMLURL),
SSHURL: asText(repo.SSHURL),
}
}
func (p *GitHubProvider) ForkRepository(originalOrg string, name string, destinationOrg string) (*GitRepository, error) {
repoConfig := &github.RepositoryCreateForkOptions{}
if destinationOrg != "" {
repoConfig.Organization = destinationOrg
}
repo, _, err := p.Client.Repositories.CreateFork(p.Context, originalOrg, name, repoConfig)
if err != nil {
msg := ""
if destinationOrg != "" {
msg = fmt.Sprintf(" to %s", destinationOrg)
}
owner := destinationOrg
if owner == "" {
owner = p.Username
}
if strings.Contains(err.Error(), "try again later") {
fmt.Printf("Waiting for the fork of %s/%s to appear...\n", owner, name)
// lets wait for the fork to occur...
start := time.Now()
deadline := start.Add(time.Minute)
for {
time.Sleep(5 * time.Second)
repo, _, err = p.Client.Repositories.Get(p.Context, owner, name)
if repo != nil && err == nil {
break
}
t := time.Now()
if t.After(deadline) {
return nil, fmt.Errorf("Gave up waiting for Repository %s/%s to appear: %s", owner, name, err)
}
}
} else {
return nil, fmt.Errorf("Failed to fork repository %s/%s%s due to: %s", originalOrg, name, msg, err)
}
}
answer := &GitRepository{
Name: name,
AllowMergeCommit: asBool(repo.AllowMergeCommit),
CloneURL: asText(repo.CloneURL),
HTMLURL: asText(repo.HTMLURL),
SSHURL: asText(repo.SSHURL),
}
return answer, nil
}
func (p *GitHubProvider) CreateWebHook(data *GitWebHookArguments) error {
owner := data.Owner
if owner == "" {
owner = p.Username
}
repo := data.Repo
if repo == "" {
return fmt.Errorf("Missing property Repo")
}
webhookUrl := data.URL
if repo == "" {
return fmt.Errorf("Missing property URL")
}
hooks, _, err := p.Client.Repositories.ListHooks(p.Context, owner, repo, nil)
if err != nil {
return err
}
for _, hook := range hooks {
c := hook.Config["url"]
s, ok := c.(string)
if ok && s == webhookUrl {
fmt.Printf("Already has a webhook registered for %s\n", webhookUrl)
return nil
}
}
config := map[string]interface{}{
"url": webhookUrl,
"content_type": "json",
}
if data.Secret != "" {
config["secret"] = data.Secret
}
hook := &github.Hook{
Name: github.String("web"),
Config: config,
Events: []string{"*"},
}
fmt.Printf("Creating github webhook for %s/%s for url %s\n", owner, repo, webhookUrl)
_, _, err = p.Client.Repositories.CreateHook(p.Context, owner, repo, hook)
return err
}
func (p *GitHubProvider) CreatePullRequest(data *GitPullRequestArguments) (*GitPullRequest, error) {
owner := data.Owner
repo := data.Repo
title := data.Title
body := data.Body
head := data.Head
base := data.Base
config := &github.NewPullRequest{}
if title != "" {
config.Title = github.String(title)
}
if body != "" {
config.Body = github.String(body)
}
if head != "" {
config.Head = github.String(head)
}
if base != "" {
config.Base = github.String(base)
}
pr, _, err := p.Client.PullRequests.Create(p.Context, owner, repo, config)
if err != nil {
return nil, err
}
return &GitPullRequest{
URL: notNullString(pr.HTMLURL),
}, nil
}
func notNullString(tp *string) string {
if tp == nil {
return ""
}
return *tp
}
func (p *GitHubProvider) RenameRepository(org string, name string, newName string) (*GitRepository, error) {
if org == "" {
org = p.Username
}
config := &github.Repository{
Name: github.String(newName),
}
repo, _, err := p.Client.Repositories.Edit(p.Context, org, name, config)
if err != nil {
return nil, fmt.Errorf("Failed to edit repository %s/%s due to: %s", org, name, err)
}
answer := &GitRepository{
Name: name,
AllowMergeCommit: asBool(repo.AllowMergeCommit),
CloneURL: asText(repo.CloneURL),
HTMLURL: asText(repo.HTMLURL),
SSHURL: asText(repo.SSHURL),
}
return answer, nil
}
func (p *GitHubProvider) ValidateRepositoryName(org string, name string) error {
_, r, err := p.Client.Repositories.Get(p.Context, org, name)
if err == nil {
return fmt.Errorf("Repository %s already exists", GitRepoName(org, name))
}
if r.StatusCode == 404 {
return nil
}
return err
}
func (p *GitHubProvider) IsGitHub() bool {
return true
}
func (p *GitHubProvider) JenkinsWebHookPath(gitURL string, secret string) string {
return "/github-webhook/"
}
func GitHubAccessTokenURL(url string) string {
return fmt.Sprintf("https://%s/settings/tokens/new?scopes=repo,read:user,user:email,write:repo_hook", url)
}
func (p *GitHubProvider) Label() string {
return p.Server.Label()
}
func asBool(b *bool) bool {
if b != nil {
return *b
}
return false
}
func asText(text *string) string {
if text != nil {
return *text
}
return ""
}