mirror of
https://github.com/thegeeklab/wp-github-comment.git
synced 2024-11-12 16:40:40 +00:00
97 lines
2.4 KiB
Go
97 lines
2.4 KiB
Go
package plugin
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/google/go-github/v61/github"
|
|
)
|
|
|
|
var ErrCommentNotFound = errors.New("no comment found")
|
|
|
|
type GithubClient struct {
|
|
Client *github.Client
|
|
Issue *GithubIssue
|
|
}
|
|
|
|
type GithubIssue struct {
|
|
*github.Client
|
|
Number int
|
|
Message string
|
|
Key string
|
|
Repo string
|
|
Owner string
|
|
Update bool
|
|
}
|
|
|
|
// Constructor function for Parent.
|
|
func NewGithubClient(client *github.Client) *GithubClient {
|
|
return &GithubClient{
|
|
Client: client,
|
|
Issue: &GithubIssue{Client: client},
|
|
}
|
|
}
|
|
|
|
// AddComment adds a new comment or updates an existing comment on a GitHub issue.
|
|
// If the Update field is true, it will append a unique identifier to the comment
|
|
// body and attempt to find and update the existing comment with that identifier.
|
|
// Otherwise, it will create a new comment on the issue.
|
|
func (i *GithubIssue) AddComment(ctx context.Context) (*github.IssueComment, error) {
|
|
issueComment := &github.IssueComment{
|
|
Body: &i.Message,
|
|
}
|
|
|
|
if i.Update {
|
|
// Append plugin comment ID to comment message so we can search for it later
|
|
*issueComment.Body = fmt.Sprintf("%s\n<!-- id: %s -->\n", i.Message, i.Key)
|
|
|
|
comment, err := i.FindComment(ctx)
|
|
if err != nil && !errors.Is(err, ErrCommentNotFound) {
|
|
return comment, err
|
|
}
|
|
|
|
if comment != nil {
|
|
comment, _, err = i.Client.Issues.EditComment(ctx, i.Owner, i.Repo, *comment.ID, issueComment)
|
|
|
|
return comment, err
|
|
}
|
|
}
|
|
|
|
comment, _, err := i.Client.Issues.CreateComment(ctx, i.Owner, i.Repo, i.Number, issueComment)
|
|
|
|
return comment, err
|
|
}
|
|
|
|
// FindComment returns the GitHub issue comment that contains the specified key, or nil if no such comment exists.
|
|
// It retrieves all comments on the issue and searches for one that contains the specified key in the comment body.
|
|
func (i *GithubIssue) FindComment(ctx context.Context) (*github.IssueComment, error) {
|
|
var allComments []*github.IssueComment
|
|
|
|
opts := &github.IssueListCommentsOptions{}
|
|
|
|
for {
|
|
comments, resp, err := i.Client.Issues.ListComments(ctx, i.Owner, i.Repo, i.Number, opts)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
allComments = append(allComments, comments...)
|
|
|
|
if resp.NextPage == 0 {
|
|
break
|
|
}
|
|
|
|
opts.Page = resp.NextPage
|
|
}
|
|
|
|
for _, comment := range allComments {
|
|
if strings.Contains(*comment.Body, fmt.Sprintf("<!-- id: %s -->", i.Key)) {
|
|
return comment, nil
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("%w key: %s", ErrCommentNotFound, i.Key)
|
|
}
|