2020-04-05 02:20:50 -04:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 02:20:50 -04:00
|
|
|
|
2019-10-16 09:42:42 -04:00
|
|
|
package misc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-12-10 03:14:24 -05:00
|
|
|
asymkey_service "code.gitea.io/gitea/services/asymkey"
|
2019-10-16 09:42:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// SigningKey returns the public key of the default signing key if it exists
|
2020-09-20 16:20:14 -04:00
|
|
|
func SigningKey(ctx *context.APIContext) {
|
2019-10-16 09:42:42 -04:00
|
|
|
// swagger:operation GET /signing-key.gpg miscellaneous getSigningKey
|
|
|
|
// ---
|
|
|
|
// summary: Get default signing-key.gpg
|
|
|
|
// produces:
|
|
|
|
// - text/plain
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// description: "GPG armored public key"
|
|
|
|
// schema:
|
|
|
|
// type: string
|
|
|
|
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/signing-key.gpg repository repoSigningKey
|
|
|
|
// ---
|
|
|
|
// summary: Get signing-key.gpg for given repository
|
|
|
|
// produces:
|
|
|
|
// - text/plain
|
|
|
|
// 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
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// description: "GPG armored public key"
|
|
|
|
// schema:
|
|
|
|
// type: string
|
|
|
|
|
|
|
|
path := ""
|
|
|
|
if ctx.Repo != nil && ctx.Repo.Repository != nil {
|
|
|
|
path = ctx.Repo.Repository.RepoPath()
|
|
|
|
}
|
|
|
|
|
2022-01-19 18:26:57 -05:00
|
|
|
content, err := asymkey_service.PublicSigningKey(ctx, path)
|
2019-10-16 09:42:42 -04:00
|
|
|
if err != nil {
|
2020-09-20 16:20:14 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "gpg export", err)
|
2019-10-16 09:42:42 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = ctx.Write([]byte(content))
|
|
|
|
if err != nil {
|
2022-10-24 15:29:17 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "gpg export", fmt.Errorf("Error writing key content %w", err))
|
2019-10-16 09:42:42 -04:00
|
|
|
}
|
|
|
|
}
|