Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

丁松杰 / Pole

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Pole
  • src
  • Pole.Grpc
  • Validation
  • ValidationInterceptor.cs
Find file
BlameHistoryPermalink
  • 丁松杰's avatar
    init · 1f23761b
    丁松杰 committed 5 years ago
    1f23761b
ValidationInterceptor.cs 1.39 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
using Grpc.Core;
using Grpc.Core.Interceptors;
using Pole.Grpc.Validation;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;

namespace Pole.Grpc.Validation
{
    public class ValidationInterceptor : Interceptor
    {
        private readonly IValidatorProvider _provider;
        private readonly IValidatorErrorMessageHandler _handler;
        public ValidationInterceptor(IValidatorProvider provider, IValidatorErrorMessageHandler handler)
        {
            _provider = provider;
            _handler = handler;
        }

        public override async Task<TResponse> UnaryServerHandler<TRequest, TResponse>(
            TRequest request,
            ServerCallContext context,
            UnaryServerMethod<TRequest, TResponse> continuation)
        {
            if (_provider.TryGetValidator<TRequest>(out var validator))
            {
                var results = await validator.ValidateAsync(request);

                if (!results.IsValid)
                {
                    await _handler.HandleAsync(results.Errors, context);

                    var response= Expression.Lambda<Func<TResponse>>(Expression.Block(typeof(TResponse), Expression.New(typeof(TResponse)))).Compile();
                    return response();
                }
            }

            return await continuation(request, context);
        }
    }
}