drone-github-comment/plugin/comment.go

86 lines
1.7 KiB
Go
Raw Permalink Normal View History

2020-09-20 00:00:34 +02:00
package plugin
import (
"context"
"fmt"
"strings"
"github.com/google/go-github/v54/github"
2020-09-20 00:00:34 +02:00
)
// Release holds ties the drone env data and github client together.
type commentClient struct {
Message string
Update bool
Key string
Repo string
Owner string
IssueNum int
*github.Client
}
func (cc *commentClient) issueComment(ctx context.Context) error {
var (
err error
comment *github.IssueComment
resp *github.Response
)
2020-09-20 00:00:34 +02:00
issueComment := &github.IssueComment{
2020-09-20 00:00:34 +02:00
Body: &cc.Message,
}
if cc.Update {
// Append plugin comment ID to comment message so we can search for it later
message := fmt.Sprintf("%s\n<!-- id: %s -->\n", cc.Message, cc.Key)
issueComment.Body = &message
2020-09-20 00:00:34 +02:00
comment, err = cc.comment(ctx)
2020-09-20 00:00:34 +02:00
if err == nil && comment != nil {
_, resp, err = cc.Client.Issues.EditComment(ctx, cc.Owner, cc.Repo, *comment.ID, issueComment)
2020-09-20 00:00:34 +02:00
}
}
if err == nil && resp == nil {
_, _, err = cc.Client.Issues.CreateComment(ctx, cc.Owner, cc.Repo, cc.IssueNum, issueComment)
2020-09-20 00:00:34 +02:00
}
if err != nil {
return err
2020-09-20 00:00:34 +02:00
}
return nil
}
func (cc *commentClient) comment(ctx context.Context) (*github.IssueComment, error) {
2020-09-20 00:00:34 +02:00
var allComments []*github.IssueComment
opts := &github.IssueListCommentsOptions{}
for {
comments, resp, err := cc.Client.Issues.ListComments(ctx, cc.Owner, cc.Repo, cc.IssueNum, opts)
2020-09-20 00:00:34 +02:00
if err != nil {
return nil, err
}
allComments = append(allComments, comments...)
2020-09-20 00:00:34 +02:00
if resp.NextPage == 0 {
break
}
2020-09-20 00:00:34 +02:00
opts.Page = resp.NextPage
}
for _, comment := range allComments {
if strings.Contains(*comment.Body, fmt.Sprintf("<!-- id: %s -->", cc.Key)) {
return comment, nil
}
}
//nolint:nilnil
2020-09-20 00:00:34 +02:00
return nil, nil
}