aboutsummaryrefslogtreecommitdiff
path: root/routers/api/v1/repo/keys.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-03-21 12:47:54 -0400
committerUnknwon <u@gogs.io>2016-03-21 12:47:54 -0400
commite6f927f61af927156798390e64f17dd6755697e7 (patch)
treec97f90dfb0f4ae96534c13f98352907fb42d177b /routers/api/v1/repo/keys.go
parent60ae8ac3d2995d46156ead8ad93004801daad4ce (diff)
#1692 api: admin list and create team under organization
Diffstat (limited to 'routers/api/v1/repo/keys.go')
-rw-r--r--routers/api/v1/repo/keys.go114
1 files changed, 0 insertions, 114 deletions
diff --git a/routers/api/v1/repo/keys.go b/routers/api/v1/repo/keys.go
deleted file mode 100644
index 563dac26..00000000
--- a/routers/api/v1/repo/keys.go
+++ /dev/null
@@ -1,114 +0,0 @@
-// 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.
-
-package repo
-
-import (
- "fmt"
-
- api "github.com/gogits/go-gogs-client"
-
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/modules/context"
- "github.com/gogits/gogs/modules/setting"
- "github.com/gogits/gogs/routers/api/v1/convert"
-)
-
-func composeDeployKeysAPILink(repoPath string) string {
- return setting.AppUrl + "api/v1/repos/" + repoPath + "/keys/"
-}
-
-// https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#list-deploy-keys
-func ListDeployKeys(ctx *context.APIContext) {
- keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID)
- if err != nil {
- ctx.Error(500, "ListDeployKeys", err)
- 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 {
- ctx.Error(500, "GetContent", err)
- return
- }
- apiKeys[i] = convert.ToDeployKey(apiLink, keys[i])
- }
-
- ctx.JSON(200, &apiKeys)
-}
-
-// https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#get-a-deploy-key
-func GetDeployKey(ctx *context.APIContext) {
- key, err := models.GetDeployKeyByID(ctx.ParamsInt64(":id"))
- if err != nil {
- if models.IsErrDeployKeyNotExist(err) {
- ctx.Status(404)
- } else {
- ctx.Error(500, "GetDeployKeyByID", err)
- }
- return
- }
-
- if err = key.GetContent(); err != nil {
- ctx.Error(500, "GetContent", err)
- return
- }
-
- apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name)
- ctx.JSON(200, convert.ToDeployKey(apiLink, key))
-}
-
-func HandleCheckKeyStringError(ctx *context.APIContext, err error) {
- if models.IsErrKeyUnableVerify(err) {
- ctx.Error(422, "", "Unable to verify key content")
- } else {
- ctx.Error(422, "", fmt.Errorf("Invalid key content: %v", err))
- }
-}
-
-func HandleAddKeyError(ctx *context.APIContext, err error) {
- switch {
- case models.IsErrKeyAlreadyExist(err):
- ctx.Error(422, "", "Key content has been used as non-deploy key")
- case models.IsErrKeyNameAlreadyUsed(err):
- ctx.Error(422, "", "Key title has been used")
- default:
- ctx.Error(500, "AddKey", err)
- }
-}
-
-// https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#add-a-new-deploy-key
-func CreateDeployKey(ctx *context.APIContext, form api.CreateKeyOption) {
- content, err := models.CheckPublicKeyString(form.Key)
- if err != nil {
- HandleCheckKeyStringError(ctx, err)
- return
- }
-
- key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content)
- if err != nil {
- HandleAddKeyError(ctx, err)
- return
- }
-
- key.Content = content
- apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name)
- ctx.JSON(201, convert.ToDeployKey(apiLink, key))
-}
-
-// https://github.com/gogits/go-gogs-client/wiki/Repositories-Deploy-Keys#remove-a-deploy-key
-func DeleteDeploykey(ctx *context.APIContext) {
- if err := models.DeleteDeployKey(ctx.User, ctx.ParamsInt64(":id")); err != nil {
- if models.IsErrKeyAccessDenied(err) {
- ctx.Error(403, "", "You do not have access to this key")
- } else {
- ctx.Error(500, "DeleteDeployKey", err)
- }
- return
- }
-
- ctx.Status(204)
-}