| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- // Copyright 2015 The Gogs Authors. All rights reserved.
- // Copyright 2018 Gitote. All rights reserved.
- //
- // This source code is licensed under the MIT license found in the
- // LICENSE file in the root directory of this source tree.
- package repo
- import (
- "fmt"
- "gitote/gitote/models"
- "gitote/gitote/pkg/context"
- "gitote/gitote/pkg/setting"
- "gitote/gitote/routes/api/v1/convert"
- api "gitlab.com/gitote/go-gitote-client"
- )
- func composeDeployKeysAPILink(repoPath string) string {
- return setting.AppURL + "api/v1/repos/" + repoPath + "/keys/"
- }
- // ListDeployKeys list all the deploy keys of a repository
- 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)
- }
- // GetDeployKey get a deploy key by id
- 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))
- }
- // HandleCheckKeyStringError handle check key error
- 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))
- }
- }
- // HandleAddKeyError handle add key error
- 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)
- }
- }
- // CreateDeployKey create deploy key for a repository
- 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))
- }
- // DeleteDeploykey delete deploy key for a repository
- 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)
- }
|