2020-03-24 13:15:01 +00:00
|
|
|
package server
|
2020-03-23 06:01:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
|
|
structpb "github.com/golang/protobuf/ptypes/struct"
|
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
|
|
"github.com/caos/zitadel/internal/proto"
|
2020-12-02 07:50:59 +00:00
|
|
|
"github.com/caos/zitadel/internal/telemetry/tracing"
|
2020-03-23 06:01:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ValidationFunction func(ctx context.Context) error
|
|
|
|
|
|
|
|
type Validator struct {
|
|
|
|
validations map[string]ValidationFunction
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewValidator(validations map[string]ValidationFunction) *Validator {
|
|
|
|
return &Validator{validations: validations}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validator) Healthz(_ context.Context, e *empty.Empty) (*empty.Empty, error) {
|
|
|
|
return e, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validator) Ready(ctx context.Context, e *empty.Empty) (*empty.Empty, error) {
|
2020-07-08 11:56:37 +00:00
|
|
|
if len(validate(ctx, v.validations)) == 0 {
|
|
|
|
return e, nil
|
|
|
|
}
|
|
|
|
return nil, errors.ThrowInternal(nil, "API-2jD9a", "not ready")
|
2020-03-23 06:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Validator) Validate(ctx context.Context, _ *empty.Empty) (*structpb.Struct, error) {
|
|
|
|
validations := validate(ctx, v.validations)
|
|
|
|
return proto.ToPBStruct(validations)
|
|
|
|
}
|
|
|
|
|
|
|
|
func validate(ctx context.Context, validations map[string]ValidationFunction) map[string]error {
|
|
|
|
errors := make(map[string]error)
|
|
|
|
for id, validation := range validations {
|
|
|
|
if err := validation(ctx); err != nil {
|
2020-11-20 06:57:39 +00:00
|
|
|
logging.Log("API-vf823").WithError(err).WithField("traceID", tracing.TraceIDFromCtx(ctx)).Error("validation failed")
|
2020-03-23 06:01:59 +00:00
|
|
|
errors[id] = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return errors
|
|
|
|
}
|