open-vault/builtin/logical/ssh/path_fetch.go

41 lines
955 B
Go
Raw Normal View History

2016-12-26 14:03:27 +00:00
package ssh
import (
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func pathFetchPublicKey(b *backend) *framework.Path {
return &framework.Path{
Pattern: `public_key`,
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.ReadOperation: b.pathFetchPublicKey,
},
HelpSynopsis: `Retrieve the public key.`,
HelpDescription: `This allows the public key, that this backend has been configured with, to be fetched.`,
}
}
func (b *backend) pathFetchPublicKey(req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
entry, err := req.Storage.Get("config/ca_public_key")
2016-12-26 14:03:27 +00:00
if err != nil {
return nil, err
}
if entry == nil {
return nil, nil
}
2016-12-26 14:03:27 +00:00
response := &logical.Response{
Data: map[string]interface{}{
logical.HTTPContentType: "text/plain",
logical.HTTPRawBody: entry.Value,
logical.HTTPStatusCode: 200,
},
}
2016-12-26 14:03:27 +00:00
return response, nil
}