Generator Changes at 11/12/2025 10:14:04 PM +03:30
This commit is contained in:
@@ -49,6 +49,12 @@ service UserContract
|
||||
|
||||
};
|
||||
};
|
||||
rpc AdminGetJwtToken(AdminGetJwtTokenRequest) returns (AdminGetJwtTokenResponse){
|
||||
option (google.api.http) = {
|
||||
get: "/AdminGetJwtToken"
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
message CreateNewUserRequest
|
||||
{
|
||||
@@ -159,3 +165,12 @@ message GetJwtTokenResponse
|
||||
{
|
||||
string token = 1;
|
||||
}
|
||||
message AdminGetJwtTokenRequest
|
||||
{
|
||||
string username = 1;
|
||||
string password = 2;
|
||||
}
|
||||
message AdminGetJwtTokenResponse
|
||||
{
|
||||
string token = 1;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
using FluentValidation;
|
||||
using CMSMicroservice.Protobuf.Protos.User;
|
||||
namespace CMSMicroservice.Protobuf.Validator.User;
|
||||
|
||||
public class AdminGetJwtTokenRequestValidator : AbstractValidator<AdminGetJwtTokenRequest>
|
||||
{
|
||||
public AdminGetJwtTokenRequestValidator()
|
||||
{
|
||||
RuleFor(model => model.Username)
|
||||
.NotEmpty();
|
||||
RuleFor(model => model.Password)
|
||||
.NotEmpty();
|
||||
}
|
||||
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
||||
{
|
||||
var result = await ValidateAsync(ValidationContext<AdminGetJwtTokenRequest>.CreateWithOptions((AdminGetJwtTokenRequest)model, x => x.IncludeProperties(propertyName)));
|
||||
if (result.IsValid)
|
||||
return Array.Empty<string>();
|
||||
return result.Errors.Select(e => e.ErrorMessage);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user