Skip to content

Commit

Permalink
Merge pull request #318 from xmidt-org/wrp-validation-update
Browse files Browse the repository at this point in the history
Wrp validation update
  • Loading branch information
maurafortino committed Nov 14, 2023
2 parents 32f0af6 + 49637ec commit f674634
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions primaryHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ func NewPrimaryHandler(logger *zap.Logger, v *viper.Viper, registry xmetrics.Reg
otelmux.WithPropagators(tracing.Propagator()),
otelmux.WithTracerProvider(tracing.TracerProvider()),
}
router.Use(otelmux.Middleware("mainSpan", otelMuxOptions...), candlelight.EchoFirstTraceNodeInfo(tracing.Propagator(), true), ValidateWRP())
router.Use(otelmux.Middleware("mainSpan", otelMuxOptions...), candlelight.EchoFirstTraceNodeInfo(tracing.Propagator(), true), ValidateWRP(logger))

router.NotFoundHandler = http.HandlerFunc(func(response http.ResponseWriter, _ *http.Request) {
xhttp.WriteError(response, http.StatusBadRequest, "Invalid endpoint")
Expand Down Expand Up @@ -563,25 +563,39 @@ func validateDeviceID() alice.Chain {
})
}

func ValidateWRP() func(http.Handler) http.Handler {
func ValidateWRP(logger *zap.Logger) func(http.Handler) http.Handler {
return func(delegate http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {

if msg, ok := wrpcontext.GetMessage(r.Context()); ok {
validators := wrp.SpecValidators()
var err error
var failureError error
var warningErrors error

validators := wrp.SpecValidators()
for _, v := range validators {
err = multierr.Append(err, v.Validate(*msg))
err = v.Validate(*msg)
if errors.Is(err, wrp.ErrorInvalidMessageEncoding.Err) || errors.Is(err, wrp.ErrorInvalidMessageType.Err) {
failureError = multierr.Append(failureError, err)
} else if errors.Is(err, wrp.ErrorInvalidDestination.Err) || errors.Is(err, wrp.ErrorInvalidSource.Err) {
warningErrors = multierr.Append(warningErrors, err)
}
}
if err != nil {

if warningErrors != nil {
logger.Warn("WRP message validation warnings found", zap.Error(warningErrors))
}

if failureError != nil {
logger.Error("WRP message validation failures found", zap.Error(failureError))

w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(
w,
`{"code": %d, "message": "%s"}`,
http.StatusBadRequest,
fmt.Sprintf("failed to validate WRP message: %s", err),
)
fmt.Sprintf("failed to validate WRP message: %s", err))
return
}
}
Expand Down

0 comments on commit f674634

Please sign in to comment.