mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
25ef3da9d5
chore(fmt): run gci on complete project Fix global import formatting in go code by running the `gci` command. This allows us to just use the command directly, instead of fixing the import order manually for the linter, on each PR. Co-authored-by: Elio Bischof <elio@zitadel.com>
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
//import to make sure go.mod does not lose it
|
|
//because dependency is only needed for generated code
|
|
_ "github.com/envoyproxy/protoc-gen-validate/validate"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
func ValidationHandler() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
return validate(ctx, req, info, handler)
|
|
}
|
|
}
|
|
|
|
// validator interface needed for github.com/envoyproxy/protoc-gen-validate
|
|
// (it does not expose an interface itself)
|
|
type validator interface {
|
|
Validate() error
|
|
}
|
|
|
|
func validate(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
validate, ok := req.(validator)
|
|
if !ok {
|
|
return handler(ctx, req)
|
|
}
|
|
err := validate.Validate()
|
|
if err != nil {
|
|
return nil, status.Error(codes.InvalidArgument, err.Error())
|
|
}
|
|
return handler(ctx, req)
|
|
}
|