Generator Changes at 9/27/2025 11:50:52 PM

This commit is contained in:
MeysamMoghaddam
2025-09-27 23:59:05 +03:30
parent ec6ab8258a
commit 6fd9472f2b
11 changed files with 165 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.112</Version>
<Version>0.0.113</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>

View File

@@ -43,6 +43,12 @@ service UserContract
};
};
rpc GetJwtToken(GetJwtTokenRequest) returns (GetJwtTokenResponse){
option (google.api.http) = {
get: "/GetJwtToken"
};
};
}
message CreateNewUserRequest
{
@@ -123,3 +129,11 @@ message GetAllUserByFilterResponseModel
bool is_mobile_verified = 9;
google.protobuf.Timestamp mobile_verified_at = 10;
}
message GetJwtTokenRequest
{
int64 id = 1;
}
message GetJwtTokenResponse
{
string token = 1;
}

View File

@@ -0,0 +1,19 @@
using FluentValidation;
using CMSMicroservice.Protobuf.Protos.User;
namespace CMSMicroservice.Protobuf.Validator.User;
public class GetJwtTokenRequestValidator : AbstractValidator<GetJwtTokenRequest>
{
public GetJwtTokenRequestValidator()
{
RuleFor(model => model.Id)
.NotNull();
}
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
{
var result = await ValidateAsync(ValidationContext<GetJwtTokenRequest>.CreateWithOptions((GetJwtTokenRequest)model, x => x.IncludeProperties(propertyName)));
if (result.IsValid)
return Array.Empty<string>();
return result.Errors.Select(e => e.ErrorMessage);
};
}