2016-11-07 14:53:13 +01:00
|
|
|
// 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"
|
|
|
|
)
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// Label a label to an issue or a pr
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:model
|
2016-11-07 14:53:13 +01:00
|
|
|
type Label struct {
|
2018-03-06 02:22:16 +01:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// example: 00aabb
|
2016-11-07 14:53:13 +01:00
|
|
|
Color string `json:"color"`
|
2016-11-29 09:09:17 +01:00
|
|
|
URL string `json:"url"`
|
2016-11-07 14:53:13 +01:00
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// ListRepoLabels list labels of one repository
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) ListRepoLabels(owner, repo string) ([]*Label, error) {
|
|
|
|
labels := make([]*Label, 0, 10)
|
|
|
|
return labels, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/labels", owner, repo), nil, nil, &labels)
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// GetRepoLabel get one label of repository by repo it
|
|
|
|
// TODO: maybe we need get a label by name
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) GetRepoLabel(owner, repo string, id int64) (*Label, error) {
|
|
|
|
label := new(Label)
|
|
|
|
return label, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), nil, nil, label)
|
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// CreateLabelOption options for creating a label
|
2016-11-07 14:53:13 +01:00
|
|
|
type CreateLabelOption struct {
|
2017-11-13 08:02:25 +01:00
|
|
|
// required:true
|
2018-03-06 02:22:16 +01:00
|
|
|
Name string `json:"name" binding:"Required"`
|
2017-11-13 08:02:25 +01:00
|
|
|
// required:true
|
|
|
|
// example: #00aabb
|
2016-11-07 14:53:13 +01:00
|
|
|
Color string `json:"color" binding:"Required;Size(7)"`
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// CreateLabel create one label of repository
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) CreateLabel(owner, repo string, opt CreateLabelOption) (*Label, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
label := new(Label)
|
|
|
|
return label, c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/labels", owner, repo),
|
|
|
|
jsonHeader, bytes.NewReader(body), label)
|
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// EditLabelOption options for editing a label
|
2016-11-07 14:53:13 +01:00
|
|
|
type EditLabelOption struct {
|
|
|
|
Name *string `json:"name"`
|
|
|
|
Color *string `json:"color"`
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// EditLabel modify one label with options
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) EditLabel(owner, repo string, id int64, opt EditLabelOption) (*Label, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
label := new(Label)
|
|
|
|
return label, c.getParsedResponse("PATCH", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), jsonHeader, bytes.NewReader(body), label)
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// DeleteLabel delete one label of repository by id
|
|
|
|
// TODO: maybe we need delete by name
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) DeleteLabel(owner, repo string, id int64) error {
|
|
|
|
_, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), nil, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-11-13 08:02:25 +01:00
|
|
|
// IssueLabelsOption a collection of labels
|
2016-11-07 14:53:13 +01:00
|
|
|
type IssueLabelsOption struct {
|
2017-11-13 08:02:25 +01:00
|
|
|
// list of label IDs
|
2016-11-07 14:53:13 +01:00
|
|
|
Labels []int64 `json:"labels"`
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// GetIssueLabels get labels of one issue via issue id
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) GetIssueLabels(owner, repo string, index int64) ([]*Label, error) {
|
|
|
|
labels := make([]*Label, 0, 5)
|
|
|
|
return labels, c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), nil, nil, &labels)
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// AddIssueLabels add one or more labels to one issue
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) AddIssueLabels(owner, repo string, index int64, opt IssueLabelsOption) ([]*Label, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-11-29 09:09:17 +01:00
|
|
|
var labels []*Label
|
2016-11-07 14:53:13 +01:00
|
|
|
return labels, c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), jsonHeader, bytes.NewReader(body), &labels)
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// ReplaceIssueLabels replace old labels of issue with new labels
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) ReplaceIssueLabels(owner, repo string, index int64, opt IssueLabelsOption) ([]*Label, error) {
|
|
|
|
body, err := json.Marshal(&opt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-11-29 09:09:17 +01:00
|
|
|
var labels []*Label
|
2016-11-07 14:53:13 +01:00
|
|
|
return labels, c.getParsedResponse("PUT", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), jsonHeader, bytes.NewReader(body), &labels)
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// DeleteIssueLabel delete one label of one issue by issue id and label id
|
|
|
|
// TODO: maybe we need delete by label name and issue id
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) DeleteIssueLabel(owner, repo string, index, label int64) error {
|
|
|
|
_, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/issues/%d/labels/%d", owner, repo, index, label), nil, nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-29 09:09:17 +01:00
|
|
|
// ClearIssueLabels delete all the labels of one issue.
|
2016-11-07 14:53:13 +01:00
|
|
|
func (c *Client) ClearIssueLabels(owner, repo string, index int64) error {
|
|
|
|
_, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), nil, nil)
|
|
|
|
return err
|
|
|
|
}
|