You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
493 lines
18 KiB
493 lines
18 KiB
6 years ago
|
// Copyright 2016 The go-github AUTHORS. All rights reserved.
|
||
|
//
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package github
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
4 years ago
|
"net/http"
|
||
6 years ago
|
)
|
||
|
|
||
|
// ReactionsService provides access to the reactions-related functions in the
|
||
|
// GitHub API.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/
|
||
|
type ReactionsService service
|
||
|
|
||
|
// Reaction represents a GitHub reaction.
|
||
|
type Reaction struct {
|
||
|
// ID is the Reaction ID.
|
||
|
ID *int64 `json:"id,omitempty"`
|
||
|
User *User `json:"user,omitempty"`
|
||
|
NodeID *string `json:"node_id,omitempty"`
|
||
|
// Content is the type of reaction.
|
||
|
// Possible values are:
|
||
|
// "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
Content *string `json:"content,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Reactions represents a summary of GitHub reactions.
|
||
|
type Reactions struct {
|
||
|
TotalCount *int `json:"total_count,omitempty"`
|
||
|
PlusOne *int `json:"+1,omitempty"`
|
||
|
MinusOne *int `json:"-1,omitempty"`
|
||
|
Laugh *int `json:"laugh,omitempty"`
|
||
|
Confused *int `json:"confused,omitempty"`
|
||
|
Heart *int `json:"heart,omitempty"`
|
||
|
Hooray *int `json:"hooray,omitempty"`
|
||
|
URL *string `json:"url,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (r Reaction) String() string {
|
||
|
return Stringify(r)
|
||
|
}
|
||
|
|
||
4 years ago
|
// ListCommentReactionOptions specifies the optional parameters to the
|
||
|
// ReactionsService.ListCommentReactions method.
|
||
|
type ListCommentReactionOptions struct {
|
||
|
// Content restricts the returned comment reactions to only those with the given type.
|
||
|
// Omit this parameter to list all reactions to a commit comment.
|
||
|
// Possible values are: "+1", "-1", "laugh", "confused", "heart", "hooray", "rocket", or "eyes".
|
||
|
Content string `url:"content,omitempty"`
|
||
|
|
||
|
ListOptions
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListCommentReactions lists the reactions for a commit comment.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-comment
|
||
4 years ago
|
func (s *ReactionsService) ListCommentReactions(ctx context.Context, owner, repo string, id int64, opts *ListCommentReactionOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/comments/%v/reactions", owner, repo, id)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreateCommentReaction creates a reaction for a commit comment.
|
||
|
// Note that if you have already created a reaction of type content, the
|
||
|
// previously created reaction will be returned with Status: 200 OK.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment
|
||
4 years ago
|
func (s *ReactionsService) CreateCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/comments/%v/reactions", owner, repo, id)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeleteCommentReaction deletes the reaction for a commit comment.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-a-commit-comment-reaction
|
||
|
func (s *ReactionsService) DeleteCommentReaction(ctx context.Context, owner, repo string, commentID, reactionID int64) (*Response, error) {
|
||
|
u := fmt.Sprintf("repos/%v/%v/comments/%v/reactions/%v", owner, repo, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, u)
|
||
|
}
|
||
|
|
||
|
// DeleteCommentReactionByID deletes the reaction for a commit comment by repository ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-a-commit-comment-reaction
|
||
|
func (s *ReactionsService) DeleteCommentReactionByID(ctx context.Context, repoID, commentID, reactionID int64) (*Response, error) {
|
||
|
u := fmt.Sprintf("repositories/%v/comments/%v/reactions/%v", repoID, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, u)
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListIssueReactions lists the reactions for an issue.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-an-issue
|
||
4 years ago
|
func (s *ReactionsService) ListIssueReactions(ctx context.Context, owner, repo string, number int, opts *ListOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/issues/%v/reactions", owner, repo, number)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreateIssueReaction creates a reaction for an issue.
|
||
|
// Note that if you have already created a reaction of type content, the
|
||
|
// previously created reaction will be returned with Status: 200 OK.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-an-issue
|
||
4 years ago
|
func (s *ReactionsService) CreateIssueReaction(ctx context.Context, owner, repo string, number int, content string) (*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/issues/%v/reactions", owner, repo, number)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeleteIssueReaction deletes the reaction to an issue.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-an-issue-reaction
|
||
|
func (s *ReactionsService) DeleteIssueReaction(ctx context.Context, owner, repo string, issueNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repos/%v/%v/issues/%v/reactions/%v", owner, repo, issueNumber, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
// DeleteIssueReactionByID deletes the reaction to an issue by repository ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-an-issue-reaction
|
||
|
func (s *ReactionsService) DeleteIssueReactionByID(ctx context.Context, repoID, issueNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repositories/%v/issues/%v/reactions/%v", repoID, issueNumber, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListIssueCommentReactions lists the reactions for an issue comment.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
|
||
4 years ago
|
func (s *ReactionsService) ListIssueCommentReactions(ctx context.Context, owner, repo string, id int64, opts *ListOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/issues/comments/%v/reactions", owner, repo, id)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreateIssueCommentReaction creates a reaction for an issue comment.
|
||
|
// Note that if you have already created a reaction of type content, the
|
||
|
// previously created reaction will be returned with Status: 200 OK.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment
|
||
4 years ago
|
func (s *ReactionsService) CreateIssueCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/issues/comments/%v/reactions", owner, repo, id)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeleteIssueCommentReaction deletes the reaction to an issue comment.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-an-issue-comment-reaction
|
||
|
func (s *ReactionsService) DeleteIssueCommentReaction(ctx context.Context, owner, repo string, commentID, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repos/%v/%v/issues/comments/%v/reactions/%v", owner, repo, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
// DeleteIssueCommentReactionByID deletes the reaction to an issue comment by repository ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-an-issue-comment-reaction
|
||
|
func (s *ReactionsService) DeleteIssueCommentReactionByID(ctx context.Context, repoID, commentID, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repositories/%v/issues/comments/%v/reactions/%v", repoID, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListPullRequestCommentReactions lists the reactions for a pull request review comment.
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment
|
||
|
func (s *ReactionsService) ListPullRequestCommentReactions(ctx context.Context, owner, repo string, id int64, opts *ListOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/pulls/comments/%v/reactions", owner, repo, id)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreatePullRequestCommentReaction creates a reaction for a pull request review comment.
|
||
|
// Note that if you have already created a reaction of type content, the
|
||
|
// previously created reaction will be returned with Status: 200 OK.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-a-pull-request-review-comment
|
||
|
func (s *ReactionsService) CreatePullRequestCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("repos/%v/%v/pulls/comments/%v/reactions", owner, repo, id)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeletePullRequestCommentReaction deletes the reaction to a pull request review comment.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-a-pull-request-comment-reaction
|
||
|
func (s *ReactionsService) DeletePullRequestCommentReaction(ctx context.Context, owner, repo string, commentID, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repos/%v/%v/pulls/comments/%v/reactions/%v", owner, repo, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
// DeletePullRequestCommentReactionByID deletes the reaction to a pull request review comment by repository ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-a-pull-request-comment-reaction
|
||
|
func (s *ReactionsService) DeletePullRequestCommentReactionByID(ctx context.Context, repoID, commentID, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("repositories/%v/pulls/comments/%v/reactions/%v", repoID, commentID, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListTeamDiscussionReactions lists the reactions for a team discussion.
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-a-team-discussion-legacy
|
||
|
func (s *ReactionsService) ListTeamDiscussionReactions(ctx context.Context, teamID int64, discussionNumber int, opts *ListOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("teams/%v/discussions/%v/reactions", teamID, discussionNumber)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreateTeamDiscussionReaction creates a reaction for a team discussion.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-a-team-discussion-legacy
|
||
6 years ago
|
func (s *ReactionsService) CreateTeamDiscussionReaction(ctx context.Context, teamID int64, discussionNumber int, content string) (*Reaction, *Response, error) {
|
||
|
u := fmt.Sprintf("teams/%v/discussions/%v/reactions", teamID, discussionNumber)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeleteTeamDiscussionReaction deletes the reaction to a team discussion.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-team-discussion-reaction
|
||
|
func (s *ReactionsService) DeleteTeamDiscussionReaction(ctx context.Context, org, teamSlug string, discussionNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("orgs/%v/teams/%v/discussions/%v/reactions/%v", org, teamSlug, discussionNumber, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
// DeleteTeamDiscussionReactionByOrgIDAndTeamID deletes the reaction to a team discussion by organization ID and team ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-team-discussion-reaction
|
||
|
func (s *ReactionsService) DeleteTeamDiscussionReactionByOrgIDAndTeamID(ctx context.Context, orgID, teamID, discussionNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("organizations/%v/team/%v/discussions/%v/reactions/%v", orgID, teamID, discussionNumber, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
6 years ago
|
// ListTeamDiscussionCommentReactions lists the reactions for a team discussion comment.
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-a-team-discussion-comment-legacy
|
||
|
func (s *ReactionsService) ListTeamDiscussionCommentReactions(ctx context.Context, teamID int64, discussionNumber, commentNumber int, opts *ListOptions) ([]*Reaction, *Response, error) {
|
||
6 years ago
|
u := fmt.Sprintf("teams/%v/discussions/%v/comments/%v/reactions", teamID, discussionNumber, commentNumber)
|
||
4 years ago
|
u, err := addOptions(u, opts)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req, err := s.client.NewRequest("GET", u, nil)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
var m []*Reaction
|
||
|
resp, err := s.client.Do(ctx, req, &m)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
|
// CreateTeamDiscussionCommentReaction creates a reaction for a team discussion comment.
|
||
|
// The content should have one of the following values: "+1", "-1", "laugh", "confused", "heart", "hooray".
|
||
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-a-team-discussion-comment-legacy
|
||
6 years ago
|
func (s *ReactionsService) CreateTeamDiscussionCommentReaction(ctx context.Context, teamID int64, discussionNumber, commentNumber int, content string) (*Reaction, *Response, error) {
|
||
|
u := fmt.Sprintf("teams/%v/discussions/%v/comments/%v/reactions", teamID, discussionNumber, commentNumber)
|
||
|
|
||
|
body := &Reaction{Content: String(content)}
|
||
|
req, err := s.client.NewRequest("POST", u, body)
|
||
|
if err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
|
||
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
m := &Reaction{}
|
||
|
resp, err := s.client.Do(ctx, req, m)
|
||
|
if err != nil {
|
||
|
return nil, resp, err
|
||
|
}
|
||
|
|
||
|
return m, resp, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
// DeleteTeamDiscussionCommentReaction deletes the reaction to a team discussion comment.
|
||
6 years ago
|
//
|
||
4 years ago
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-team-discussion-comment-reaction
|
||
|
func (s *ReactionsService) DeleteTeamDiscussionCommentReaction(ctx context.Context, org, teamSlug string, discussionNumber, commentNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("orgs/%v/teams/%v/discussions/%v/comments/%v/reactions/%v", org, teamSlug, discussionNumber, commentNumber, reactionID)
|
||
6 years ago
|
|
||
4 years ago
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
// DeleteTeamDiscussionCommentReactionByOrgIDAndTeamID deletes the reaction to a team discussion comment by organization ID and team ID.
|
||
|
//
|
||
|
// GitHub API docs: https://developer.github.com/v3/reactions/#delete-team-discussion-comment-reaction
|
||
|
func (s *ReactionsService) DeleteTeamDiscussionCommentReactionByOrgIDAndTeamID(ctx context.Context, orgID, teamID, discussionNumber, commentNumber int, reactionID int64) (*Response, error) {
|
||
|
url := fmt.Sprintf("organizations/%v/team/%v/discussions/%v/comments/%v/reactions/%v", orgID, teamID, discussionNumber, commentNumber, reactionID)
|
||
|
|
||
|
return s.deleteReaction(ctx, url)
|
||
|
}
|
||
|
|
||
|
func (s *ReactionsService) deleteReaction(ctx context.Context, url string) (*Response, error) {
|
||
|
req, err := s.client.NewRequest(http.MethodDelete, url, nil)
|
||
6 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
4 years ago
|
// TODO: remove custom Accept headers when APIs fully launch.
|
||
6 years ago
|
req.Header.Set("Accept", mediaTypeReactionsPreview)
|
||
|
|
||
|
return s.client.Do(ctx, req, nil)
|
||
|
}
|