Прикрутил правильно bll
This commit is contained in:
@@ -24,7 +24,7 @@ namespace PARR.API.Validators
|
|||||||
.WithMessage("У данного приложения нет связанных работ");
|
.WithMessage("У данного приложения нет связанных работ");
|
||||||
|
|
||||||
//TODO: возможно сделать проверку, по данному выражению есть ли ЭК
|
//TODO: возможно сделать проверку, по данному выражению есть ли ЭК
|
||||||
RuleFor(t => t.Ek).NotEmpty().WithMessage("ЭК, принимает регулярное выражение. Например: *, ВРТ-*-ДВС");
|
RuleFor(t => t.Ek).NotEmpty().WithMessage("Недопустимое значение ЭК. Возможные значения: *, ВРТ-*-ДВС");
|
||||||
|
|
||||||
RuleFor(t => t.Action)
|
RuleFor(t => t.Action)
|
||||||
.Must(t => t.ToLower() == GenerateTemplateActionsEnum.create.ToString() || t.ToLower() == GenerateTemplateActionsEnum.deactivate.ToString())
|
.Must(t => t.ToLower() == GenerateTemplateActionsEnum.create.ToString() || t.ToLower() == GenerateTemplateActionsEnum.deactivate.ToString())
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace PARR.GeneratorTemplates
|
|||||||
|
|
||||||
//string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"create\",\"Ek\":\"вРТ-*RZD\"}";
|
//string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"create\",\"Ek\":\"вРТ-*RZD\"}";
|
||||||
string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"create\",\"Ek\":\"*ДВС\"}";
|
string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"create\",\"Ek\":\"*ДВС\"}";
|
||||||
//string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"deactivate\",\"Ek\":\"вРТ-*RZD\"}";
|
//string msg = "{\"WorkId\":\"91219bec-e5f7-4a1a-b4c9-c135035d2498\",\"ApplicationId\":\"13044a1f-fa0c-476f-b501-2b8d06bac9f8\",\"Action\":\"deactivate\",\"Ek\":\"*\"}";
|
||||||
await GenerateTemplates(msg);
|
await GenerateTemplates(msg);
|
||||||
|
|
||||||
// // проверить как ту дела с асинком
|
// // проверить как ту дела с асинком
|
||||||
@@ -72,7 +72,7 @@ namespace PARR.GeneratorTemplates
|
|||||||
|
|
||||||
private async Task GenerateTemplates(string msg)
|
private async Task GenerateTemplates(string msg)
|
||||||
{
|
{
|
||||||
logger.LogDebug($"Получили запрос: {msg}");
|
logger.LogInformation($"Получили запрос: {msg}");
|
||||||
|
|
||||||
var query = transformService.GetModelFromJson<GeneratorTemplateMq>(msg);
|
var query = transformService.GetModelFromJson<GeneratorTemplateMq>(msg);
|
||||||
if (query == null)
|
if (query == null)
|
||||||
|
|||||||
@@ -3,32 +3,60 @@ using PARR.GeneratorTemplatesWorker;
|
|||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
||||||
|
|
||||||
IHost host = Host.CreateDefaultBuilder(args)
|
var builder = Host.CreateApplicationBuilder();
|
||||||
.ConfigureServices((hostContext, services) =>
|
|
||||||
{
|
|
||||||
services.InstallGeneratorTemplateServices(hostContext.Configuration);
|
|
||||||
//hostContext.Configuration.AddGeneratorTemplateConfigurations(services);
|
|
||||||
//services.AddGeneratorTemplateSettings(hostContext.Configuration);
|
|
||||||
|
|
||||||
//services.AddHostedService<Worker>();
|
builder.Services.AddLogging(config =>
|
||||||
})
|
{
|
||||||
//.ConfigureAppConfiguration((hostContext, configBuilder) =>
|
config.ClearProviders();
|
||||||
//{
|
var logger = new LoggerConfiguration()
|
||||||
//TODO: !!! !!! !!! не смог прикрутить AddGeneratorTemplateConfigurations, не могу прокинуть туда сервисы
|
|
||||||
// configBuilder.AddGeneratorTemplateConfigurations(hostContext.Services);
|
|
||||||
//})
|
|
||||||
.ConfigureServices((hostContext, services) =>
|
|
||||||
{
|
|
||||||
services.AddGeneratorTemplateSettings(hostContext.Configuration);
|
|
||||||
|
|
||||||
services.AddHostedService<Worker>();
|
|
||||||
})
|
|
||||||
.UseSerilog((hostContext, services, config) =>
|
|
||||||
{
|
|
||||||
config
|
|
||||||
.WriteTo.Console()
|
.WriteTo.Console()
|
||||||
.ReadFrom.Configuration(hostContext.Configuration);
|
.ReadFrom.Configuration(builder.Configuration)
|
||||||
})
|
.CreateLogger();
|
||||||
.Build();
|
config.AddSerilog(logger);
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.Services.InstallGeneratorTemplateServices(builder.Configuration);
|
||||||
|
builder.Configuration.AddGeneratorTemplateConfigurations(builder.Services);
|
||||||
|
builder.Services.AddGeneratorTemplateSettings(builder.Configuration);
|
||||||
|
|
||||||
|
builder.Services.AddHostedService<Worker>();
|
||||||
|
|
||||||
|
var host = builder.Build();
|
||||||
host.Run();
|
host.Run();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//IHost host = Host.CreateDefaultBuilder(args)
|
||||||
|
// .ConfigureServices((hostContext, services) =>
|
||||||
|
// {
|
||||||
|
// services.InstallGeneratorTemplateServices(hostContext.Configuration);
|
||||||
|
// //hostContext.Configuration.AddGeneratorTemplateConfigurations(services);
|
||||||
|
// //services.AddGeneratorTemplateSettings(hostContext.Configuration);
|
||||||
|
|
||||||
|
// //services.AddHostedService<Worker>();
|
||||||
|
// })
|
||||||
|
// .ConfigureAppConfiguration((hostContext, configBuilder) =>
|
||||||
|
// {
|
||||||
|
// //TODO: !!!!!!!!!не смог прикрутить AddGeneratorTemplateConfigurations, не могу прокинуть туда сервисы
|
||||||
|
// configBuilder.AddGeneratorTemplateConfigurations(hostContext.Services);
|
||||||
|
// })
|
||||||
|
// .ConfigureServices((hostContext, services) =>
|
||||||
|
// {
|
||||||
|
// services.AddGeneratorTemplateSettings(hostContext.Configuration);
|
||||||
|
|
||||||
|
// services.AddHostedService<Worker>();
|
||||||
|
// })
|
||||||
|
// .UseSerilog((hostContext, services, config) =>
|
||||||
|
// {
|
||||||
|
// config
|
||||||
|
// .WriteTo.Console()
|
||||||
|
// .ReadFrom.Configuration(hostContext.Configuration);
|
||||||
|
// })
|
||||||
|
// .Build();
|
||||||
|
|
||||||
|
//host.Run();
|
||||||
|
|||||||
Reference in New Issue
Block a user