mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
|
package kmip
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/gemalto/kmip-go/kmip14"
|
||
|
)
|
||
|
|
||
|
// GetRequestPayload ////////////////////////////////////////
|
||
|
type GetRequestPayload struct {
|
||
|
UniqueIdentifier string
|
||
|
}
|
||
|
|
||
|
// GetResponsePayload
|
||
|
type GetResponsePayload struct {
|
||
|
ObjectType kmip14.ObjectType
|
||
|
UniqueIdentifier string
|
||
|
Certificate *Certificate
|
||
|
SymmetricKey *SymmetricKey
|
||
|
PrivateKey *PrivateKey
|
||
|
PublicKey *PublicKey
|
||
|
SplitKey *SplitKey
|
||
|
Template *Template
|
||
|
SecretData *SecretData
|
||
|
OpaqueObject *OpaqueObject
|
||
|
}
|
||
|
|
||
|
type GetHandler struct {
|
||
|
Get func(ctx context.Context, payload *GetRequestPayload) (*GetResponsePayload, error)
|
||
|
}
|
||
|
|
||
|
func (h *GetHandler) HandleItem(ctx context.Context, req *Request) (*ResponseBatchItem, error) {
|
||
|
var payload GetRequestPayload
|
||
|
|
||
|
err := req.DecodePayload(&payload)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
respPayload, err := h.Get(ctx, &payload)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// req.Key = respPayload.Key
|
||
|
|
||
|
return &ResponseBatchItem{
|
||
|
ResponsePayload: respPayload,
|
||
|
}, nil
|
||
|
}
|