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
		
			
				
	
	
		
			181 lines
		
	
	
	
		
			5.8 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			181 lines
		
	
	
	
		
			5.8 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"
 | 
						|
	"regexp"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// Label a label to an issue or a pr
 | 
						|
type Label struct {
 | 
						|
	ID   int64  `json:"id"`
 | 
						|
	Name string `json:"name"`
 | 
						|
	// example: 00aabb
 | 
						|
	Color       string `json:"color"`
 | 
						|
	Description string `json:"description"`
 | 
						|
	URL         string `json:"url"`
 | 
						|
}
 | 
						|
 | 
						|
// ListLabelsOptions options for listing repository's labels
 | 
						|
type ListLabelsOptions struct {
 | 
						|
	ListOptions
 | 
						|
}
 | 
						|
 | 
						|
// ListRepoLabels list labels of one repository
 | 
						|
func (c *Client) ListRepoLabels(owner, repo string, opt ListLabelsOptions) ([]*Label, *Response, error) {
 | 
						|
	opt.setDefaults()
 | 
						|
	labels := make([]*Label, 0, opt.PageSize)
 | 
						|
	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/labels?%s", owner, repo, opt.getURLQuery().Encode()), nil, nil, &labels)
 | 
						|
	return labels, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// GetRepoLabel get one label of repository by repo it
 | 
						|
func (c *Client) GetRepoLabel(owner, repo string, id int64) (*Label, *Response, error) {
 | 
						|
	label := new(Label)
 | 
						|
	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), nil, nil, label)
 | 
						|
	return label, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// CreateLabelOption options for creating a label
 | 
						|
type CreateLabelOption struct {
 | 
						|
	Name string `json:"name"`
 | 
						|
	// example: #00aabb
 | 
						|
	Color       string `json:"color"`
 | 
						|
	Description string `json:"description"`
 | 
						|
}
 | 
						|
 | 
						|
// Validate the CreateLabelOption struct
 | 
						|
func (opt CreateLabelOption) Validate() error {
 | 
						|
	aw, err := regexp.MatchString("^#?[0-9,a-f,A-F]{6}$", opt.Color)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	if !aw {
 | 
						|
		return fmt.Errorf("invalid color format")
 | 
						|
	}
 | 
						|
	if len(strings.TrimSpace(opt.Name)) == 0 {
 | 
						|
		return fmt.Errorf("empty name not allowed")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// CreateLabel create one label of repository
 | 
						|
func (c *Client) CreateLabel(owner, repo string, opt CreateLabelOption) (*Label, *Response, error) {
 | 
						|
	if err := opt.Validate(); err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	if len(opt.Color) == 6 {
 | 
						|
		if err := c.checkServerVersionGreaterThanOrEqual(version1_12_0); err != nil {
 | 
						|
			opt.Color = "#" + opt.Color
 | 
						|
		}
 | 
						|
	}
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	label := new(Label)
 | 
						|
	resp, err := c.getParsedResponse("POST",
 | 
						|
		fmt.Sprintf("/repos/%s/%s/labels", owner, repo),
 | 
						|
		jsonHeader, bytes.NewReader(body), label)
 | 
						|
	return label, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// EditLabelOption options for editing a label
 | 
						|
type EditLabelOption struct {
 | 
						|
	Name        *string `json:"name"`
 | 
						|
	Color       *string `json:"color"`
 | 
						|
	Description *string `json:"description"`
 | 
						|
}
 | 
						|
 | 
						|
// Validate the EditLabelOption struct
 | 
						|
func (opt EditLabelOption) Validate() error {
 | 
						|
	if opt.Color != nil {
 | 
						|
		aw, err := regexp.MatchString("^#?[0-9,a-f,A-F]{6}$", *opt.Color)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		if !aw {
 | 
						|
			return fmt.Errorf("invalid color format")
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if opt.Name != nil {
 | 
						|
		if len(strings.TrimSpace(*opt.Name)) == 0 {
 | 
						|
			return fmt.Errorf("empty name not allowed")
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// EditLabel modify one label with options
 | 
						|
func (c *Client) EditLabel(owner, repo string, id int64, opt EditLabelOption) (*Label, *Response, error) {
 | 
						|
	if err := opt.Validate(); err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	label := new(Label)
 | 
						|
	resp, err := c.getParsedResponse("PATCH", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), jsonHeader, bytes.NewReader(body), label)
 | 
						|
	return label, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// DeleteLabel delete one label of repository by id
 | 
						|
func (c *Client) DeleteLabel(owner, repo string, id int64) (*Response, error) {
 | 
						|
	_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), nil, nil)
 | 
						|
	return resp, err
 | 
						|
}
 | 
						|
 | 
						|
// GetIssueLabels get labels of one issue via issue id
 | 
						|
func (c *Client) GetIssueLabels(owner, repo string, index int64, opts ListLabelsOptions) ([]*Label, *Response, error) {
 | 
						|
	labels := make([]*Label, 0, 5)
 | 
						|
	resp, err := c.getParsedResponse("GET", fmt.Sprintf("/repos/%s/%s/issues/%d/labels?%s", owner, repo, index, opts.getURLQuery().Encode()), nil, nil, &labels)
 | 
						|
	return labels, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// IssueLabelsOption a collection of labels
 | 
						|
type IssueLabelsOption struct {
 | 
						|
	// list of label IDs
 | 
						|
	Labels []int64 `json:"labels"`
 | 
						|
}
 | 
						|
 | 
						|
// AddIssueLabels add one or more labels to one issue
 | 
						|
func (c *Client) AddIssueLabels(owner, repo string, index int64, opt IssueLabelsOption) ([]*Label, *Response, error) {
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	var labels []*Label
 | 
						|
	resp, err := c.getParsedResponse("POST", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), jsonHeader, bytes.NewReader(body), &labels)
 | 
						|
	return labels, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// ReplaceIssueLabels replace old labels of issue with new labels
 | 
						|
func (c *Client) ReplaceIssueLabels(owner, repo string, index int64, opt IssueLabelsOption) ([]*Label, *Response, error) {
 | 
						|
	body, err := json.Marshal(&opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, nil, err
 | 
						|
	}
 | 
						|
	var labels []*Label
 | 
						|
	resp, err := c.getParsedResponse("PUT", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), jsonHeader, bytes.NewReader(body), &labels)
 | 
						|
	return labels, resp, err
 | 
						|
}
 | 
						|
 | 
						|
// DeleteIssueLabel delete one label of one issue by issue id and label id
 | 
						|
// TODO: maybe we need delete by label name and issue id
 | 
						|
func (c *Client) DeleteIssueLabel(owner, repo string, index, label int64) (*Response, error) {
 | 
						|
	_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/issues/%d/labels/%d", owner, repo, index, label), nil, nil)
 | 
						|
	return resp, err
 | 
						|
}
 | 
						|
 | 
						|
// ClearIssueLabels delete all the labels of one issue.
 | 
						|
func (c *Client) ClearIssueLabels(owner, repo string, index int64) (*Response, error) {
 | 
						|
	_, resp, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/issues/%d/labels", owner, repo, index), nil, nil)
 | 
						|
	return resp, err
 | 
						|
}
 |