mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* update code.gitea.io/sdk/gitea v0.13.1 -> v0.13.2 * update github.com/go-swagger/go-swagger v0.25.0 -> v0.26.0 * update github.com/google/uuid v1.1.2 -> v1.2.0 * update github.com/klauspost/compress v1.11.3 -> v1.11.7 * update github.com/lib/pq 083382b7e6fc -> v1.9.0 * update github.com/markbates/goth v1.65.0 -> v1.66.1 * update github.com/mattn/go-sqlite3 v1.14.4 -> v1.14.6 * update github.com/mgechev/revive 246eac737dc7 -> v1.0.3 * update github.com/minio/minio-go/v7 v7.0.6 -> v7.0.7 * update github.com/niklasfasching/go-org v1.3.2 -> v1.4.0 * update github.com/olivere/elastic/v7 v7.0.21 -> v7.0.22 * update github.com/pquerna/otp v1.2.0 -> v1.3.0 * update github.com/xanzy/go-gitlab v0.39.0 -> v0.42.0 * update github.com/yuin/goldmark v1.2.1 -> v1.3.1
		
			
				
	
	
		
			136 lines
		
	
	
	
		
			4.5 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			136 lines
		
	
	
	
		
			4.5 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// 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
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"encoding/json"
 | 
						|
	"fmt"
 | 
						|
	"net/url"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
// Comment represents a comment on a commit or issue
 | 
						|
type Comment struct {
 | 
						|
	ID               int64     `json:"id"`
 | 
						|
	HTMLURL          string    `json:"html_url"`
 | 
						|
	PRURL            string    `json:"pull_request_url"`
 | 
						|
	IssueURL         string    `json:"issue_url"`
 | 
						|
	Poster           *User     `json:"user"`
 | 
						|
	OriginalAuthor   string    `json:"original_author"`
 | 
						|
	OriginalAuthorID int64     `json:"original_author_id"`
 | 
						|
	Body             string    `json:"body"`
 | 
						|
	Created          time.Time `json:"created_at"`
 | 
						|
	Updated          time.Time `json:"updated_at"`
 | 
						|
}
 | 
						|
 | 
						|
// ListIssueCommentOptions list comment options
 | 
						|
type ListIssueCommentOptions struct {
 | 
						|
	ListOptions
 | 
						|
	Since  time.Time
 | 
						|
	Before time.Time
 | 
						|
}
 | 
						|
 | 
						|
// QueryEncode turns options into querystring argument
 | 
						|
func (opt *ListIssueCommentOptions) QueryEncode() string {
 | 
						|
	query := opt.getURLQuery()
 | 
						|
	if !opt.Since.IsZero() {
 | 
						|
		query.Add("since", opt.Since.Format(time.RFC3339))
 | 
						|
	}
 | 
						|
	if !opt.Before.IsZero() {
 | 
						|
		query.Add("before", opt.Before.Format(time.RFC3339))
 | 
						|
	}
 | 
						|
	return query.Encode()
 | 
						|
}
 | 
						|
 | 
						|
// ListIssueComments list comments on an issue.
 | 
						|
func (c *Client) ListIssueComments(owner, repo string, index int64, opt ListIssueCommentOptions) ([]*Comment, *Response, error) {
 | 
						|
	opt.setDefaults()
 | 
						|
	link, _ := url.Parse(fmt.Sprintf("/repos/%s/%s/issues/%d/comments", owner, repo, index))
 | 
						|
	link.RawQuery = opt.QueryEncode()
 | 
						|
	comments := make([]*Comment, 0, opt.PageSize)
 | 
						|
	resp, err := c.getParsedResponse("GET", link.String(), nil, nil, &comments)
 | 
						|
	return comments, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// ListRepoIssueComments list comments for a given repo.
 | 
						|
func (c *Client) ListRepoIssueComments(owner, repo string, opt ListIssueCommentOptions) ([]*Comment, *Response, error) {
 | 
						|
	opt.setDefaults()
 | 
						|
	link, _ := url.Parse(fmt.Sprintf("/repos/%s/%s/issues/comments", owner, repo))
 | 
						|
	link.RawQuery = opt.QueryEncode()
 | 
						|
	comments := make([]*Comment, 0, opt.PageSize)
 | 
						|
	resp, err := c.getParsedResponse("GET", link.String(), nil, nil, &comments)
 | 
						|
	return comments, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// GetIssueComment get a comment for a given repo by id.
 | 
						|
func (c *Client) GetIssueComment(owner, repo string, id int64) (*Comment, *Response, error) {
 | 
						|
	comment := new(Comment)
 | 
						|
	if err := c.checkServerVersionGreaterThanOrEqual(version1_12_0); err != nil {
 | 
						|
		return comment, nil, err
 | 
						|
	}
 | 
						|
	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/comments/%d", owner, repo, id), nil, nil, &comment)
 | 
						|
	return comment, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// CreateIssueCommentOption options for creating a comment on an issue
 | 
						|
type CreateIssueCommentOption struct {
 | 
						|
	Body string `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Validate the CreateIssueCommentOption struct
 | 
						|
func (opt CreateIssueCommentOption) Validate() error {
 | 
						|
	if len(opt.Body) == 0 {
 | 
						|
		return fmt.Errorf("body is empty")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// CreateIssueComment create comment on an issue.
 | 
						|
func (c *Client) CreateIssueComment(owner, repo string, index int64, opt CreateIssueCommentOption) (*Comment, *Response, error) {
 | 
						|
	if err := opt.Validate(); err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	comment := new(Comment)
 | 
						|
	resp, err := c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/comments", owner, repo, index), jsonHeader, bytes.NewReader(body), comment)
 | 
						|
	return comment, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// EditIssueCommentOption options for editing a comment
 | 
						|
type EditIssueCommentOption struct {
 | 
						|
	Body string `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Validate the EditIssueCommentOption struct
 | 
						|
func (opt EditIssueCommentOption) Validate() error {
 | 
						|
	if len(opt.Body) == 0 {
 | 
						|
		return fmt.Errorf("body is empty")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// EditIssueComment edits an issue comment.
 | 
						|
func (c *Client) EditIssueComment(owner, repo string, commentID int64, opt EditIssueCommentOption) (*Comment, *Response, error) {
 | 
						|
	if err := opt.Validate(); err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	comment := new(Comment)
 | 
						|
	resp, err := c.getParsedResponse("PATCH", fmt.Sprintf("/repos/%s/%s/issues/comments/%d", owner, repo, commentID), jsonHeader, bytes.NewReader(body), comment)
 | 
						|
	return comment, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// DeleteIssueComment deletes an issue comment.
 | 
						|
func (c *Client) DeleteIssueComment(owner, repo string, commentID int64) (*Response, error) {
 | 
						|
	_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/issues/comments/%d", owner, repo, commentID), nil, nil)
 | 
						|
	return resp, err
 | 
						|
}
 |