| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 | // 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 githubimport (	"context"	"fmt"	"strings")// 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)}// ListCommentReactions lists the reactions for a commit comment.//// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-a-commit-commentfunc (s *ReactionsService) ListCommentReactions(ctx context.Context, owner, repo string, id int64, opt *ListOptions) ([]*Reaction, *Response, error) {	u := fmt.Sprintf("repos/%v/%v/comments/%v/reactions", owner, repo, id)	u, err := addOptions(u, opt)	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	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.//// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-commentfunc (s ReactionsService) CreateCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	m := &Reaction{}	resp, err := s.client.Do(ctx, req, m)	if err != nil {		return nil, resp, err	}	return m, resp, nil}// ListIssueReactions lists the reactions for an issue.//// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-an-issuefunc (s *ReactionsService) ListIssueReactions(ctx context.Context, owner, repo string, number int, opt *ListOptions) ([]*Reaction, *Response, error) {	u := fmt.Sprintf("repos/%v/%v/issues/%v/reactions", owner, repo, number)	u, err := addOptions(u, opt)	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	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.//// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-an-issuefunc (s ReactionsService) CreateIssueReaction(ctx context.Context, owner, repo string, number int, content string) (*Reaction, *Response, error) {	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	m := &Reaction{}	resp, err := s.client.Do(ctx, req, m)	if err != nil {		return nil, resp, err	}	return m, resp, nil}// ListIssueCommentReactions lists the reactions for an issue comment.//// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-commentfunc (s *ReactionsService) ListIssueCommentReactions(ctx context.Context, owner, repo string, id int64, opt *ListOptions) ([]*Reaction, *Response, error) {	u := fmt.Sprintf("repos/%v/%v/issues/comments/%v/reactions", owner, repo, id)	u, err := addOptions(u, opt)	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	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.//// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-commentfunc (s ReactionsService) CreateIssueCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	m := &Reaction{}	resp, err := s.client.Do(ctx, req, m)	if err != nil {		return nil, resp, err	}	return m, resp, nil}// ListPullRequestCommentReactions lists the reactions for a pull request review comment.//// GitHub API docs: https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-commentfunc (s *ReactionsService) ListPullRequestCommentReactions(ctx context.Context, owner, repo string, id int64, opt *ListOptions) ([]*Reaction, *Response, error) {	u := fmt.Sprintf("repos/%v/%v/pulls/comments/%v/reactions", owner, repo, id)	u, err := addOptions(u, opt)	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	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.//// GitHub API docs: https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-commentfunc (s ReactionsService) CreatePullRequestCommentReaction(ctx context.Context, owner, repo string, id int64, content string) (*Reaction, *Response, error) {	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.	acceptHeaders := []string{mediaTypeReactionsPreview, mediaTypeGraphQLNodeIDPreview}	req.Header.Set("Accept", strings.Join(acceptHeaders, ", "))	m := &Reaction{}	resp, err := s.client.Do(ctx, req, m)	if err != nil {		return nil, resp, err	}	return m, resp, nil}// DeleteReaction deletes a reaction.//// GitHub API docs: https://developer.github.com/v3/reaction/reactions/#delete-a-reaction-archivefunc (s *ReactionsService) DeleteReaction(ctx context.Context, id int64) (*Response, error) {	u := fmt.Sprintf("reactions/%v", id)	req, err := s.client.NewRequest("DELETE", u, nil)	if err != nil {		return nil, err	}	// TODO: remove custom Accept header when this API fully launches.	req.Header.Set("Accept", mediaTypeReactionsPreview)	return s.client.Do(ctx, req, nil)}
 |