forked from cloudposse/github-commenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
373 lines (324 loc) · 11.8 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
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/github"
"github.com/pkg/errors"
"golang.org/x/net/context"
)
type roundTripper struct {
accessToken string
insecure bool
}
func (rt roundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
r.Header.Set("Authorization", fmt.Sprintf("token %s", rt.accessToken))
transport := http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: rt.insecure}}
return transport.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`")
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")
)
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 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 = roundTripper{*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)
}
// 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)
}
}
}
}
}
commitComment := &github.RepositoryComment{Body: &formattedComment}
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" {
// https://developer.github.com/v3/pulls/reviews/#create-a-pull-request-review
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)
}
pullRequestReviewRequest := &github.PullRequestReviewRequest{Body: &formattedComment, Event: github.String("COMMENT")}
pullRequestReview, _, err := githubClient.PullRequests.CreateReview(context.Background(), *owner, *repo, num, 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)
}
// 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)
}
}
}
}
}
issueComment := &github.IssueComment{Body: &formattedComment}
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)
}
// 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)
}
}
}
}
}
pullRequestComment := &github.PullRequestComment{Body: &formattedComment, Path: file, Position: &position, CommitID: sha}
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)
}
}