I would like to know if there is a pattern for field validation in grpc services.
I know that RpcException has metadata trailers property and that I can add additional information about my errors.
My question is: There is a pattern to be followed? If not, Which of the examples below would be more in line with the expected.
Example 1:
Metadata trailers = new Metadata();
trailers.Add("Name", "is required");
trailers.Add("Age", "is required");
trailers.Add("Age", "must be over 21");
throw new RpcException(new Status(StatusCode.InvalidArgument, "Invalid Argument"), trailers, "One or more errors");
Example 2:
Metadata trailers = new Metadata();
trailers.Add("errors", @"{""Name"":[""Is required""],""Age"":[""Is required"",""must be over 21""]}");
throw new RpcException(new Status(StatusCode.InvalidArgument, "Invalid Argument"), trailers, "One or more errors");
I would like to take this response and convert it to a json using the RFC 7807 specification when needed
I am not familiar with the C# API but I can speak a bit about the gRPC API and maybe it can help you with your C# implementation.
gRPC error model The error model is logically defined by google.rpc.Status, an instance of which is returned to the client when an API error occurs. The following code snippet shows the overall design of the error model, which is returned when something goes wrong:
You should use the details field to pass extra information to the error. For example for the InvalidArgument you should pass the BadRequest object with Field violations
Something like (Golang code, hope it makes some sense for you)
Here is the list of object that is provided by gRPC which you can use as the error details if any of those fits your scenario you can always create your own.
It is a good practice to return in the details field something related to the business. Like a known error code. This way your client would be able to respond to the issue.