-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.go
506 lines (446 loc) · 16.6 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
package main
import (
"bytes"
"crypto/tls"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"regexp"
"strconv"
"strings"
"text/template"
"github.com/Masterminds/sprig"
"github.com/google/go-github/v50/github"
"github.com/pkg/errors"
"golang.org/x/net/context"
)
func newRoundTripper(accessToken string, insecure bool) http.RoundTripper {
// Reuse default transport that has timeouts and supports proxies
transport := http.DefaultTransport.(*http.Transport)
transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: insecure}
return &roundTripper{accessToken, transport}
}
type roundTripper struct {
accessToken string
underlying http.RoundTripper
}
func (rt roundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
r.Header.Set("Authorization", fmt.Sprintf("token %s", rt.accessToken))
return rt.underlying.RoundTrip(r)
}
var (
token = flag.String("token", os.Getenv("GITHUB_TOKEN"), "Github access token")
owner = flag.String("owner", os.Getenv("GITHUB_OWNER"), "Github repository owner")
repo = flag.String("repo", os.Getenv("GITHUB_REPO"), "Github repository name")
commentType = flag.String("type", os.Getenv("GITHUB_COMMENT_TYPE"), "Comment type: 'commit', 'pr', 'issue', 'pr-review' or 'pr-file'")
sha = flag.String("sha", os.Getenv("GITHUB_COMMIT_SHA"), "Commit SHA")
number = flag.String("number", os.Getenv("GITHUB_PR_ISSUE_NUMBER"), "Pull Request or Issue number")
file = flag.String("file", os.Getenv("GITHUB_PR_FILE"), "Pull Request File Name")
position = flag.String("position", os.Getenv("GITHUB_PR_FILE_POSITION"), "Position in Pull Request File")
templ = flag.String("template", os.Getenv("GITHUB_COMMENT_TEMPLATE"), "Template to format comment. Supports `Go` templates: My comment:<br/>{{.}}. Use either `template` or `template_file`")
templateFile = flag.String("template_file", os.Getenv("GITHUB_COMMENT_TEMPLATE_FILE"), "The path to a template file to format comment. Supports `Go` templates. Use either `template` or `template_file`")
format = flag.String("format", os.Getenv("GITHUB_COMMENT_FORMAT"), "Alias of `template`")
formatFile = flag.String("format_file", os.Getenv("GITHUB_COMMENT_FORMAT_FILE"), "Alias of `template_file`")
comment = flag.String("comment", os.Getenv("GITHUB_COMMENT"), "Comment text")
deleteCommentRegex = flag.String("delete-comment-regex", os.Getenv("GITHUB_DELETE_COMMENT_REGEX"), "Regex to find previous comments to delete before creating the new comment. Supported for comment types `commit`, `pr-file`, `issue` and `pr`")
editCommentRegex = flag.String("edit-comment-regex", os.Getenv("GITHUB_EDIT_COMMENT_REGEX"), "Regex to find previous comments to replace with new content, or create new comment if none found. Supported for comment types `commit`, `pr-file`, `issue` and `pr`")
baseURL = flag.String("baseURL", os.Getenv("GITHUB_BASE_URL"), "Base URL of github enterprise")
uploadURL = flag.String("uploadURL", os.Getenv("GITHUB_UPLOAD_URL"), "Upload URL of github enterprise")
insecure = flag.Bool("insecure", strings.ToLower(os.Getenv("GITHUB_INSECURE")) == "true", "Ignore SSL certificate check")
useCommitShaforPR = flag.Bool("use-sha-for-pr", strings.ToLower(os.Getenv("GITHUB_USE_SHA_FOR_PR")) == "true", "Use commit sha to find PR number")
state = flag.String("pr-state", os.Getenv("GITHUB_PR_STATE"), "State of the PR e.g closed,open. Default is open")
baseBranch = flag.String("base-branch", os.Getenv("GITHUB_PR_BASE_BRANCH"), "Base branch of pull request")
)
func getPullRequestOrIssueNumber(str string) (int, error) {
if str == "" {
return 0, errors.New("-number or GITHUB_PR_ISSUE_NUMBER required")
}
num, err := strconv.Atoi(str)
if err != nil {
return 0, errors.WithMessage(err, "-number or GITHUB_PR_ISSUE_NUMBER must be an integer")
}
return num, nil
}
func getPullRequestNumberFromSha(sha, state, base string, client *github.Client) (int, error) {
pullRequestsService := client.PullRequests
opts := &github.PullRequestListOptions{
State: state,
Base: base,
}
pullRequests, _, err := pullRequestsService.ListPullRequestsWithCommit(context.Background(), *owner, *repo, sha, opts)
if err != nil {
return 0, err
}
return *pullRequests[0].Number, nil
}
func getPullRequestFilePosition(str string) (int, error) {
if str == "" {
return 0, errors.New("-position or GITHUB_PR_FILE_POSITION required")
}
position, err := strconv.Atoi(str)
if err != nil {
return 0, errors.WithMessage(err, "-position or GITHUB_PR_FILE_POSITION must be an integer")
}
return position, nil
}
func getComment() (string, error) {
// Read the comment from the command-line argument or ENV var first
if *comment != "" {
return *comment, nil
}
// Read from stdin
data, err := ioutil.ReadAll(os.Stdin)
if err != nil {
return "", errors.WithMessage(err, "Comment must be provided either as command-line argument, ENV variable, or from 'stdin'")
}
return string(data), nil
}
func formatComment(comment string) (string, error) {
if *format == "" && *formatFile == "" && *templ == "" && *templateFile == "" {
return comment, nil
}
var t *template.Template
var err error
var templateFinal string
var templateFileFinal string
if *format != "" || *templ != "" {
if *templ != "" {
templateFinal = *templ
} else {
templateFinal = *format
}
t = template.New("formatComment").Funcs(sprig.TxtFuncMap())
t, err = t.Parse(templateFinal)
if err != nil {
return "", err
}
} else {
if *templateFile != "" {
templateFileFinal = *templateFile
} else {
templateFileFinal = *formatFile
}
name := path.Base(templateFileFinal)
t = template.New(name).Funcs(sprig.TxtFuncMap())
t, err = t.ParseFiles(templateFileFinal)
if err != nil {
return "", err
}
}
var doc bytes.Buffer
err = t.Execute(&doc, comment)
if err != nil {
return "", err
}
// Remove ANSI escape codes
const ansi = "[\u001B\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"
var re = regexp.MustCompile(ansi)
var s = doc.String()
return re.ReplaceAllString(s, ""), nil
}
func main() {
flag.Parse()
if *token == "" {
flag.PrintDefaults()
log.Fatal("-token or GITHUB_TOKEN required")
}
if *owner == "" {
flag.PrintDefaults()
log.Fatal("-owner or GITHUB_OWNER required")
}
if *repo == "" {
flag.PrintDefaults()
log.Fatal("-repo or GITHUB_REPO required")
}
if *commentType == "" {
flag.PrintDefaults()
log.Fatal("-type or GITHUB_COMMENT_TYPE required")
}
if *commentType != "commit" && *commentType != "pr" && *commentType != "issue" && *commentType != "pr-review" && *commentType != "pr-file" {
flag.PrintDefaults()
log.Fatal("-type or GITHUB_COMMENT_TYPE must be one of 'commit', 'pr', 'issue', 'pr-review' or 'pr-file'")
}
http.DefaultClient.Transport = newRoundTripper(*token, *insecure)
var githubClient *github.Client
if *baseURL != "" || *uploadURL != "" {
if *baseURL == "" {
flag.PrintDefaults()
log.Fatal("-baseURL or GITHUB_BASE_URL required when using -uploadURL or GITHUB_UPLOAD_URL")
}
if *uploadURL == "" {
flag.PrintDefaults()
log.Fatal("-uploadURL or GITHUB_UPLOAD_URL required when using -baseURL or GITHUB_BASE_URL")
}
githubClient, _ = github.NewEnterpriseClient(*baseURL, *uploadURL, http.DefaultClient)
} else {
githubClient = github.NewClient(http.DefaultClient)
}
// https://developer.github.com/v3/guides/working-with-comments
// https://developer.github.com/v3/repos/comments
if *commentType == "commit" {
if *sha == "" {
flag.PrintDefaults()
log.Fatal("-sha or GITHUB_COMMIT_SHA required")
}
comment, err := getComment()
if err != nil {
log.Fatal(err)
}
formattedComment, err := formatComment(comment)
if err != nil {
log.Fatal(err)
}
commitComment := &github.RepositoryComment{Body: &formattedComment}
// Find and delete existing comment(s) before creating the new one
if *deleteCommentRegex != "" {
r, err := regexp.Compile(*deleteCommentRegex)
if err != nil {
log.Fatal(err)
}
listOptions := &github.ListOptions{}
comments, _, err := githubClient.Repositories.ListCommitComments(context.Background(), *owner, *repo, *sha, listOptions)
if err != nil {
log.Println("github-commenter: Error listing commit comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
_, err = githubClient.Repositories.DeleteComment(context.Background(), *owner, *repo, *comment.ID)
if err != nil {
log.Println("github-commenter: Error deleting commit comment: ", err)
} else {
log.Println("github-commenter: Deleted commit comment: ", *comment.ID)
}
}
}
}
}
// Find and update existing comment with new content
if *editCommentRegex != "" {
found := false
r, err := regexp.Compile(*editCommentRegex)
if err != nil {
log.Fatal(err)
}
listOptions := &github.ListOptions{}
comments, _, err := githubClient.Repositories.ListCommitComments(context.Background(), *owner, *repo, *sha, listOptions)
if err != nil {
log.Println("github-commenter: Error listing commit comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
found = true
_, _, err = githubClient.Repositories.UpdateComment(context.Background(), *owner, *repo, *comment.ID, commitComment)
if err != nil {
log.Fatal("github-commenter: Error updating commit comment: ", err)
} else {
log.Println("github-commenter: Updated commit comment: ", *comment.ID)
}
}
}
}
if found {
return // exit
}
}
commitComment, _, err = githubClient.Repositories.CreateComment(context.Background(), *owner, *repo, *sha, commitComment)
if err != nil {
log.Fatal(err)
}
log.Println("github-commenter: Created GitHub Commit comment", *commitComment.ID)
} else if *commentType == "pr-review" {
var prNumber int
if *useCommitShaforPR {
if *baseBranch == "" || *state == "" {
flag.PrintDefaults()
log.Fatal("github-commenter: ( -pr-state or GITHUB_PR_STATE ) and ( -basebranch or GITHUB_PR_BASE_BRANCH ) must be provided when using flag -use-sha-for-pr ")
}
num, err := getPullRequestNumberFromSha(*sha, *state, *baseBranch, githubClient)
if err != nil {
log.Fatal(err)
}
prNumber = num
} else {
// https://developer.github.com/v3/pulls/reviews/#create-a-pull-request-review
num, err := getPullRequestOrIssueNumber(*number)
if err != nil {
log.Fatal(err)
}
prNumber = num
}
comment, err := getComment()
if err != nil {
log.Fatal(err)
}
formattedComment, err := formatComment(comment)
if err != nil {
log.Fatal(err)
}
pullRequestReviewRequest := &github.PullRequestReviewRequest{Body: &formattedComment, Event: github.String("COMMENT")}
pullRequestReview, _, err := githubClient.PullRequests.CreateReview(context.Background(), *owner, *repo, prNumber, pullRequestReviewRequest)
if err != nil {
log.Fatal(err)
}
log.Println("github-commenter: Created GitHub PR Review comment", *pullRequestReview.ID)
} else if *commentType == "issue" || *commentType == "pr" {
// https://developer.github.com/v3/issues/comments
num, err := getPullRequestOrIssueNumber(*number)
if err != nil {
log.Fatal(err)
}
comment, err := getComment()
if err != nil {
log.Fatal(err)
}
formattedComment, err := formatComment(comment)
if err != nil {
log.Fatal(err)
}
issueComment := &github.IssueComment{Body: &formattedComment}
// Find and delete existing comment(s) before creating the new one
if *deleteCommentRegex != "" {
r, err := regexp.Compile(*deleteCommentRegex)
if err != nil {
log.Fatal(err)
}
listOptions := &github.IssueListCommentsOptions{}
comments, _, err := githubClient.Issues.ListComments(context.Background(), *owner, *repo, num, listOptions)
if err != nil {
log.Println("github-commenter: Error listing Issue/PR comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
_, err = githubClient.Issues.DeleteComment(context.Background(), *owner, *repo, *comment.ID)
if err != nil {
log.Println("github-commenter: Error deleting Issue/PR comment: ", err)
} else {
log.Println("github-commenter: Deleted Issue/PR comment: ", *comment.ID)
}
}
}
}
}
// Find and update existing comment(s) with new content
if *editCommentRegex != "" {
found := false
r, err := regexp.Compile(*editCommentRegex)
if err != nil {
log.Fatal(err)
}
listOptions := &github.IssueListCommentsOptions{}
comments, _, err := githubClient.Issues.ListComments(context.Background(), *owner, *repo, num, listOptions)
if err != nil {
log.Println("github-commenter: Error listing Issue/PR comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
found = true
_, _, err = githubClient.Issues.EditComment(context.Background(), *owner, *repo, *comment.ID, issueComment)
if err != nil {
log.Fatal("github-commenter: Error updating Issue/PR comment: ", err)
} else {
log.Println("github-commenter: Updated Issue/PR comment: ", *comment.ID)
}
}
}
}
if found {
return // exit
}
}
issueComment, _, err = githubClient.Issues.CreateComment(context.Background(), *owner, *repo, num, issueComment)
if err != nil {
log.Fatal(err)
}
log.Println("github-commenter: Created GitHub Issue comment", *issueComment.ID)
} else if *commentType == "pr-file" {
// https://developer.github.com/v3/pulls/comments
num, err := getPullRequestOrIssueNumber(*number)
if err != nil {
log.Fatal(err)
}
if *sha == "" {
flag.PrintDefaults()
log.Fatal("-sha or GITHUB_COMMIT_SHA required")
}
if *file == "" {
flag.PrintDefaults()
log.Fatal("-file or GITHUB_PR_FILE required")
}
position, err := getPullRequestFilePosition(*position)
if err != nil {
log.Fatal(err)
}
comment, err := getComment()
if err != nil {
log.Fatal(err)
}
formattedComment, err := formatComment(comment)
if err != nil {
log.Fatal(err)
}
pullRequestComment := &github.PullRequestComment{Body: &formattedComment, Path: file, Position: &position, CommitID: sha}
// Find and delete existing comment(s) before creating the new one
if *deleteCommentRegex != "" {
r, err := regexp.Compile(*deleteCommentRegex)
if err != nil {
log.Fatal(err)
}
listOptions := &github.PullRequestListCommentsOptions{}
comments, _, err := githubClient.PullRequests.ListComments(context.Background(), *owner, *repo, num, listOptions)
if err != nil {
log.Println("github-commenter: Error listing PR file comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
_, err = githubClient.PullRequests.DeleteComment(context.Background(), *owner, *repo, *comment.ID)
if err != nil {
log.Println("github-commenter: Error deleting PR file comment: ", err)
} else {
log.Println("github-commenter: Deleted PR file comment: ", *comment.ID)
}
}
}
}
}
// Find and update existing comment with new content
if *editCommentRegex != "" {
found := false
r, err := regexp.Compile(*editCommentRegex)
if err != nil {
log.Fatal(err)
}
// edit mode: create a new request with only the new comment body.
// The API call will fail if the req includes other fields (path, commit_id, position)
editComment := &github.PullRequestComment{Body: pullRequestComment.Body}
listOptions := &github.PullRequestListCommentsOptions{}
comments, _, err := githubClient.PullRequests.ListComments(context.Background(), *owner, *repo, num, listOptions)
if err != nil {
log.Println("github-commenter: Error listing PR file commit comments: ", err)
} else {
for _, comment := range comments {
if r.MatchString(*comment.Body) {
found = true
_, _, err = githubClient.PullRequests.EditComment(context.Background(), *owner, *repo, *comment.ID, editComment)
if err != nil {
log.Fatal("github-commenter: Error updating PR file comment: ", err)
} else {
log.Println("github-commenter: Updated PR file comment: ", *comment.ID)
}
}
}
}
if found {
return // exit
}
}
pullRequestComment, _, err = githubClient.PullRequests.CreateComment(context.Background(), *owner, *repo, num, pullRequestComment)
if err != nil {
log.Fatal(err)
}
log.Println("github-commenter: Created GitHub PR comment on file: ", *pullRequestComment.ID)
}
}