forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 41
/
approve.go
739 lines (660 loc) · 22.8 KB
/
approve.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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package approve
import (
"fmt"
"net/url"
"regexp"
"sort"
"strconv"
"strings"
"time"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/test-infra/prow/config"
"k8s.io/test-infra/prow/github"
"k8s.io/test-infra/prow/labels"
"k8s.io/test-infra/prow/pluginhelp"
"k8s.io/test-infra/prow/plugins"
"k8s.io/test-infra/prow/plugins/approve/approvers"
"k8s.io/test-infra/prow/repoowners"
)
const (
// PluginName defines this plugin's registered name.
PluginName = "approve"
approveCommand = "APPROVE"
cancelArgument = "cancel"
lgtmCommand = "LGTM"
noIssueArgument = "no-issue"
)
var (
associatedIssueRegexFormat = `(?:%s/[^/]+/issues/|#)(\d+)`
commandRegex = regexp.MustCompile(`(?m)^/([^\s]+)[\t ]*([^\n\r]*)`)
notificationRegex = regexp.MustCompile(`(?is)^\[` + approvers.ApprovalNotificationName + `\] *?([^\n]*)(?:\n\n(.*))?`)
// deprecatedBotNames are the names of the bots that previously handled approvals.
// Each can be removed once every PR approved by the old bot has been merged or unapproved.
deprecatedBotNames = []string{"k8s-merge-robot", "openshift-merge-robot"}
// handleFunc is used to allow mocking out the behavior of 'handle' while testing.
handleFunc = handle
)
type githubClient interface {
GetPullRequest(org, repo string, number int) (*github.PullRequest, error)
GetPullRequestChanges(org, repo string, number int) ([]github.PullRequestChange, error)
GetIssueLabels(org, repo string, number int) ([]github.Label, error)
ListIssueComments(org, repo string, number int) ([]github.IssueComment, error)
ListReviews(org, repo string, number int) ([]github.Review, error)
ListPullRequestComments(org, repo string, number int) ([]github.ReviewComment, error)
DeleteComment(org, repo string, ID int) error
CreateComment(org, repo string, number int, comment string) error
BotName() (string, error)
AddLabel(org, repo string, number int, label string) error
RemoveLabel(org, repo string, number int, label string) error
ListIssueEvents(org, repo string, num int) ([]github.ListedIssueEvent, error)
}
type ownersClient interface {
LoadRepoOwners(org, repo, base string) (repoowners.RepoOwner, error)
}
type state struct {
org string
repo string
branch string
number int
body string
author string
assignees []github.User
htmlURL string
}
func init() {
plugins.RegisterGenericCommentHandler(PluginName, handleGenericCommentEvent, helpProvider)
plugins.RegisterReviewEventHandler(PluginName, handleReviewEvent, helpProvider)
plugins.RegisterPullRequestHandler(PluginName, handlePullRequestEvent, helpProvider)
}
func helpProvider(config *plugins.Configuration, enabledRepos []string) (*pluginhelp.PluginHelp, error) {
doNot := func(b bool) string {
if b {
return ""
}
return "do not "
}
willNot := func(b bool) string {
if b {
return "will "
}
return "will not "
}
approveConfig := map[string]string{}
for _, repo := range enabledRepos {
parts := strings.Split(repo, "/")
var opts *plugins.Approve
switch len(parts) {
case 1:
opts = optionsForRepo(config, repo, "")
case 2:
opts = optionsForRepo(config, parts[0], parts[1])
default:
return nil, fmt.Errorf("invalid repo in enabledRepos: %q", repo)
}
approveConfig[repo] = fmt.Sprintf("Pull requests %s require an associated issue.<br>Pull request authors %s implicitly approve their own PRs.<br>The /lgtm [cancel] command(s) %s act as approval.<br>A GitHub approved or changes requested review %s act as approval or cancel respectively.", doNot(opts.IssueRequired), doNot(opts.HasSelfApproval()), willNot(opts.LgtmActsAsApprove), willNot(opts.ConsiderReviewState()))
}
pluginHelp := &pluginhelp.PluginHelp{
Description: `The approve plugin implements a pull request approval process that manages the '` + labels.Approved + `' label and an approval notification comment. Approval is achieved when the set of users that have approved the PR is capable of approving every file changed by the PR. A user is able to approve a file if their username or an alias they belong to is listed in the 'approvers' section of an OWNERS file in the directory of the file or higher in the directory tree.
<br>
<br>Per-repo configuration may be used to require that PRs link to an associated issue before approval is granted. It may also be used to specify that the PR authors implicitly approve their own PRs.
<br>For more information see <a href="https://git.k8s.io/test-infra/prow/plugins/approve/approvers/README.md">here</a>.`,
Config: approveConfig,
}
pluginHelp.AddCommand(pluginhelp.Command{
Usage: "/approve [no-issue|cancel]",
Description: "Approves a pull request",
Featured: true,
WhoCanUse: "Users listed as 'approvers' in appropriate OWNERS files.",
Examples: []string{"/approve", "/approve no-issue"},
})
return pluginHelp, nil
}
func handleGenericCommentEvent(pc plugins.Agent, ce github.GenericCommentEvent) error {
return handleGenericComment(
pc.Logger,
pc.GitHubClient,
pc.OwnersClient,
pc.Config.GitHubOptions,
pc.PluginConfig,
&ce,
)
}
func handleGenericComment(log *logrus.Entry, ghc githubClient, oc ownersClient, githubConfig config.GitHubOptions, config *plugins.Configuration, ce *github.GenericCommentEvent) error {
if ce.Action != github.GenericCommentActionCreated || !ce.IsPR || ce.IssueState == "closed" {
return nil
}
botName, err := ghc.BotName()
if err != nil {
return err
}
opts := optionsForRepo(config, ce.Repo.Owner.Login, ce.Repo.Name)
if !isApprovalCommand(botName, opts.LgtmActsAsApprove, &comment{Body: ce.Body, Author: ce.User.Login}) {
return nil
}
pr, err := ghc.GetPullRequest(ce.Repo.Owner.Login, ce.Repo.Name, ce.Number)
if err != nil {
return err
}
repo, err := oc.LoadRepoOwners(ce.Repo.Owner.Login, ce.Repo.Name, pr.Base.Ref)
if err != nil {
return err
}
return handleFunc(
log,
ghc,
repo,
githubConfig,
opts,
&state{
org: ce.Repo.Owner.Login,
repo: ce.Repo.Name,
branch: pr.Base.Ref,
number: ce.Number,
body: ce.IssueBody,
author: ce.IssueAuthor.Login,
assignees: ce.Assignees,
htmlURL: ce.IssueHTMLURL,
},
)
}
// handleReviewEvent should only handle reviews that have no approval command.
// Reviews with approval commands will be handled by handleGenericCommentEvent.
func handleReviewEvent(pc plugins.Agent, re github.ReviewEvent) error {
return handleReview(
pc.Logger,
pc.GitHubClient,
pc.OwnersClient,
pc.Config.GitHubOptions,
pc.PluginConfig,
&re,
)
}
func handleReview(log *logrus.Entry, ghc githubClient, oc ownersClient, githubConfig config.GitHubOptions, config *plugins.Configuration, re *github.ReviewEvent) error {
if re.Action != github.ReviewActionSubmitted && re.Action != github.ReviewActionDismissed {
return nil
}
botName, err := ghc.BotName()
if err != nil {
return err
}
opts := optionsForRepo(config, re.Repo.Owner.Login, re.Repo.Name)
// Check for an approval command is in the body. If one exists, let the
// genericCommentEventHandler handle this event. Approval commands override
// review state.
if isApprovalCommand(botName, opts.LgtmActsAsApprove, &comment{Body: re.Review.Body, Author: re.Review.User.Login}) {
return nil
}
// Check for an approval command via review state. If none exists, don't
// handle this event.
if !isApprovalState(botName, opts.ConsiderReviewState(), &comment{Author: re.Review.User.Login, ReviewState: re.Review.State}) {
return nil
}
repo, err := oc.LoadRepoOwners(re.Repo.Owner.Login, re.Repo.Name, re.PullRequest.Base.Ref)
if err != nil {
return err
}
return handleFunc(
log,
ghc,
repo,
githubConfig,
optionsForRepo(config, re.Repo.Owner.Login, re.Repo.Name),
&state{
org: re.Repo.Owner.Login,
repo: re.Repo.Name,
branch: re.PullRequest.Base.Ref,
number: re.PullRequest.Number,
body: re.PullRequest.Body,
author: re.PullRequest.User.Login,
assignees: re.PullRequest.Assignees,
htmlURL: re.PullRequest.HTMLURL,
},
)
}
func handlePullRequestEvent(pc plugins.Agent, pre github.PullRequestEvent) error {
return handlePullRequest(
pc.Logger,
pc.GitHubClient,
pc.OwnersClient,
pc.Config.GitHubOptions,
pc.PluginConfig,
&pre,
)
}
func handlePullRequest(log *logrus.Entry, ghc githubClient, oc ownersClient, githubConfig config.GitHubOptions, config *plugins.Configuration, pre *github.PullRequestEvent) error {
if pre.Action != github.PullRequestActionOpened &&
pre.Action != github.PullRequestActionReopened &&
pre.Action != github.PullRequestActionSynchronize &&
pre.Action != github.PullRequestActionLabeled {
return nil
}
botName, err := ghc.BotName()
if err != nil {
return err
}
if pre.Action == github.PullRequestActionLabeled &&
(pre.Label.Name != labels.Approved || pre.Sender.Login == botName || pre.PullRequest.State == "closed") {
return nil
}
repo, err := oc.LoadRepoOwners(pre.Repo.Owner.Login, pre.Repo.Name, pre.PullRequest.Base.Ref)
if err != nil {
return err
}
return handleFunc(
log,
ghc,
repo,
githubConfig,
optionsForRepo(config, pre.Repo.Owner.Login, pre.Repo.Name),
&state{
org: pre.Repo.Owner.Login,
repo: pre.Repo.Name,
branch: pre.PullRequest.Base.Ref,
number: pre.Number,
body: pre.PullRequest.Body,
author: pre.PullRequest.User.Login,
assignees: pre.PullRequest.Assignees,
htmlURL: pre.PullRequest.HTMLURL,
},
)
}
// Returns associated issue, or 0 if it can't find any.
// This is really simple, and could be improved later.
func findAssociatedIssue(body, org string) (int, error) {
associatedIssueRegex, err := regexp.Compile(fmt.Sprintf(associatedIssueRegexFormat, org))
if err != nil {
return 0, err
}
match := associatedIssueRegex.FindStringSubmatch(body)
if len(match) == 0 {
return 0, nil
}
v, err := strconv.Atoi(match[1])
if err != nil {
return 0, err
}
return v, nil
}
// handle is the workhorse the will actually make updates to the PR.
// The algorithm goes as:
// - Initially, we build an approverSet
// - Go through all comments in order of creation.
// - (Issue/PR comments, PR review comments, and PR review bodies are considered as comments)
// - If anyone said "/approve", add them to approverSet.
// - If anyone said "/lgtm" AND LgtmActsAsApprove is enabled, add them to approverSet.
// - If anyone created an approved review AND ReviewActsAsApprove is enabled, add them to approverSet.
// - Then, for each file, we see if any approver of this file is in approverSet and keep track of files without approval
// - An approver of a file is defined as:
// - Someone listed as an "approver" in an OWNERS file in the files directory OR
// - in one of the file's parent directories
// - Iff all files have been approved, the bot will add the "approved" label.
// - Iff a cancel command is found, that reviewer will be removed from the approverSet
// and the munger will remove the approved label if it has been applied
func handle(log *logrus.Entry, ghc githubClient, repo approvers.Repo, githubConfig config.GitHubOptions, opts *plugins.Approve, pr *state) error {
fetchErr := func(context string, err error) error {
return fmt.Errorf("failed to get %s for %s/%s#%d: %v", context, pr.org, pr.repo, pr.number, err)
}
changes, err := ghc.GetPullRequestChanges(pr.org, pr.repo, pr.number)
if err != nil {
return fetchErr("PR file changes", err)
}
var filenames []string
for _, change := range changes {
filenames = append(filenames, change.Filename)
}
issueLabels, err := ghc.GetIssueLabels(pr.org, pr.repo, pr.number)
if err != nil {
return fetchErr("issue labels", err)
}
hasApprovedLabel := false
for _, label := range issueLabels {
if label.Name == labels.Approved {
hasApprovedLabel = true
break
}
}
botName, err := ghc.BotName()
if err != nil {
return fetchErr("bot name", err)
}
issueComments, err := ghc.ListIssueComments(pr.org, pr.repo, pr.number)
if err != nil {
return fetchErr("issue comments", err)
}
reviewComments, err := ghc.ListPullRequestComments(pr.org, pr.repo, pr.number)
if err != nil {
return fetchErr("review comments", err)
}
reviews, err := ghc.ListReviews(pr.org, pr.repo, pr.number)
if err != nil {
return fetchErr("reviews", err)
}
approversHandler := approvers.NewApprovers(
approvers.NewOwners(
log,
filenames,
repo,
int64(pr.number),
),
)
approversHandler.AssociatedIssue, err = findAssociatedIssue(pr.body, pr.org)
if err != nil {
log.WithError(err).Errorf("Failed to find associated issue from PR body: %v", err)
}
approversHandler.RequireIssue = opts.IssueRequired
approversHandler.ManuallyApproved = humanAddedApproved(ghc, log, pr.org, pr.repo, pr.number, botName, hasApprovedLabel)
// Author implicitly approves their own PR if config allows it
if opts.HasSelfApproval() {
approversHandler.AddAuthorSelfApprover(pr.author, pr.htmlURL+"#", false)
} else {
// Treat the author as an assignee, and suggest them if possible
approversHandler.AddAssignees(pr.author)
}
commentsFromIssueComments := commentsFromIssueComments(issueComments)
comments := append(commentsFromReviewComments(reviewComments), commentsFromIssueComments...)
comments = append(comments, commentsFromReviews(reviews)...)
sort.SliceStable(comments, func(i, j int) bool {
return comments[i].CreatedAt.Before(comments[j].CreatedAt)
})
approveComments := filterComments(comments, approvalMatcher(botName, opts.LgtmActsAsApprove, opts.ConsiderReviewState()))
addApprovers(&approversHandler, approveComments, pr.author, opts.ConsiderReviewState())
for _, user := range pr.assignees {
approversHandler.AddAssignees(user.Login)
}
notifications := filterComments(commentsFromIssueComments, notificationMatcher(botName))
latestNotification := getLast(notifications)
newMessage := updateNotification(githubConfig.LinkURL, pr.org, pr.repo, pr.branch, latestNotification, approversHandler)
if newMessage != nil {
for _, notif := range notifications {
if err := ghc.DeleteComment(pr.org, pr.repo, notif.ID); err != nil {
log.WithError(err).Errorf("Failed to delete comment from %s/%s#%d, ID: %d.", pr.org, pr.repo, pr.number, notif.ID)
}
}
if err := ghc.CreateComment(pr.org, pr.repo, pr.number, *newMessage); err != nil {
log.WithError(err).Errorf("Failed to create comment on %s/%s#%d: %q.", pr.org, pr.repo, pr.number, *newMessage)
}
}
if !approversHandler.IsApproved() {
if hasApprovedLabel {
if err := ghc.RemoveLabel(pr.org, pr.repo, pr.number, labels.Approved); err != nil {
log.WithError(err).Errorf("Failed to remove %q label from %s/%s#%d.", labels.Approved, pr.org, pr.repo, pr.number)
}
}
} else if !hasApprovedLabel {
if err := ghc.AddLabel(pr.org, pr.repo, pr.number, labels.Approved); err != nil {
log.WithError(err).Errorf("Failed to add %q label to %s/%s#%d.", labels.Approved, pr.org, pr.repo, pr.number)
}
}
return nil
}
func humanAddedApproved(ghc githubClient, log *logrus.Entry, org, repo string, number int, botName string, hasLabel bool) func() bool {
findOut := func() bool {
if !hasLabel {
return false
}
events, err := ghc.ListIssueEvents(org, repo, number)
if err != nil {
log.WithError(err).Errorf("Failed to list issue events for %s/%s#%d.", org, repo, number)
return false
}
var lastAdded github.ListedIssueEvent
for _, event := range events {
// Only consider "approved" label added events.
if event.Event != github.IssueActionLabeled || event.Label.Name != labels.Approved {
continue
}
lastAdded = event
}
if lastAdded.Actor.Login == "" || lastAdded.Actor.Login == botName || isDeprecatedBot(lastAdded.Actor.Login) {
return false
}
return true
}
var cache *bool
return func() bool {
if cache == nil {
val := findOut()
cache = &val
}
return *cache
}
}
func approvalMatcher(botName string, lgtmActsAsApprove, reviewActsAsApprove bool) func(*comment) bool {
return func(c *comment) bool {
return isApprovalCommand(botName, lgtmActsAsApprove, c) || isApprovalState(botName, reviewActsAsApprove, c)
}
}
func isApprovalCommand(botName string, lgtmActsAsApprove bool, c *comment) bool {
if c.Author == botName || isDeprecatedBot(c.Author) {
return false
}
for _, match := range commandRegex.FindAllStringSubmatch(c.Body, -1) {
cmd := strings.ToUpper(match[1])
if (cmd == lgtmCommand && lgtmActsAsApprove) || cmd == approveCommand {
return true
}
}
return false
}
func isApprovalState(botName string, reviewActsAsApprove bool, c *comment) bool {
if c.Author == botName || isDeprecatedBot(c.Author) {
return false
}
// The review webhook returns state as lowercase, while the review API
// returns state as uppercase. Uppercase the value here so it always
// matches the constant.
reviewState := github.ReviewState(strings.ToUpper(string(c.ReviewState)))
// ReviewStateApproved = /approve
// ReviewStateChangesRequested = /approve cancel
// ReviewStateDismissed = remove previous approval or disapproval
// (Reviews can go from Approved or ChangesRequested to Dismissed
// state if the Dismiss action is used)
if reviewActsAsApprove && (reviewState == github.ReviewStateApproved ||
reviewState == github.ReviewStateChangesRequested ||
reviewState == github.ReviewStateDismissed) {
return true
}
return false
}
func notificationMatcher(botName string) func(*comment) bool {
return func(c *comment) bool {
if c.Author != botName && !isDeprecatedBot(c.Author) {
return false
}
match := notificationRegex.FindStringSubmatch(c.Body)
return len(match) > 0
}
}
func updateNotification(linkURL *url.URL, org, repo, branch string, latestNotification *comment, approversHandler approvers.Approvers) *string {
message := approvers.GetMessage(approversHandler, linkURL, org, repo, branch)
if message == nil || (latestNotification != nil && strings.Contains(latestNotification.Body, *message)) {
return nil
}
return message
}
// addApprovers iterates through the list of comments on a PR
// and identifies all of the people that have said /approve and adds
// them to the Approvers. The function uses the latest approve or cancel comment
// to determine the Users intention. A review in requested changes state is
// considered a cancel.
func addApprovers(approversHandler *approvers.Approvers, approveComments []*comment, author string, reviewActsAsApprove bool) {
for _, c := range approveComments {
if c.Author == "" {
continue
}
if reviewActsAsApprove && c.ReviewState == github.ReviewStateApproved {
approversHandler.AddApprover(
c.Author,
c.HTMLURL,
false,
)
}
if reviewActsAsApprove && c.ReviewState == github.ReviewStateChangesRequested {
approversHandler.RemoveApprover(c.Author)
}
for _, match := range commandRegex.FindAllStringSubmatch(c.Body, -1) {
name := strings.ToUpper(match[1])
if name != approveCommand && name != lgtmCommand {
continue
}
args := strings.ToLower(strings.TrimSpace(match[2]))
if strings.Contains(args, cancelArgument) {
approversHandler.RemoveApprover(c.Author)
continue
}
if c.Author == author {
approversHandler.AddAuthorSelfApprover(
c.Author,
c.HTMLURL,
args == noIssueArgument,
)
}
if name == approveCommand {
approversHandler.AddApprover(
c.Author,
c.HTMLURL,
args == noIssueArgument,
)
} else {
approversHandler.AddLGTMer(
c.Author,
c.HTMLURL,
args == noIssueArgument,
)
}
}
}
}
// optionsForRepo gets the plugins.Approve struct that is applicable to the indicated repo.
func optionsForRepo(config *plugins.Configuration, org, repo string) *plugins.Approve {
fullName := fmt.Sprintf("%s/%s", org, repo)
a := func() *plugins.Approve {
// First search for repo config
for _, c := range config.Approve {
if !sets.NewString(c.Repos...).Has(fullName) {
continue
}
return &c
}
// If you don't find anything, loop again looking for an org config
for _, c := range config.Approve {
if !sets.NewString(c.Repos...).Has(org) {
continue
}
return &c
}
// Return an empty config, and use plugin defaults
return &plugins.Approve{}
}()
if a.DeprecatedImplicitSelfApprove == nil && a.RequireSelfApproval == nil && config.UseDeprecatedSelfApprove {
no := false
a.DeprecatedImplicitSelfApprove = &no
}
if a.DeprecatedReviewActsAsApprove == nil && a.IgnoreReviewState == nil && config.UseDeprecatedReviewApprove {
no := false
a.DeprecatedReviewActsAsApprove = &no
}
return a
}
type comment struct {
Body string
Author string
CreatedAt time.Time
HTMLURL string
ID int
ReviewState github.ReviewState
}
func commentFromIssueComment(ic *github.IssueComment) *comment {
if ic == nil {
return nil
}
return &comment{
Body: ic.Body,
Author: ic.User.Login,
CreatedAt: ic.CreatedAt,
HTMLURL: ic.HTMLURL,
ID: ic.ID,
}
}
func commentsFromIssueComments(ics []github.IssueComment) []*comment {
comments := make([]*comment, 0, len(ics))
for i := range ics {
comments = append(comments, commentFromIssueComment(&ics[i]))
}
return comments
}
func commentFromReviewComment(rc *github.ReviewComment) *comment {
if rc == nil {
return nil
}
return &comment{
Body: rc.Body,
Author: rc.User.Login,
CreatedAt: rc.CreatedAt,
HTMLURL: rc.HTMLURL,
ID: rc.ID,
}
}
func commentsFromReviewComments(rcs []github.ReviewComment) []*comment {
comments := make([]*comment, 0, len(rcs))
for i := range rcs {
comments = append(comments, commentFromReviewComment(&rcs[i]))
}
return comments
}
func commentFromReview(review *github.Review) *comment {
if review == nil {
return nil
}
return &comment{
Body: review.Body,
Author: review.User.Login,
CreatedAt: review.SubmittedAt,
HTMLURL: review.HTMLURL,
ID: review.ID,
ReviewState: review.State,
}
}
func commentsFromReviews(reviews []github.Review) []*comment {
comments := make([]*comment, 0, len(reviews))
for i := range reviews {
comments = append(comments, commentFromReview(&reviews[i]))
}
return comments
}
func filterComments(comments []*comment, filter func(*comment) bool) []*comment {
filtered := make([]*comment, 0, len(comments))
for _, c := range comments {
if filter(c) {
filtered = append(filtered, c)
}
}
return filtered
}
func getLast(cs []*comment) *comment {
if len(cs) == 0 {
return nil
}
return cs[len(cs)-1]
}
func isDeprecatedBot(login string) bool {
for _, deprecated := range deprecatedBotNames {
if deprecated == login {
return true
}
}
return false
}