2020-03-24 13:15:01 +00:00
|
|
|
package server
|
2020-03-23 06:01:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2023-11-13 10:41:29 +00:00
|
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
|
|
"google.golang.org/protobuf/types/known/structpb"
|
2020-03-23 06:01:59 +00:00
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
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}
|
|
|
|
}
|
|
|
|
|
2023-11-13 10:41:29 +00:00
|
|
|
func (v *Validator) Healthz(_ context.Context, e *emptypb.Empty) (*emptypb.Empty, error) {
|
2020-03-23 06:01:59 +00:00
|
|
|
return e, nil
|
|
|
|
}
|
|
|
|
|
2023-11-13 10:41:29 +00:00
|
|
|
func (v *Validator) Ready(ctx context.Context, e *emptypb.Empty) (*emptypb.Empty, error) {
|
2020-07-08 11:56:37 +00:00
|
|
|
if len(validate(ctx, v.validations)) == 0 {
|
|
|
|
return e, nil
|
|
|
|
}
|
2023-12-08 14:30:55 +00:00
|
|
|
return nil, zerrors.ThrowInternal(nil, "API-2jD9a", "not ready")
|
2020-03-23 06:01:59 +00:00
|
|
|
}
|
|
|
|
|
2023-11-13 10:41:29 +00:00
|
|
|
func (v *Validator) Validate(ctx context.Context, _ *emptypb.Empty) (*structpb.Struct, error) {
|
|
|
|
return structpb.NewStruct(validate(ctx, v.validations))
|
2020-03-23 06:01:59 +00:00
|
|
|
}
|
|
|
|
|
2023-11-13 10:41:29 +00:00
|
|
|
func validate(ctx context.Context, validations map[string]ValidationFunction) map[string]any {
|
|
|
|
errors := make(map[string]any)
|
2020-03-23 06:01:59 +00:00
|
|
|
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
|
|
|
|
}
|