Documentation ¶
Index ¶
- Constants
- type Client
- func (c *Client) CommitStatus(ctx context.Context, pr vcs.PullRequest, status pkg.CommitState) error
- func (c *Client) CreateHook(ctx context.Context, ownerAndRepoName, webhookUrl, webhookSecret string) error
- func (c *Client) Email() string
- func (c *Client) GetHookByUrl(ctx context.Context, ownerAndRepoName, webhookUrl string) (*vcs.WebHookConfig, error)
- func (c *Client) GetName() string
- func (c *Client) LoadHook(ctx context.Context, id string) (vcs.PullRequest, error)
- func (c *Client) ParseHook(r *http.Request, request []byte) (vcs.PullRequest, error)
- func (c *Client) PostMessage(ctx context.Context, pr vcs.PullRequest, message string) *msg.Message
- func (c *Client) TidyOutdatedComments(ctx context.Context, pr vcs.PullRequest) error
- func (c *Client) ToEmoji(s pkg.CommitState) string
- func (c *Client) UpdateMessage(ctx context.Context, m *msg.Message, msg string) error
- func (c *Client) Username() string
- func (c *Client) VerifyHook(r *http.Request, secret string) ([]byte, error)
- type GClient
- type IssuesService
- type IssuesServices
- type PullRequestsService
- type PullRequestsServices
- type RepositoriesService
- type RepositoriesServices
Constants ¶
View Source
const MaxCommentLength = 64 * 1024
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func CreateGithubClient ¶
func CreateGithubClient(cfg config.ServerConfig) (*Client, error)
CreateGithubClient creates a new GitHub client using the auth token provided. We can't validate the token at this point, so if it exists we assume it works
func (*Client) CommitStatus ¶
func (c *Client) CommitStatus(ctx context.Context, pr vcs.PullRequest, status pkg.CommitState) error
func (*Client) CreateHook ¶
func (*Client) GetHookByUrl ¶
func (*Client) PostMessage ¶
func (*Client) TidyOutdatedComments ¶
func (*Client) ToEmoji ¶ added in v1.4.3
func (c *Client) ToEmoji(s pkg.CommitState) string
ToEmoji returns a string representation of this state for use in the request
func (*Client) UpdateMessage ¶
type GClient ¶ added in v1.6.4
type GClient struct { PullRequests PullRequestsServices Repositories RepositoriesServices Issues IssuesServices }
GClient is a struct that holds the services for the GitHub client
type IssuesService ¶ added in v1.6.4
type IssuesService struct {
IssuesServices
}
type IssuesServices ¶ added in v1.6.4
type IssuesServices interface { CreateComment(ctx context.Context, owner string, repo string, number int, comment *github.IssueComment) (*github.IssueComment, *github.Response, error) DeleteComment(ctx context.Context, owner string, repo string, commentID int64) (*github.Response, error) ListComments(ctx context.Context, owner string, repo string, number int, opts *github.IssueListCommentsOptions) ([]*github.IssueComment, *github.Response, error) EditComment(ctx context.Context, owner string, repo string, commentID int64, comment *github.IssueComment) (*github.IssueComment, *github.Response, error) }
type PullRequestsService ¶ added in v1.6.4
type PullRequestsService struct {
PullRequestsServices
}
type PullRequestsServices ¶ added in v1.6.4
type PullRequestsServices interface { List(ctx context.Context, owner string, repo string, opts *github.PullRequestListOptions) ([]*github.PullRequest, *github.Response, error) ListFiles(ctx context.Context, owner string, repo string, number int, opts *github.ListOptions) ([]*github.CommitFile, *github.Response, error) GetRaw(ctx context.Context, owner string, repo string, number int, opts github.RawOptions) (string, *github.Response, error) Get(ctx context.Context, owner string, repo string, number int) (*github.PullRequest, *github.Response, error) }
type RepositoriesService ¶ added in v1.6.4
type RepositoriesService struct {
RepositoriesServices
}
type RepositoriesServices ¶ added in v1.6.4
type RepositoriesServices interface { GetContents(ctx context.Context, owner, repo, path string, opts *github.RepositoryContentGetOptions) (fileContent *github.RepositoryContent, directoryContent []*github.RepositoryContent, resp *github.Response, err error) Get(ctx context.Context, owner, repo string) (*github.Repository, *github.Response, error) CreateStatus(ctx context.Context, owner, repo, ref string, status *github.RepoStatus) (*github.RepoStatus, *github.Response, error) CreateHook(ctx context.Context, owner, repo string, hook *github.Hook) (*github.Hook, *github.Response, error) ListHooks(ctx context.Context, owner, repo string, opts *github.ListOptions) ([]*github.Hook, *github.Response, error) }
Click to show internal directories.
Click to hide internal directories.