2015-11-19 07:51:47 +05:30
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-12-05 03:46:42 +05:30
|
|
|
package repo
|
2015-11-19 07:51:47 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-11-19 07:51:47 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2015-11-19 07:51:47 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func composeDeployKeysAPILink(repoPath string) string {
|
2016-11-27 15:44:25 +05:30
|
|
|
return setting.AppURL + "api/v1/repos/" + repoPath + "/keys/"
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListDeployKeys list all the deploy keys of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#list-deploy-keys
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListDeployKeys(ctx *context.APIContext) {
|
2015-11-19 07:51:47 +05:30
|
|
|
keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "ListDeployKeys", err)
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name)
|
|
|
|
apiKeys := make([]*api.DeployKey, len(keys))
|
|
|
|
for i := range keys {
|
|
|
|
if err = keys[i].GetContent(); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetContent", err)
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
2016-03-14 08:50:22 +05:30
|
|
|
apiKeys[i] = convert.ToDeployKey(apiLink, keys[i])
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, &apiKeys)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GetDeployKey get a deploy key by id
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#get-a-deploy-key
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetDeployKey(ctx *context.APIContext) {
|
2015-11-19 07:51:47 +05:30
|
|
|
key, err := models.GetDeployKeyByID(ctx.ParamsInt64(":id"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrDeployKeyNotExist(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Status(404)
|
2015-11-19 07:51:47 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetDeployKeyByID", err)
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = key.GetContent(); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetContent", err)
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name)
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(200, convert.ToDeployKey(apiLink, key))
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// HandleCheckKeyStringError handle check key error
|
2016-03-14 04:19:16 +05:30
|
|
|
func HandleCheckKeyStringError(ctx *context.APIContext, err error) {
|
2015-12-03 10:54:37 +05:30
|
|
|
if models.IsErrKeyUnableVerify(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Unable to verify key content")
|
2015-12-03 10:54:37 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", fmt.Errorf("Invalid key content: %v", err))
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// HandleAddKeyError handle add key error
|
2016-03-14 04:19:16 +05:30
|
|
|
func HandleAddKeyError(ctx *context.APIContext, err error) {
|
2015-12-03 10:54:37 +05:30
|
|
|
switch {
|
|
|
|
case models.IsErrKeyAlreadyExist(err):
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Key content has been used as non-deploy key")
|
2015-12-03 10:54:37 +05:30
|
|
|
case models.IsErrKeyNameAlreadyUsed(err):
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Key title has been used")
|
2015-12-03 10:54:37 +05:30
|
|
|
default:
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "AddKey", err)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateDeployKey create deploy key for a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#add-a-new-deploy-key
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateDeployKey(ctx *context.APIContext, form api.CreateKeyOption) {
|
2015-11-19 07:51:47 +05:30
|
|
|
content, err := models.CheckPublicKeyString(form.Key)
|
|
|
|
if err != nil {
|
2015-12-05 03:46:42 +05:30
|
|
|
HandleCheckKeyStringError(ctx, err)
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content)
|
|
|
|
if err != nil {
|
2015-12-05 03:46:42 +05:30
|
|
|
HandleAddKeyError(ctx, err)
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
key.Content = content
|
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name)
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(201, convert.ToDeployKey(apiLink, key))
|
2015-11-19 07:51:47 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// DeleteDeploykey delete deploy key for a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#remove-a-deploy-key
|
2016-03-14 04:19:16 +05:30
|
|
|
func DeleteDeploykey(ctx *context.APIContext) {
|
2015-12-03 10:54:37 +05:30
|
|
|
if err := models.DeleteDeployKey(ctx.User, ctx.ParamsInt64(":id")); err != nil {
|
|
|
|
if models.IsErrKeyAccessDenied(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(403, "", "You do not have access to this key")
|
2015-12-03 10:54:37 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "DeleteDeployKey", err)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
2015-11-19 07:51:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|