go-sdk/gitea/issue_comment.go

58 lines
1.9 KiB
Go
Raw Normal View History

2016-08-25 09:28:09 +05:30
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package gitea
2016-08-25 09:19:11 +05:30
import (
"bytes"
"encoding/json"
"fmt"
"time"
)
// Comment represents a comment in commit and issue page.
type Comment struct {
2016-08-25 09:28:09 +05:30
ID int64 `json:"id"`
Poster *User `json:"user"`
Body string `json:"body"`
Created time.Time `json:"created_at"`
Updated time.Time `json:"updated_at"`
2016-08-25 09:19:11 +05:30
}
2016-08-25 09:28:09 +05:30
// ListIssueComments list comments on an issue.
func (c *Client) ListIssueComments(owner, repo string, index int64) ([]*Comment, error) {
2016-08-25 09:19:11 +05:30
comments := make([]*Comment, 0, 10)
2016-08-25 09:28:09 +05:30
return comments, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/%d/comments", owner, repo, index), nil, nil, &comments)
2016-08-25 09:19:11 +05:30
}
2016-08-25 09:28:09 +05:30
// CreateIssueCommentOption is option when creating an issue comment.
2016-08-25 09:19:11 +05:30
type CreateIssueCommentOption struct {
2016-08-25 09:28:09 +05:30
Body string `json:"body" binding:"Required"`
2016-08-25 09:19:11 +05:30
}
2016-08-25 09:28:09 +05:30
// CreateIssueComment create comment on an issue.
func (c *Client) CreateIssueComment(owner, repo string, index int64, opt CreateIssueCommentOption) (*Comment, error) {
2016-08-25 09:19:11 +05:30
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
comment := new(Comment)
2016-08-25 09:28:09 +05:30
return comment, c.getParsedResponse("POST", fmt.Sprintf("/repos/:%s/:%s/issues/%d/comments", owner, repo, index), jsonHeader, bytes.NewReader(body), comment)
2016-08-25 09:19:11 +05:30
}
2016-08-25 09:28:09 +05:30
// EditIssueCommentOption is option when editing an issue comment.
2016-08-25 09:19:11 +05:30
type EditIssueCommentOption struct {
2016-08-25 09:28:09 +05:30
Body string `json:"body" binding:"Required"`
2016-08-25 09:19:11 +05:30
}
2016-08-25 09:28:09 +05:30
// EditIssueComment edits an issue comment.
func (c *Client) EditIssueComment(owner, repo string, index, commentID int64, opt EditIssueCommentOption) (*Comment, error) {
2016-08-25 09:19:11 +05:30
body, err := json.Marshal(&opt)
if err != nil {
return nil, err
}
comment := new(Comment)
2016-08-25 09:28:09 +05:30
return comment, c.getParsedResponse("PATCH", fmt.Sprintf("/repos/:%s/:%s/issues/%d/comments/%d", owner, repo, index, commentID), jsonHeader, bytes.NewReader(body), comment)
2016-08-25 09:19:11 +05:30
}