22 lines
795 B
C#
22 lines
795 B
C#
|
|
using FluentValidation;
|
||
|
|
using FrontOffice.BFF.User.Protobuf.Protos.User;
|
||
|
|
namespace FrontOffice.BFF.User.Protobuf.Validator;
|
||
|
|
|
||
|
|
public class UpdateUserRequestValidator : AbstractValidator<UpdateUserRequest>
|
||
|
|
{
|
||
|
|
public UpdateUserRequestValidator()
|
||
|
|
{
|
||
|
|
RuleFor(model => model.Id)
|
||
|
|
.NotNull();
|
||
|
|
RuleFor(model => model.Mobile)
|
||
|
|
.NotEmpty();
|
||
|
|
}
|
||
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
||
|
|
{
|
||
|
|
var result = await ValidateAsync(ValidationContext<UpdateUserRequest>.CreateWithOptions((UpdateUserRequest)model, x => x.IncludeProperties(propertyName)));
|
||
|
|
if (result.IsValid)
|
||
|
|
return Array.Empty<string>();
|
||
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
||
|
|
};
|
||
|
|
}
|