2016-08-03 18:24:16 +02: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 repo
|
|
|
|
|
|
|
|
import (
|
2016-10-07 19:17:27 +02:00
|
|
|
"strconv"
|
|
|
|
|
2016-11-11 10:39:44 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-08-03 18:24:16 +02:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-08-03 18:24:16 +02:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListLabels list all the labels of a repository
|
2016-08-03 18:24:16 +02:00
|
|
|
func ListLabels(ctx *context.APIContext) {
|
2016-12-24 15:41:09 +01:00
|
|
|
labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID, ctx.Query("sort"))
|
2016-08-03 18:24:16 +02:00
|
|
|
if err != nil {
|
2016-08-03 20:51:22 +02:00
|
|
|
ctx.Error(500, "GetLabelsByRepoID", err)
|
2016-08-03 18:24:16 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLabels := make([]*api.Label, len(labels))
|
|
|
|
for i := range labels {
|
2016-08-14 13:17:26 +02:00
|
|
|
apiLabels[i] = labels[i].APIFormat()
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiLabels)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// GetLabel get label by repository and label id
|
2016-08-03 18:24:16 +02:00
|
|
|
func GetLabel(ctx *context.APIContext) {
|
2016-10-07 19:17:27 +02:00
|
|
|
var (
|
|
|
|
label *models.Label
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
strID := ctx.Params(":id")
|
|
|
|
if intID, err2 := strconv.ParseInt(strID, 10, 64); err2 != nil {
|
|
|
|
label, err = models.GetLabelInRepoByName(ctx.Repo.Repository.ID, strID)
|
|
|
|
} else {
|
|
|
|
label, err = models.GetLabelInRepoByID(ctx.Repo.Repository.ID, intID)
|
|
|
|
}
|
2016-08-03 18:24:16 +02:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrLabelNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-03 20:51:22 +02:00
|
|
|
ctx.Error(500, "GetLabelByRepoID", err)
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-14 13:17:26 +02:00
|
|
|
ctx.JSON(200, label.APIFormat())
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// CreateLabel create a label for a repository
|
2016-08-03 20:51:22 +02:00
|
|
|
func CreateLabel(ctx *context.APIContext, form api.CreateLabelOption) {
|
2016-08-03 18:24:16 +02:00
|
|
|
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 05:00:06 +02:00
|
|
|
if err := models.NewLabels(label); err != nil {
|
2016-08-03 18:24:16 +02:00
|
|
|
ctx.Error(500, "NewLabel", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-14 13:17:26 +02:00
|
|
|
ctx.JSON(201, label.APIFormat())
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// EditLabel modify a label for a repository
|
2016-08-03 20:51:22 +02:00
|
|
|
func EditLabel(ctx *context.APIContext, form api.EditLabelOption) {
|
2016-08-03 18:24:16 +02:00
|
|
|
if !ctx.Repo.IsWriter() {
|
|
|
|
ctx.Status(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-03 20:51:22 +02:00
|
|
|
label, err := models.GetLabelInRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2016-08-03 18:24:16 +02:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrLabelNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-03 20:51:22 +02:00
|
|
|
ctx.Error(500, "GetLabelByRepoID", err)
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-03 20:51:22 +02:00
|
|
|
if form.Name != nil {
|
|
|
|
label.Name = *form.Name
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
2016-08-03 20:51:22 +02:00
|
|
|
if form.Color != nil {
|
|
|
|
label.Color = *form.Color
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
if err := models.UpdateLabel(label); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateLabel", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-14 13:17:26 +02:00
|
|
|
ctx.JSON(200, label.APIFormat())
|
2016-08-03 18:24:16 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// DeleteLabel delete a label for a repository
|
2016-08-03 18:24:16 +02:00
|
|
|
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)
|
|
|
|
}
|