| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 | 
							- // 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 repo
 
- import (
 
- 	api "github.com/gogits/go-gogs-client"
 
- 	"github.com/gogits/gogs/models"
 
- 	"github.com/gogits/gogs/models/errors"
 
- 	"github.com/gogits/gogs/pkg/context"
 
- )
 
- func ListIssueLabels(ctx *context.APIContext) {
 
- 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 
- 	if err != nil {
 
- 		if errors.IsIssueNotExist(err) {
 
- 			ctx.Status(404)
 
- 		} else {
 
- 			ctx.Error(500, "GetIssueByIndex", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	apiLabels := make([]*api.Label, len(issue.Labels))
 
- 	for i := range issue.Labels {
 
- 		apiLabels[i] = issue.Labels[i].APIFormat()
 
- 	}
 
- 	ctx.JSON(200, &apiLabels)
 
- }
 
- func AddIssueLabels(ctx *context.APIContext, form api.IssueLabelsOption) {
 
- 	if !ctx.Repo.IsWriter() {
 
- 		ctx.Status(403)
 
- 		return
 
- 	}
 
- 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 
- 	if err != nil {
 
- 		if errors.IsIssueNotExist(err) {
 
- 			ctx.Status(404)
 
- 		} else {
 
- 			ctx.Error(500, "GetIssueByIndex", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	labels, err := models.GetLabelsInRepoByIDs(ctx.Repo.Repository.ID, form.Labels)
 
- 	if err != nil {
 
- 		ctx.Error(500, "GetLabelsInRepoByIDs", err)
 
- 		return
 
- 	}
 
- 	if err = issue.AddLabels(ctx.User, labels); err != nil {
 
- 		ctx.Error(500, "AddLabels", err)
 
- 		return
 
- 	}
 
- 	labels, err = models.GetLabelsByIssueID(issue.ID)
 
- 	if err != nil {
 
- 		ctx.Error(500, "GetLabelsByIssueID", err)
 
- 		return
 
- 	}
 
- 	apiLabels := make([]*api.Label, len(labels))
 
- 	for i := range labels {
 
- 		apiLabels[i] = issue.Labels[i].APIFormat()
 
- 	}
 
- 	ctx.JSON(200, &apiLabels)
 
- }
 
- func DeleteIssueLabel(ctx *context.APIContext) {
 
- 	if !ctx.Repo.IsWriter() {
 
- 		ctx.Status(403)
 
- 		return
 
- 	}
 
- 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 
- 	if err != nil {
 
- 		if errors.IsIssueNotExist(err) {
 
- 			ctx.Status(404)
 
- 		} else {
 
- 			ctx.Error(500, "GetIssueByIndex", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	label, err := models.GetLabelOfRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
 
- 	if err != nil {
 
- 		if models.IsErrLabelNotExist(err) {
 
- 			ctx.Error(422, "", err)
 
- 		} else {
 
- 			ctx.Error(500, "GetLabelInRepoByID", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	if err := models.DeleteIssueLabel(issue, label); err != nil {
 
- 		ctx.Error(500, "DeleteIssueLabel", err)
 
- 		return
 
- 	}
 
- 	ctx.Status(204)
 
- }
 
- func ReplaceIssueLabels(ctx *context.APIContext, form api.IssueLabelsOption) {
 
- 	if !ctx.Repo.IsWriter() {
 
- 		ctx.Status(403)
 
- 		return
 
- 	}
 
- 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 
- 	if err != nil {
 
- 		if errors.IsIssueNotExist(err) {
 
- 			ctx.Status(404)
 
- 		} else {
 
- 			ctx.Error(500, "GetIssueByIndex", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	labels, err := models.GetLabelsInRepoByIDs(ctx.Repo.Repository.ID, form.Labels)
 
- 	if err != nil {
 
- 		ctx.Error(500, "GetLabelsInRepoByIDs", err)
 
- 		return
 
- 	}
 
- 	if err := issue.ReplaceLabels(labels); err != nil {
 
- 		ctx.Error(500, "ReplaceLabels", err)
 
- 		return
 
- 	}
 
- 	labels, err = models.GetLabelsByIssueID(issue.ID)
 
- 	if err != nil {
 
- 		ctx.Error(500, "GetLabelsByIssueID", err)
 
- 		return
 
- 	}
 
- 	apiLabels := make([]*api.Label, len(labels))
 
- 	for i := range labels {
 
- 		apiLabels[i] = issue.Labels[i].APIFormat()
 
- 	}
 
- 	ctx.JSON(200, &apiLabels)
 
- }
 
- func ClearIssueLabels(ctx *context.APIContext) {
 
- 	if !ctx.Repo.IsWriter() {
 
- 		ctx.Status(403)
 
- 		return
 
- 	}
 
- 	issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
 
- 	if err != nil {
 
- 		if errors.IsIssueNotExist(err) {
 
- 			ctx.Status(404)
 
- 		} else {
 
- 			ctx.Error(500, "GetIssueByIndex", err)
 
- 		}
 
- 		return
 
- 	}
 
- 	if err := issue.ClearLabels(ctx.User); err != nil {
 
- 		ctx.Error(500, "ClearLabels", err)
 
- 		return
 
- 	}
 
- 	ctx.Status(204)
 
- }
 
 
  |