2016-11-07 19:23:13 +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
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// StateType issue state type
|
2016-11-07 19:23:13 +05:30
|
|
|
type StateType string
|
|
|
|
|
|
|
|
const (
|
2016-11-29 13:39:17 +05:30
|
|
|
// StateOpen pr is opend
|
|
|
|
StateOpen StateType = "open"
|
|
|
|
// StateClosed pr is closed
|
|
|
|
StateClosed StateType = "closed"
|
2016-11-07 19:23:13 +05:30
|
|
|
)
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// PullRequestMeta PR info if an issue is a PR
|
2016-11-07 19:23:13 +05:30
|
|
|
type PullRequestMeta struct {
|
|
|
|
HasMerged bool `json:"merged"`
|
|
|
|
Merged *time.Time `json:"merged_at"`
|
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// Issue represents an issue in a repository
|
|
|
|
// swagger:model
|
2016-11-07 19:23:13 +05:30
|
|
|
type Issue struct {
|
|
|
|
ID int64 `json:"id"`
|
2017-02-23 05:23:33 +05:30
|
|
|
URL string `json:"url"`
|
2016-11-07 19:23:13 +05:30
|
|
|
Index int64 `json:"number"`
|
|
|
|
Poster *User `json:"user"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Labels []*Label `json:"labels"`
|
|
|
|
Milestone *Milestone `json:"milestone"`
|
|
|
|
Assignee *User `json:"assignee"`
|
2018-05-02 00:35:28 +05:30
|
|
|
Assignees []*User `json:"assignees"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// Whether the issue is open or closed
|
|
|
|
//
|
|
|
|
// type: string
|
|
|
|
// enum: open,closed
|
2018-03-06 06:52:16 +05:30
|
|
|
State StateType `json:"state"`
|
|
|
|
Comments int `json:"comments"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:strfmt date-time
|
2018-03-06 06:52:16 +05:30
|
|
|
Created time.Time `json:"created_at"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:strfmt date-time
|
2018-03-06 06:52:16 +05:30
|
|
|
Updated time.Time `json:"updated_at"`
|
2018-05-02 00:35:28 +05:30
|
|
|
// swagger:strfmt date-time
|
|
|
|
Closed *time.Time `json:"closed_at"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Deadline *time.Time `json:"due_date"`
|
2016-11-07 19:23:13 +05:30
|
|
|
|
|
|
|
PullRequest *PullRequestMeta `json:"pull_request"`
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// ListIssueOption list issue options
|
2016-11-07 19:23:13 +05:30
|
|
|
type ListIssueOption struct {
|
2016-11-29 13:39:17 +05:30
|
|
|
Page int
|
|
|
|
State string
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// ListIssues returns all issues assigned the authenticated user
|
|
|
|
func (c *Client) ListIssues(opt ListIssueOption) ([]*Issue, error) {
|
|
|
|
issues := make([]*Issue, 0, 10)
|
|
|
|
return issues, c.getParsedResponse("GET", fmt.Sprintf("/issues?page=%d", opt.Page), nil, nil, &issues)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListUserIssues returns all issues assigned to the authenticated user
|
|
|
|
func (c *Client) ListUserIssues(opt ListIssueOption) ([]*Issue, error) {
|
|
|
|
issues := make([]*Issue, 0, 10)
|
|
|
|
return issues, c.getParsedResponse("GET", fmt.Sprintf("/user/issues?page=%d", opt.Page), nil, nil, &issues)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListRepoIssues returns all issues for a given repository
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) ListRepoIssues(owner, repo string, opt ListIssueOption) ([]*Issue, error) {
|
|
|
|
issues := make([]*Issue, 0, 10)
|
|
|
|
return issues, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues?page=%d", owner, repo, opt.Page), nil, nil, &issues)
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// GetIssue returns a single issue for a given repository
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) GetIssue(owner, repo string, index int64) (*Issue, error) {
|
|
|
|
issue := new(Issue)
|
|
|
|
return issue, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/%d", owner, repo, index), nil, nil, issue)
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// CreateIssueOption options to create one issue
|
2016-11-07 19:23:13 +05:30
|
|
|
type CreateIssueOption struct {
|
2017-11-13 12:32:25 +05:30
|
|
|
// required:true
|
2018-03-06 06:52:16 +05:30
|
|
|
Title string `json:"title" binding:"Required"`
|
|
|
|
Body string `json:"body"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// username of assignee
|
2018-05-02 00:35:28 +05:30
|
|
|
Assignee string `json:"assignee"`
|
|
|
|
Assignees []string `json:"assignees"`
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Deadline *time.Time `json:"due_date"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// milestone id
|
2018-03-06 06:52:16 +05:30
|
|
|
Milestone int64 `json:"milestone"`
|
2017-11-13 12:32:25 +05:30
|
|
|
// list of label ids
|
2018-03-06 06:52:16 +05:30
|
|
|
Labels []int64 `json:"labels"`
|
|
|
|
Closed bool `json:"closed"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// CreateIssue create a new issue for a given repository
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) CreateIssue(owner, repo string, opt CreateIssueOption) (*Issue, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
issue := new(Issue)
|
|
|
|
return issue, c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/issues", owner, repo),
|
|
|
|
jsonHeader, bytes.NewReader(body), issue)
|
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// EditIssueOption options for editing an issue
|
2016-11-07 19:23:13 +05:30
|
|
|
type EditIssueOption struct {
|
2018-05-16 19:31:55 +05:30
|
|
|
Title string `json:"title"`
|
|
|
|
Body *string `json:"body"`
|
|
|
|
Assignee *string `json:"assignee"`
|
|
|
|
Assignees []string `json:"assignees"`
|
|
|
|
Milestone *int64 `json:"milestone"`
|
|
|
|
State *string `json:"state"`
|
2018-05-02 00:35:28 +05:30
|
|
|
// swagger:strfmt date-time
|
2018-05-16 19:31:55 +05:30
|
|
|
Deadline *time.Time `json:"due_date"`
|
2016-11-07 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
2016-11-29 13:39:17 +05:30
|
|
|
// EditIssue modify an existing issue for a given repository
|
2016-11-07 19:23:13 +05:30
|
|
|
func (c *Client) EditIssue(owner, repo string, index int64, opt EditIssueOption) (*Issue, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
issue := new(Issue)
|
|
|
|
return issue, c.getParsedResponse("PATCH", fmt.Sprintf("/repos/%s/%s/issues/%d", owner, repo, index),
|
|
|
|
jsonHeader, bytes.NewReader(body), issue)
|
|
|
|
}
|
2018-05-16 19:31:55 +05:30
|
|
|
|
2019-02-26 00:26:47 +05:30
|
|
|
// StartIssueStopWatch starts a stopwatch for an existing issue for a given
|
|
|
|
// repository
|
|
|
|
func (c *Client) StartIssueStopWatch(owner, repo string, index int64) error {
|
|
|
|
_, err := c.getResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/stopwatch/start", owner, repo, index),
|
|
|
|
jsonHeader, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopIssueStopWatch stops an existing stopwatch for an issue in a given
|
|
|
|
// repository
|
|
|
|
func (c *Client) StopIssueStopWatch(owner, repo string, index int64) error {
|
|
|
|
_, err := c.getResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/stopwatch/stop", owner, repo, index),
|
|
|
|
jsonHeader, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-05-16 19:31:55 +05:30
|
|
|
// EditDeadlineOption options for creating a deadline
|
|
|
|
type EditDeadlineOption struct {
|
|
|
|
// required:true
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Deadline *time.Time `json:"due_date"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IssueDeadline represents an issue deadline
|
|
|
|
// swagger:model
|
|
|
|
type IssueDeadline struct {
|
|
|
|
// swagger:strfmt date-time
|
|
|
|
Deadline *time.Time `json:"due_date"`
|
|
|
|
}
|
2018-10-29 03:33:02 +05:30
|
|
|
|
|
|
|
// EditPriorityOption options for updating priority
|
|
|
|
type EditPriorityOption struct {
|
|
|
|
// required:true
|
|
|
|
Priority int `json:"priority"`
|
|
|
|
}
|