certificates/scep/common.go

30 lines
750 B
Go
Raw Normal View History

2021-02-26 11:32:43 +00:00
package scep
import (
"context"
"errors"
)
// ContextKey is the key type for storing and searching for SCEP request
// essentials in the context of a request.
type ContextKey string
2021-02-26 11:32:43 +00:00
const (
// ProvisionerContextKey provisioner key
ProvisionerContextKey = ContextKey("provisioner")
2021-02-26 11:32:43 +00:00
)
// provisionerFromContext searches the context for a SCEP provisioner.
2021-02-26 11:32:43 +00:00
// Returns the provisioner or an error.
func provisionerFromContext(ctx context.Context) (Provisioner, error) {
val := ctx.Value(ProvisionerContextKey)
2021-02-26 11:32:43 +00:00
if val == nil {
return nil, errors.New("provisioner expected in request context")
}
p, ok := val.(Provisioner)
if !ok || p == nil {
return nil, errors.New("provisioner in context is not a SCEP provisioner")
}
return p, nil
}