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-10-07 20:17:27 +03:00
"strconv"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2018-03-29 16:32:40 +03:00
api "code.gitea.io/sdk/gitea"
2016-08-03 19:24:16 +03:00
)
2016-11-24 10:04:31 +03:00
// ListLabels list all the labels of a repository
2016-08-03 19:24:16 +03:00
func ListLabels ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation GET /repos/{owner}/{repo}/labels issue issueListLabels
// ---
// summary: Get all of a repository's labels
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/LabelList"
2016-12-24 17:41:09 +03:00
labels , err := models . GetLabelsByRepoID ( ctx . Repo . Repository . ID , ctx . Query ( "sort" ) )
2016-08-03 19:24:16 +03:00
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 )
}
2016-11-24 10:04:31 +03:00
// GetLabel get label by repository and label id
2016-08-03 19:24:16 +03:00
func GetLabel ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation GET /repos/{owner}/{repo}/labels/{id} issue issueGetLabel
// ---
// summary: Get a single label
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: id
// in: path
// description: id of the label to get
// type: integer
// required: true
// responses:
// "200":
// "$ref": "#/responses/Label"
2016-10-07 20:17:27 +03: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 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-11-24 10:04:31 +03:00
// CreateLabel create a label for a repository
2016-08-03 21:51:22 +03:00
func CreateLabel ( ctx * context . APIContext , form api . CreateLabelOption ) {
2017-11-13 10:02:25 +03:00
// swagger:operation POST /repos/{owner}/{repo}/labels issue issueCreateLabel
// ---
// summary: Create a label
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/CreateLabelOption"
// responses:
// "201":
// "$ref": "#/responses/Label"
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 ,
}
2017-06-25 09:15:09 +03:00
if err := models . NewLabel ( 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-11-24 10:04:31 +03:00
// EditLabel modify a label for a repository
2016-08-03 21:51:22 +03:00
func EditLabel ( ctx * context . APIContext , form api . EditLabelOption ) {
2017-11-13 10:02:25 +03:00
// swagger:operation PATCH /repos/{owner}/{repo}/labels/{id} issue issueEditLabel
// ---
// summary: Update a label
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: id
// in: path
// description: id of the label to edit
// type: integer
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/EditLabelOption"
// responses:
// "200":
// "$ref": "#/responses/Label"
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 {
2018-01-11 00:34:17 +03:00
ctx . ServerError ( "UpdateLabel" , 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-11-24 10:04:31 +03:00
// DeleteLabel delete a label for a repository
2016-08-03 19:24:16 +03:00
func DeleteLabel ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation DELETE /repos/{owner}/{repo}/labels/{id} issue issueDeleteLabel
// ---
// summary: Delete a label
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: id
// in: path
// description: id of the label to delete
// type: integer
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
2016-08-03 19:24:16 +03:00
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 )
}