2016-08-03 21:54:16 +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 repo
|
|
|
|
|
|
|
|
import (
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-08-03 21:54:16 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-08-03 21:54:16 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListLabels list all the labels of a repository
|
2016-08-03 21:54:16 +05:30
|
|
|
func ListLabels(ctx *context.APIContext) {
|
|
|
|
labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil {
|
2016-08-04 00:21:22 +05:30
|
|
|
ctx.Error(500, "GetLabelsByRepoID", err)
|
2016-08-03 21:54:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLabels := make([]*api.Label, len(labels))
|
|
|
|
for i := range labels {
|
2016-08-14 16:47:26 +05:30
|
|
|
apiLabels[i] = labels[i].APIFormat()
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiLabels)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GetLabel get label by repository and label id
|
2016-08-03 21:54:16 +05:30
|
|
|
func GetLabel(ctx *context.APIContext) {
|
2016-08-04 00:21:22 +05:30
|
|
|
label, err := models.GetLabelInRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2016-08-03 21:54:16 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrLabelNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-04 00:21:22 +05:30
|
|
|
ctx.Error(500, "GetLabelByRepoID", err)
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-14 16:47:26 +05:30
|
|
|
ctx.JSON(200, label.APIFormat())
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateLabel create a label for a repository
|
2016-08-04 00:21:22 +05:30
|
|
|
func CreateLabel(ctx *context.APIContext, form api.CreateLabelOption) {
|
2016-08-03 21:54:16 +05:30
|
|
|
if !ctx.Repo.IsWriter() {
|
|
|
|
ctx.Status(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
label := &models.Label{
|
|
|
|
Name: form.Name,
|
|
|
|
Color: form.Color,
|
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
}
|
2016-08-30 08:30:06 +05:30
|
|
|
if err := models.NewLabels(label); err != nil {
|
2016-08-03 21:54:16 +05:30
|
|
|
ctx.Error(500, "NewLabel", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-14 16:47:26 +05:30
|
|
|
ctx.JSON(201, label.APIFormat())
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// EditLabel modify a label for a repository
|
2016-08-04 00:21:22 +05:30
|
|
|
func EditLabel(ctx *context.APIContext, form api.EditLabelOption) {
|
2016-08-03 21:54:16 +05:30
|
|
|
if !ctx.Repo.IsWriter() {
|
|
|
|
ctx.Status(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-04 00:21:22 +05:30
|
|
|
label, err := models.GetLabelInRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2016-08-03 21:54:16 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrLabelNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-04 00:21:22 +05:30
|
|
|
ctx.Error(500, "GetLabelByRepoID", err)
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-04 00:21:22 +05:30
|
|
|
if form.Name != nil {
|
|
|
|
label.Name = *form.Name
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
2016-08-04 00:21:22 +05:30
|
|
|
if form.Color != nil {
|
|
|
|
label.Color = *form.Color
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
if err := models.UpdateLabel(label); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateLabel", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-14 16:47:26 +05:30
|
|
|
ctx.JSON(200, label.APIFormat())
|
2016-08-03 21:54:16 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteLabel delete a label for a repository
|
2016-08-03 21:54:16 +05:30
|
|
|
func DeleteLabel(ctx *context.APIContext) {
|
|
|
|
if !ctx.Repo.IsWriter() {
|
|
|
|
ctx.Status(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeleteLabel(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil {
|
|
|
|
ctx.Error(500, "DeleteLabel", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|