2015-12-03 10:54:37 +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 user
|
2015-12-03 10:54:37 +05:30
|
|
|
|
|
|
|
import (
|
2019-12-20 22:37:12 +05:30
|
|
|
"net/http"
|
|
|
|
|
2021-12-10 13:44:24 +05:30
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-11-28 17:28:28 +05:30
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 10:11:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 22:10:30 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/repo"
|
2020-01-25 00:30:29 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2021-12-10 13:44:24 +05:30
|
|
|
asymkey_service "code.gitea.io/gitea/services/asymkey"
|
2015-12-03 10:54:37 +05:30
|
|
|
)
|
|
|
|
|
2018-11-01 09:10:49 +05:30
|
|
|
// appendPrivateInformation appends the owner and key type information to api.PublicKey
|
2021-12-10 13:44:24 +05:30
|
|
|
func appendPrivateInformation(apiKey *api.PublicKey, key *asymkey_model.PublicKey, defaultUser *user_model.User) (*api.PublicKey, error) {
|
|
|
|
if key.Type == asymkey_model.KeyTypeDeploy {
|
2018-11-01 09:10:49 +05:30
|
|
|
apiKey.KeyType = "deploy"
|
2021-12-10 13:44:24 +05:30
|
|
|
} else if key.Type == asymkey_model.KeyTypeUser {
|
2018-11-01 09:10:49 +05:30
|
|
|
apiKey.KeyType = "user"
|
|
|
|
|
|
|
|
if defaultUser.ID == key.OwnerID {
|
2021-03-27 22:15:26 +05:30
|
|
|
apiKey.Owner = convert.ToUser(defaultUser, defaultUser)
|
2018-11-01 09:10:49 +05:30
|
|
|
} else {
|
2021-11-24 15:19:20 +05:30
|
|
|
user, err := user_model.GetUserByID(key.OwnerID)
|
2018-11-01 09:10:49 +05:30
|
|
|
if err != nil {
|
|
|
|
return apiKey, err
|
|
|
|
}
|
2021-03-27 22:15:26 +05:30
|
|
|
apiKey.Owner = convert.ToUser(user, user)
|
2018-11-01 09:10:49 +05:30
|
|
|
}
|
|
|
|
} else {
|
|
|
|
apiKey.KeyType = "unknown"
|
|
|
|
}
|
2021-11-28 17:28:28 +05:30
|
|
|
apiKey.ReadOnly = key.Mode == perm.AccessModeRead
|
2018-11-01 09:10:49 +05:30
|
|
|
return apiKey, nil
|
|
|
|
}
|
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
func composePublicKeysAPILink() string {
|
2016-11-27 15:44:25 +05:30
|
|
|
return setting.AppURL + "api/v1/user/keys/"
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func listPublicKeys(ctx *context.APIContext, user *user_model.User) {
|
2021-12-10 13:44:24 +05:30
|
|
|
var keys []*asymkey_model.PublicKey
|
2018-11-01 09:10:49 +05:30
|
|
|
var err error
|
2021-08-12 18:13:08 +05:30
|
|
|
var count int
|
2018-11-01 09:10:49 +05:30
|
|
|
|
2021-08-11 06:01:13 +05:30
|
|
|
fingerprint := ctx.FormString("fingerprint")
|
2018-11-01 09:10:49 +05:30
|
|
|
username := ctx.Params("username")
|
|
|
|
|
|
|
|
if fingerprint != "" {
|
|
|
|
// Querying not just listing
|
|
|
|
if username != "" {
|
|
|
|
// Restrict to provided uid
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err = asymkey_model.SearchPublicKey(user.ID, fingerprint)
|
2018-11-01 09:10:49 +05:30
|
|
|
} else {
|
|
|
|
// Unrestricted
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err = asymkey_model.SearchPublicKey(0, fingerprint)
|
2018-11-01 09:10:49 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
count = len(keys)
|
2018-11-01 09:10:49 +05:30
|
|
|
} else {
|
2021-12-10 13:44:24 +05:30
|
|
|
total, err2 := asymkey_model.CountPublicKeys(user.ID)
|
2021-08-12 18:13:08 +05:30
|
|
|
if err2 != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
count = int(total)
|
|
|
|
|
2018-11-01 09:10:49 +05:30
|
|
|
// Use ListPublicKeys
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err = asymkey_model.ListPublicKeys(user.ID, utils.GetListOptions(ctx))
|
2018-11-01 09:10:49 +05:30
|
|
|
}
|
|
|
|
|
2015-12-03 10:54:37 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "ListPublicKeys", err)
|
2015-12-03 10:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLink := composePublicKeysAPILink()
|
|
|
|
apiKeys := make([]*api.PublicKey, len(keys))
|
|
|
|
for i := range keys {
|
2016-03-14 08:50:22 +05:30
|
|
|
apiKeys[i] = convert.ToPublicKey(apiLink, keys[i])
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer.IsAdmin || ctx.Doer.ID == keys[i].OwnerID {
|
2018-11-01 09:10:49 +05:30
|
|
|
apiKeys[i], _ = appendPrivateInformation(apiKeys[i], keys[i], user)
|
|
|
|
}
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
ctx.SetTotalCountHeader(int64(count))
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, &apiKeys)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// ListMyPublicKeys list all of the authenticated user's public keys
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListMyPublicKeys(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /user/keys user userCurrentListKeys
|
|
|
|
// ---
|
|
|
|
// summary: List the authenticated user's public keys
|
2018-11-01 09:10:49 +05:30
|
|
|
// parameters:
|
|
|
|
// - name: fingerprint
|
|
|
|
// in: query
|
|
|
|
// description: fingerprint of the key
|
|
|
|
// type: string
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/PublicKeyList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-03-22 12:33:22 +05:30
|
|
|
listPublicKeys(ctx, ctx.Doer)
|
2015-12-05 03:46:42 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// ListPublicKeys list the given user's public keys
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListPublicKeys(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /users/{username}/keys user userListKeys
|
|
|
|
// ---
|
|
|
|
// summary: List the given user's public keys
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-11-01 09:10:49 +05:30
|
|
|
// - name: fingerprint
|
|
|
|
// in: query
|
|
|
|
// description: fingerprint of the key
|
|
|
|
// type: string
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/PublicKeyList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-03-26 14:34:22 +05:30
|
|
|
listPublicKeys(ctx, ctx.ContextUser)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// GetPublicKey get a public key
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetPublicKey(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /user/keys/{id} user userCurrentGetKey
|
|
|
|
// ---
|
|
|
|
// summary: Get a public key
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of key to get
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/PublicKey"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2021-12-10 13:44:24 +05:30
|
|
|
key, err := asymkey_model.GetPublicKeyByID(ctx.ParamsInt64(":id"))
|
2015-12-03 10:54:37 +05:30
|
|
|
if err != nil {
|
2021-12-10 13:44:24 +05:30
|
|
|
if asymkey_model.IsErrKeyNotExist(err) {
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2015-12-03 10:54:37 +05:30
|
|
|
} else {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetPublicKeyByID", err)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLink := composePublicKeysAPILink()
|
2018-11-01 09:10:49 +05:30
|
|
|
apiKey := convert.ToPublicKey(apiLink, key)
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer.IsAdmin || ctx.Doer.ID == key.OwnerID {
|
|
|
|
apiKey, _ = appendPrivateInformation(apiKey, key, ctx.Doer)
|
2018-11-01 09:10:49 +05:30
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, apiKey)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2015-12-06 03:43:13 +05:30
|
|
|
// CreateUserPublicKey creates new public key to given user by ID.
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateUserPublicKey(ctx *context.APIContext, form api.CreateKeyOption, uid int64) {
|
2021-12-10 13:44:24 +05:30
|
|
|
content, err := asymkey_model.CheckPublicKeyString(form.Key)
|
2015-12-03 10:54:37 +05:30
|
|
|
if err != nil {
|
2015-12-05 03:46:42 +05:30
|
|
|
repo.HandleCheckKeyStringError(ctx, err)
|
2015-12-03 10:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-10 13:44:24 +05:30
|
|
|
key, err := asymkey_model.AddPublicKey(uid, form.Title, content, 0)
|
2015-12-03 10:54:37 +05:30
|
|
|
if err != nil {
|
2015-12-05 03:46:42 +05:30
|
|
|
repo.HandleAddKeyError(ctx, err)
|
2015-12-03 10:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
apiLink := composePublicKeysAPILink()
|
2018-11-01 09:10:49 +05:30
|
|
|
apiKey := convert.ToPublicKey(apiLink, key)
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer.IsAdmin || ctx.Doer.ID == key.OwnerID {
|
|
|
|
apiKey, _ = appendPrivateInformation(apiKey, key, ctx.Doer)
|
2018-11-01 09:10:49 +05:30
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusCreated, apiKey)
|
2015-12-05 03:46:42 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreatePublicKey create one public key for me
|
2021-01-26 21:06:53 +05:30
|
|
|
func CreatePublicKey(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation POST /user/keys user userCurrentPostKey
|
|
|
|
// ---
|
|
|
|
// summary: Create a public key
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateKeyOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/PublicKey"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.CreateKeyOption)
|
2022-03-22 12:33:22 +05:30
|
|
|
CreateUserPublicKey(ctx, *form, ctx.Doer.ID)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
|
2017-11-13 12:32:25 +05:30
|
|
|
// DeletePublicKey delete one public key
|
2016-03-14 04:19:16 +05:30
|
|
|
func DeletePublicKey(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation DELETE /user/keys/{id} user userCurrentDeleteKey
|
|
|
|
// ---
|
|
|
|
// summary: Delete a public key
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of key to delete
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2017-12-06 15:57:10 +05:30
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2020-12-26 09:54:47 +05:30
|
|
|
id := ctx.ParamsInt64(":id")
|
2021-12-10 13:44:24 +05:30
|
|
|
externallyManaged, err := asymkey_model.PublicKeyIsExternallyManaged(id)
|
2020-12-26 09:54:47 +05:30
|
|
|
if err != nil {
|
2022-04-21 06:38:30 +05:30
|
|
|
if asymkey_model.IsErrKeyNotExist(err) {
|
|
|
|
ctx.NotFound()
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "PublicKeyIsExternallyManaged", err)
|
|
|
|
}
|
|
|
|
return
|
2020-12-26 09:54:47 +05:30
|
|
|
}
|
2022-04-21 06:38:30 +05:30
|
|
|
|
2020-12-26 09:54:47 +05:30
|
|
|
if externallyManaged {
|
|
|
|
ctx.Error(http.StatusForbidden, "", "SSH Key is externally managed for this user")
|
2022-04-21 06:38:30 +05:30
|
|
|
return
|
2020-12-26 09:54:47 +05:30
|
|
|
}
|
|
|
|
|
2022-03-22 12:33:22 +05:30
|
|
|
if err := asymkey_service.DeletePublicKey(ctx.Doer, id); err != nil {
|
2022-04-21 06:38:30 +05:30
|
|
|
if asymkey_model.IsErrKeyAccessDenied(err) {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusForbidden, "", "You do not have access to this key")
|
2015-12-03 10:54:37 +05:30
|
|
|
} else {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "DeletePublicKey", err)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-03 10:54:37 +05:30
|
|
|
}
|