mirror of https://github.com/gogits/gogs.git
Browse Source
* Add API support for labels. * Error handling for adding/replacing multiple issue labels * Revisions to function names and error handling. Use issue.ClearLabels in replace/clear functions * Additional code cleanuppull/3287/merge
lstahlman
8 years ago
committed by
无闻
5 changed files with 399 additions and 1 deletions
@ -0,0 +1,219 @@ |
|||||||
|
// 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/modules/context" |
||||||
|
"github.com/gogits/gogs/routers/api/v1/convert" |
||||||
|
) |
||||||
|
|
||||||
|
func GetIssueLabels(ctx *context.APIContext) { |
||||||
|
issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrIssueNotExist(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] = convert.ToLabel(issue.Labels[i]) |
||||||
|
} |
||||||
|
|
||||||
|
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 models.IsErrIssueNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetIssueByIndex", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
var labels []*models.Label |
||||||
|
if labels, err = filterLabelsByRepoID(form.Labels, issue.RepoID); err != nil { |
||||||
|
ctx.Error(400, "filterLabelsByRepoID", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
for i := range labels { |
||||||
|
if !models.HasIssueLabel(issue.ID, labels[i].ID) { |
||||||
|
if err := models.NewIssueLabel(issue, labels[i]); err != nil { |
||||||
|
ctx.Error(500, "NewIssueLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// Refresh issue to get the updated list of labels from the DB
|
||||||
|
issue, err = models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrIssueNotExist(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] = convert.ToLabel(issue.Labels[i]) |
||||||
|
} |
||||||
|
|
||||||
|
ctx.JSON(200, &apiLabels) |
||||||
|
} |
||||||
|
|
||||||
|
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 models.IsErrIssueNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetIssueByIndex", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
var labels []*models.Label |
||||||
|
if labels, err = filterLabelsByRepoID(form.Labels, issue.RepoID); err != nil { |
||||||
|
ctx.Error(400, "filterLabelsByRepoID", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
if err := issue.ClearLabels(); err != nil { |
||||||
|
ctx.Error(500, "ClearLabels", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
for i := range labels { |
||||||
|
if err := models.NewIssueLabel(issue, labels[i]); err != nil { |
||||||
|
ctx.Error(500, "NewIssueLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// Refresh issue to get the updated list of labels from the DB
|
||||||
|
issue, err = models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrIssueNotExist(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] = convert.ToLabel(issue.Labels[i]) |
||||||
|
} |
||||||
|
|
||||||
|
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 models.IsErrIssueNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetIssueByIndex", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
label, err := models.GetLabelByID(ctx.ParamsInt64(":id")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrLabelNotExist(err) { |
||||||
|
ctx.Status(400) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetLabelByID", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
if err := models.DeleteIssueLabel(issue, label); err != nil { |
||||||
|
ctx.Error(500, "DeleteIssueLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
ctx.Status(204) |
||||||
|
} |
||||||
|
|
||||||
|
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 models.IsErrIssueNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetIssueByIndex", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
if err := issue.ClearLabels(); err != nil { |
||||||
|
ctx.Error(500, "ClearLabels", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
ctx.Status(204) |
||||||
|
} |
||||||
|
|
||||||
|
func filterLabelsByRepoID(labelIDs []int64, repoID int64) ([]*models.Label, error) { |
||||||
|
labels := make([]*models.Label, 0, len(labelIDs)) |
||||||
|
errors := make([]error, 0, len(labelIDs)) |
||||||
|
|
||||||
|
for i := range labelIDs { |
||||||
|
label, err := models.GetLabelByID(labelIDs[i]) |
||||||
|
if err != nil { |
||||||
|
errors = append(errors, err) |
||||||
|
} else if label.RepoID != repoID { |
||||||
|
errors = append(errors, models.ErrLabelNotValidForRepository{label.ID, repoID}) |
||||||
|
} else { |
||||||
|
labels = append(labels, label) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
errorCount := len(errors) |
||||||
|
|
||||||
|
if errorCount == 1 { |
||||||
|
return labels, errors[0] |
||||||
|
} else if errorCount > 1 { |
||||||
|
return labels, models.ErrMultipleErrors{errors} |
||||||
|
} |
||||||
|
|
||||||
|
return labels, nil |
||||||
|
} |
@ -0,0 +1,123 @@ |
|||||||
|
// 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/modules/context" |
||||||
|
"github.com/gogits/gogs/modules/log" |
||||||
|
"github.com/gogits/gogs/routers/api/v1/convert" |
||||||
|
) |
||||||
|
|
||||||
|
func ListLabels(ctx *context.APIContext) { |
||||||
|
labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID) |
||||||
|
if err != nil { |
||||||
|
ctx.Error(500, "Labels", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
apiLabels := make([]*api.Label, len(labels)) |
||||||
|
for i := range labels { |
||||||
|
apiLabels[i] = convert.ToLabel(labels[i]) |
||||||
|
} |
||||||
|
|
||||||
|
ctx.JSON(200, &apiLabels) |
||||||
|
} |
||||||
|
|
||||||
|
func GetLabel(ctx *context.APIContext) { |
||||||
|
label, err := models.GetLabelByID(ctx.ParamsInt64(":id")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrLabelNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetLabelByID", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
ctx.JSON(200, convert.ToLabel(label)) |
||||||
|
} |
||||||
|
|
||||||
|
func CreateLabel(ctx *context.APIContext, form api.LabelOption) { |
||||||
|
if !ctx.Repo.IsWriter() { |
||||||
|
ctx.Status(403) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
label := &models.Label{ |
||||||
|
Name: form.Name, |
||||||
|
Color: form.Color, |
||||||
|
RepoID: ctx.Repo.Repository.ID, |
||||||
|
} |
||||||
|
err := models.NewLabel(label) |
||||||
|
if err != nil { |
||||||
|
ctx.Error(500, "NewLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
label, err = models.GetLabelByID(label.ID) |
||||||
|
if err != nil { |
||||||
|
ctx.Error(500, "GetLabelByID", err) |
||||||
|
return |
||||||
|
} |
||||||
|
ctx.JSON(201, convert.ToLabel(label)) |
||||||
|
} |
||||||
|
|
||||||
|
func EditLabel(ctx *context.APIContext, form api.LabelOption) { |
||||||
|
if !ctx.Repo.IsWriter() { |
||||||
|
ctx.Status(403) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
label, err := models.GetLabelByID(ctx.ParamsInt64(":id")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrLabelNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetLabelByID", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
if len(form.Name) > 0 { |
||||||
|
label.Name = form.Name |
||||||
|
} |
||||||
|
if len(form.Color) > 0 { |
||||||
|
label.Color = form.Color |
||||||
|
} |
||||||
|
|
||||||
|
if err := models.UpdateLabel(label); err != nil { |
||||||
|
ctx.Handle(500, "UpdateLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
ctx.JSON(200, convert.ToLabel(label)) |
||||||
|
} |
||||||
|
|
||||||
|
func DeleteLabel(ctx *context.APIContext) { |
||||||
|
if !ctx.Repo.IsWriter() { |
||||||
|
ctx.Status(403) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
label, err := models.GetLabelByID(ctx.ParamsInt64(":id")) |
||||||
|
if err != nil { |
||||||
|
if models.IsErrLabelNotExist(err) { |
||||||
|
ctx.Status(404) |
||||||
|
} else { |
||||||
|
ctx.Error(500, "GetLabelByID", err) |
||||||
|
} |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
if err := models.DeleteLabel(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil { |
||||||
|
ctx.Error(500, "DeleteLabel", err) |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
log.Trace("Label deleted: %s %s", label.ID, label.Name) |
||||||
|
ctx.Status(204) |
||||||
|
} |
Loading…
Reference in new issue