2016-08-03 19:24:16 +03: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-11-11 12:39:44 +03:00
api "code.gitea.io/sdk/gitea"
2016-08-03 19:24:16 +03:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2016-08-03 19:24:16 +03:00
)
func ListLabels ( ctx * context . APIContext ) {
labels , err := models . GetLabelsByRepoID ( ctx . Repo . Repository . ID )
if err != nil {
2016-08-03 21:51:22 +03:00
ctx . Error ( 500 , "GetLabelsByRepoID" , err )
2016-08-03 19:24:16 +03:00
return
}
apiLabels := make ( [ ] * api . Label , len ( labels ) )
for i := range labels {
2016-08-14 14:17:26 +03:00
apiLabels [ i ] = labels [ i ] . APIFormat ( )
2016-08-03 19:24:16 +03:00
}
ctx . JSON ( 200 , & apiLabels )
}
func GetLabel ( ctx * context . APIContext ) {
2016-08-03 21:51:22 +03:00
label , err := models . GetLabelInRepoByID ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":id" ) )
2016-08-03 19:24:16 +03:00
if err != nil {
if models . IsErrLabelNotExist ( err ) {
ctx . Status ( 404 )
} else {
2016-08-03 21:51:22 +03:00
ctx . Error ( 500 , "GetLabelByRepoID" , err )
2016-08-03 19:24:16 +03:00
}
return
}
2016-08-14 14:17:26 +03:00
ctx . JSON ( 200 , label . APIFormat ( ) )
2016-08-03 19:24:16 +03:00
}
2016-08-03 21:51:22 +03:00
func CreateLabel ( ctx * context . APIContext , form api . CreateLabelOption ) {
2016-08-03 19:24:16 +03: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 06:00:06 +03:00
if err := models . NewLabels ( label ) ; err != nil {
2016-08-03 19:24:16 +03:00
ctx . Error ( 500 , "NewLabel" , err )
return
}
2016-08-14 14:17:26 +03:00
ctx . JSON ( 201 , label . APIFormat ( ) )
2016-08-03 19:24:16 +03:00
}
2016-08-03 21:51:22 +03:00
func EditLabel ( ctx * context . APIContext , form api . EditLabelOption ) {
2016-08-03 19:24:16 +03:00
if ! ctx . Repo . IsWriter ( ) {
ctx . Status ( 403 )
return
}
2016-08-03 21:51:22 +03:00
label , err := models . GetLabelInRepoByID ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":id" ) )
2016-08-03 19:24:16 +03:00
if err != nil {
if models . IsErrLabelNotExist ( err ) {
ctx . Status ( 404 )
} else {
2016-08-03 21:51:22 +03:00
ctx . Error ( 500 , "GetLabelByRepoID" , err )
2016-08-03 19:24:16 +03:00
}
return
}
2016-08-03 21:51:22 +03:00
if form . Name != nil {
label . Name = * form . Name
2016-08-03 19:24:16 +03:00
}
2016-08-03 21:51:22 +03:00
if form . Color != nil {
label . Color = * form . Color
2016-08-03 19:24:16 +03:00
}
if err := models . UpdateLabel ( label ) ; err != nil {
ctx . Handle ( 500 , "UpdateLabel" , err )
return
}
2016-08-14 14:17:26 +03:00
ctx . JSON ( 200 , label . APIFormat ( ) )
2016-08-03 19:24:16 +03: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 )
}