mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.1 KiB
114 lines
3.1 KiB
// 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/gogs/go-gogs-client" |
|
|
|
"github.com/gogs/gogs/models" |
|
"github.com/gogs/gogs/pkg/context" |
|
"github.com/gogs/gogs/pkg/setting" |
|
"github.com/gogs/gogs/routes/api/v1/convert" |
|
) |
|
|
|
func composeDeployKeysAPILink(repoPath string) string { |
|
return setting.AppURL + "api/v1/repos/" + repoPath + "/keys/" |
|
} |
|
|
|
// https://github.com/gogs/go-gogs-client/wiki/Repositories-Deploy-Keys#list-deploy-keys |
|
func ListDeployKeys(c *context.APIContext) { |
|
keys, err := models.ListDeployKeys(c.Repo.Repository.ID) |
|
if err != nil { |
|
c.Error(500, "ListDeployKeys", err) |
|
return |
|
} |
|
|
|
apiLink := composeDeployKeysAPILink(c.Repo.Owner.Name + "/" + c.Repo.Repository.Name) |
|
apiKeys := make([]*api.DeployKey, len(keys)) |
|
for i := range keys { |
|
if err = keys[i].GetContent(); err != nil { |
|
c.Error(500, "GetContent", err) |
|
return |
|
} |
|
apiKeys[i] = convert.ToDeployKey(apiLink, keys[i]) |
|
} |
|
|
|
c.JSON(200, &apiKeys) |
|
} |
|
|
|
// https://github.com/gogs/go-gogs-client/wiki/Repositories-Deploy-Keys#get-a-deploy-key |
|
func GetDeployKey(c *context.APIContext) { |
|
key, err := models.GetDeployKeyByID(c.ParamsInt64(":id")) |
|
if err != nil { |
|
if models.IsErrDeployKeyNotExist(err) { |
|
c.Status(404) |
|
} else { |
|
c.Error(500, "GetDeployKeyByID", err) |
|
} |
|
return |
|
} |
|
|
|
if err = key.GetContent(); err != nil { |
|
c.Error(500, "GetContent", err) |
|
return |
|
} |
|
|
|
apiLink := composeDeployKeysAPILink(c.Repo.Owner.Name + "/" + c.Repo.Repository.Name) |
|
c.JSON(200, convert.ToDeployKey(apiLink, key)) |
|
} |
|
|
|
func HandleCheckKeyStringError(c *context.APIContext, err error) { |
|
if models.IsErrKeyUnableVerify(err) { |
|
c.Error(422, "", "Unable to verify key content") |
|
} else { |
|
c.Error(422, "", fmt.Errorf("Invalid key content: %v", err)) |
|
} |
|
} |
|
|
|
func HandleAddKeyError(c *context.APIContext, err error) { |
|
switch { |
|
case models.IsErrKeyAlreadyExist(err): |
|
c.Error(422, "", "Key content has been used as non-deploy key") |
|
case models.IsErrKeyNameAlreadyUsed(err): |
|
c.Error(422, "", "Key title has been used") |
|
default: |
|
c.Error(500, "AddKey", err) |
|
} |
|
} |
|
|
|
// https://github.com/gogs/go-gogs-client/wiki/Repositories-Deploy-Keys#add-a-new-deploy-key |
|
func CreateDeployKey(c *context.APIContext, form api.CreateKeyOption) { |
|
content, err := models.CheckPublicKeyString(form.Key) |
|
if err != nil { |
|
HandleCheckKeyStringError(c, err) |
|
return |
|
} |
|
|
|
key, err := models.AddDeployKey(c.Repo.Repository.ID, form.Title, content) |
|
if err != nil { |
|
HandleAddKeyError(c, err) |
|
return |
|
} |
|
|
|
key.Content = content |
|
apiLink := composeDeployKeysAPILink(c.Repo.Owner.Name + "/" + c.Repo.Repository.Name) |
|
c.JSON(201, convert.ToDeployKey(apiLink, key)) |
|
} |
|
|
|
// https://github.com/gogs/go-gogs-client/wiki/Repositories-Deploy-Keys#remove-a-deploy-key |
|
func DeleteDeploykey(c *context.APIContext) { |
|
if err := models.DeleteDeployKey(c.User, c.ParamsInt64(":id")); err != nil { |
|
if models.IsErrKeyAccessDenied(err) { |
|
c.Error(403, "", "You do not have access to this key") |
|
} else { |
|
c.Error(500, "DeleteDeployKey", err) |
|
} |
|
return |
|
} |
|
|
|
c.Status(204) |
|
}
|
|
|