2015-11-18 19:21:47 -07:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2020-01-24 12:00:29 -07:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2015-11-18 19:21:47 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 15:16:42 -07:00
|
|
|
package repo
|
2015-11-18 19:21:47 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-12-20 10:07:12 -07:00
|
|
|
"net/http"
|
2021-11-16 11:18:25 -07:00
|
|
|
"net/url"
|
2015-11-18 19:21:47 -07:00
|
|
|
|
2021-12-10 01:14:24 -07:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-28 04:58:28 -07:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-09 21:41:51 -07:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 04:21:34 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 08:36:53 -07:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-24 12:00:29 -07:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2021-12-10 01:14:24 -07:00
|
|
|
asymkey_service "code.gitea.io/gitea/services/asymkey"
|
2015-11-18 19:21:47 -07:00
|
|
|
)
|
|
|
|
|
2018-10-31 21:40:49 -06:00
|
|
|
// appendPrivateInformation appends the owner and key type information to api.PublicKey
|
2021-12-10 01:14:24 -07:00
|
|
|
func appendPrivateInformation(apiKey *api.DeployKey, key *asymkey_model.DeployKey, repository *repo_model.Repository) (*api.DeployKey, error) {
|
2021-11-28 04:58:28 -07:00
|
|
|
apiKey.ReadOnly = key.Mode == perm.AccessModeRead
|
2018-10-31 21:40:49 -06:00
|
|
|
if repository.ID == key.RepoID {
|
2020-12-02 14:38:30 -07:00
|
|
|
apiKey.Repository = convert.ToRepo(repository, key.Mode)
|
2018-10-31 21:40:49 -06:00
|
|
|
} else {
|
2021-12-09 18:27:50 -07:00
|
|
|
repo, err := repo_model.GetRepositoryByID(key.RepoID)
|
2018-10-31 21:40:49 -06:00
|
|
|
if err != nil {
|
|
|
|
return apiKey, err
|
|
|
|
}
|
2020-12-02 14:38:30 -07:00
|
|
|
apiKey.Repository = convert.ToRepo(repo, key.Mode)
|
2018-10-31 21:40:49 -06:00
|
|
|
}
|
|
|
|
return apiKey, nil
|
|
|
|
}
|
|
|
|
|
2021-11-16 11:18:25 -07:00
|
|
|
func composeDeployKeysAPILink(owner, name string) string {
|
|
|
|
return setting.AppURL + "api/v1/repos/" + url.PathEscape(owner) + "/" + url.PathEscape(name) + "/keys/"
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ListDeployKeys list all the deploy keys of a repository
|
2016-03-13 16:49:16 -06:00
|
|
|
func ListDeployKeys(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/keys repository repoListKeys
|
|
|
|
// ---
|
|
|
|
// summary: List a repository's keys
|
|
|
|
// 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
|
2018-10-31 21:40:49 -06:00
|
|
|
// - name: key_id
|
|
|
|
// in: query
|
|
|
|
// description: the key_id to search for
|
|
|
|
// type: integer
|
|
|
|
// - name: fingerprint
|
|
|
|
// in: query
|
|
|
|
// description: fingerprint of the key
|
|
|
|
// type: string
|
2020-01-24 12:00:29 -07:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-08 22:57:38 -06:00
|
|
|
// description: page size of results
|
2020-01-24 12:00:29 -07:00
|
|
|
// type: integer
|
2017-11-13 00:02:25 -07:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/DeployKeyList"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2021-12-10 01:14:24 -07:00
|
|
|
opts := &asymkey_model.ListDeployKeysOptions{
|
2021-08-12 06:43:08 -06:00
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
KeyID: ctx.FormInt64("key_id"),
|
|
|
|
Fingerprint: ctx.FormString("fingerprint"),
|
|
|
|
}
|
2018-10-31 21:40:49 -06:00
|
|
|
|
2022-03-22 09:22:54 -06:00
|
|
|
keys, err := asymkey_model.ListDeployKeys(ctx, opts)
|
2021-08-12 06:43:08 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
2018-10-31 21:40:49 -06:00
|
|
|
}
|
|
|
|
|
2021-12-10 01:14:24 -07:00
|
|
|
count, err := asymkey_model.CountDeployKeys(opts)
|
2015-11-18 19:21:47 -07:00
|
|
|
if err != nil {
|
2021-08-12 06:43:08 -06:00
|
|
|
ctx.InternalServerError(err)
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-16 11:18:25 -07:00
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
2015-11-18 19:21:47 -07:00
|
|
|
apiKeys := make([]*api.DeployKey, len(keys))
|
|
|
|
for i := range keys {
|
2021-08-12 06:43:08 -06:00
|
|
|
if err := keys[i].GetContent(); err != nil {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetContent", err)
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
2016-03-13 21:20:22 -06:00
|
|
|
apiKeys[i] = convert.ToDeployKey(apiLink, keys[i])
|
2022-03-22 01:03:22 -06:00
|
|
|
if ctx.Doer.IsAdmin || ((ctx.Repo.Repository.ID == keys[i].RepoID) && (ctx.Doer.ID == ctx.Repo.Owner.ID)) {
|
2018-10-31 21:40:49 -06:00
|
|
|
apiKeys[i], _ = appendPrivateInformation(apiKeys[i], keys[i], ctx.Repo.Repository)
|
|
|
|
}
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
|
2021-08-12 06:43:08 -06:00
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusOK, &apiKeys)
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// GetDeployKey get a deploy key by id
|
2016-03-13 16:49:16 -06:00
|
|
|
func GetDeployKey(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/keys/{id} repository repoGetKey
|
|
|
|
// ---
|
|
|
|
// summary: Get a repository's key by id
|
|
|
|
// 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 key to get
|
|
|
|
// type: integer
|
2018-10-20 21:40:42 -06:00
|
|
|
// format: int64
|
2017-11-13 00:02:25 -07:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/DeployKey"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2022-03-22 03:29:07 -06:00
|
|
|
key, err := asymkey_model.GetDeployKeyByID(ctx, ctx.ParamsInt64(":id"))
|
2015-11-18 19:21:47 -07:00
|
|
|
if err != nil {
|
2021-12-10 01:14:24 -07:00
|
|
|
if asymkey_model.IsErrDeployKeyNotExist(err) {
|
2019-03-18 20:29:43 -06:00
|
|
|
ctx.NotFound()
|
2015-11-18 19:21:47 -07:00
|
|
|
} else {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetDeployKeyByID", err)
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = key.GetContent(); err != nil {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetContent", err)
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-16 11:18:25 -07:00
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
2018-10-31 21:40:49 -06:00
|
|
|
apiKey := convert.ToDeployKey(apiLink, key)
|
2022-03-22 01:03:22 -06:00
|
|
|
if ctx.Doer.IsAdmin || ((ctx.Repo.Repository.ID == key.RepoID) && (ctx.Doer.ID == ctx.Repo.Owner.ID)) {
|
2018-10-31 21:40:49 -06:00
|
|
|
apiKey, _ = appendPrivateInformation(apiKey, key, ctx.Repo.Repository)
|
|
|
|
}
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusOK, apiKey)
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// HandleCheckKeyStringError handle check key error
|
2016-03-13 16:49:16 -06:00
|
|
|
func HandleCheckKeyStringError(ctx *context.APIContext, err error) {
|
2021-12-10 01:14:24 -07:00
|
|
|
if db.IsErrSSHDisabled(err) {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "SSH is disabled")
|
2021-12-10 01:14:24 -07:00
|
|
|
} else if asymkey_model.IsErrKeyUnableVerify(err) {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Unable to verify key content")
|
2015-12-02 22:24:37 -07:00
|
|
|
} else {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("Invalid key content: %v", err))
|
2015-12-02 22:24:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// HandleAddKeyError handle add key error
|
2016-03-13 16:49:16 -06:00
|
|
|
func HandleAddKeyError(ctx *context.APIContext, err error) {
|
2015-12-02 22:24:37 -07:00
|
|
|
switch {
|
2021-12-10 01:14:24 -07:00
|
|
|
case asymkey_model.IsErrDeployKeyAlreadyExist(err):
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "This key has already been added to this repository")
|
2021-12-10 01:14:24 -07:00
|
|
|
case asymkey_model.IsErrKeyAlreadyExist(err):
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Key content has been used as non-deploy key")
|
2021-12-10 01:14:24 -07:00
|
|
|
case asymkey_model.IsErrKeyNameAlreadyUsed(err):
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "Key title has been used")
|
2021-12-10 01:14:24 -07:00
|
|
|
case asymkey_model.IsErrDeployKeyNameAlreadyUsed(err):
|
2020-10-12 07:44:56 -06:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", "A key with the same name already exists")
|
2015-12-02 22:24:37 -07:00
|
|
|
default:
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AddKey", err)
|
2015-12-02 22:24:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// CreateDeployKey create deploy key for a repository
|
2021-01-26 08:36:53 -07:00
|
|
|
func CreateDeployKey(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/keys repository repoCreateKey
|
|
|
|
// ---
|
|
|
|
// summary: Add a key to a repository
|
|
|
|
// 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/CreateKeyOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/DeployKey"
|
2019-12-20 10:07:12 -07:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2021-01-26 08:36:53 -07:00
|
|
|
form := web.GetForm(ctx).(*api.CreateKeyOption)
|
2021-12-10 01:14:24 -07:00
|
|
|
content, err := asymkey_model.CheckPublicKeyString(form.Key)
|
2015-11-18 19:21:47 -07:00
|
|
|
if err != nil {
|
2015-12-04 15:16:42 -07:00
|
|
|
HandleCheckKeyStringError(ctx, err)
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-10 01:14:24 -07:00
|
|
|
key, err := asymkey_model.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content, form.ReadOnly)
|
2015-11-18 19:21:47 -07:00
|
|
|
if err != nil {
|
2015-12-04 15:16:42 -07:00
|
|
|
HandleAddKeyError(ctx, err)
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
key.Content = content
|
2021-11-16 11:18:25 -07:00
|
|
|
apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToDeployKey(apiLink, key))
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// DeleteDeploykey delete deploy key for a repository
|
2016-03-13 16:49:16 -06:00
|
|
|
func DeleteDeploykey(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/keys/{id} repository repoDeleteKey
|
|
|
|
// ---
|
|
|
|
// summary: Delete a key from a repository
|
|
|
|
// 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 key to delete
|
|
|
|
// type: integer
|
2018-10-20 21:40:42 -06:00
|
|
|
// format: int64
|
2017-11-13 00:02:25 -07:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 10:07:12 -07:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
|
2022-03-22 01:03:22 -06:00
|
|
|
if err := asymkey_service.DeleteDeployKey(ctx.Doer, ctx.ParamsInt64(":id")); err != nil {
|
2021-12-10 01:14:24 -07:00
|
|
|
if asymkey_model.IsErrKeyAccessDenied(err) {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusForbidden, "", "You do not have access to this key")
|
2015-12-02 22:24:37 -07:00
|
|
|
} else {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteDeployKey", err)
|
2015-12-02 22:24:37 -07:00
|
|
|
}
|
2015-11-18 19:21:47 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-11-18 19:21:47 -07:00
|
|
|
}
|