mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
91 lines
2.8 KiB
Go
91 lines
2.8 KiB
Go
// Copyright 2016 Michal Witkowski. All Rights Reserved.
|
|
// See LICENSE for licensing terms.
|
|
|
|
package grpc_validator
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// The validate interface starting with protoc-gen-validate v0.6.0.
|
|
// See https://github.com/envoyproxy/protoc-gen-validate/pull/455.
|
|
type validator interface {
|
|
Validate(all bool) error
|
|
}
|
|
|
|
// The validate interface prior to protoc-gen-validate v0.6.0.
|
|
type validatorLegacy interface {
|
|
Validate() error
|
|
}
|
|
|
|
func validate(req interface{}) error {
|
|
switch v := req.(type) {
|
|
case validatorLegacy:
|
|
if err := v.Validate(); err != nil {
|
|
return status.Error(codes.InvalidArgument, err.Error())
|
|
}
|
|
case validator:
|
|
if err := v.Validate(false); err != nil {
|
|
return status.Error(codes.InvalidArgument, err.Error())
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UnaryServerInterceptor returns a new unary server interceptor that validates incoming messages.
|
|
//
|
|
// Invalid messages will be rejected with `InvalidArgument` before reaching any userspace handlers.
|
|
func UnaryServerInterceptor() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
if err := validate(req); err != nil {
|
|
return nil, err
|
|
}
|
|
return handler(ctx, req)
|
|
}
|
|
}
|
|
|
|
// UnaryClientInterceptor returns a new unary client interceptor that validates outgoing messages.
|
|
//
|
|
// Invalid messages will be rejected with `InvalidArgument` before sending the request to server.
|
|
func UnaryClientInterceptor() grpc.UnaryClientInterceptor {
|
|
return func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
if err := validate(req); err != nil {
|
|
return err
|
|
}
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
}
|
|
}
|
|
|
|
// StreamServerInterceptor returns a new streaming server interceptor that validates incoming messages.
|
|
//
|
|
// The stage at which invalid messages will be rejected with `InvalidArgument` varies based on the
|
|
// type of the RPC. For `ServerStream` (1:m) requests, it will happen before reaching any userspace
|
|
// handlers. For `ClientStream` (n:1) or `BidiStream` (n:m) RPCs, the messages will be rejected on
|
|
// calls to `stream.Recv()`.
|
|
func StreamServerInterceptor() grpc.StreamServerInterceptor {
|
|
return func(srv interface{}, stream grpc.ServerStream, info *grpc.StreamServerInfo, handler grpc.StreamHandler) error {
|
|
wrapper := &recvWrapper{stream}
|
|
return handler(srv, wrapper)
|
|
}
|
|
}
|
|
|
|
type recvWrapper struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (s *recvWrapper) RecvMsg(m interface{}) error {
|
|
if err := s.ServerStream.RecvMsg(m); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate(m); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|