feat: Из dal перенесены все модели в Domain. Из dal переименованы service в repository, вынесены в Core.
This commit is contained in:
183
PARR.DAL/Repositories/TemplateRepository.cs
Normal file
183
PARR.DAL/Repositories/TemplateRepository.cs
Normal file
@@ -0,0 +1,183 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Npgsql;
|
||||
using PARR.Core.Repositories.Interfaces;
|
||||
using PARR.DAL.Context;
|
||||
using PARR.DAL.Repositories.Base;
|
||||
using PARR.Domain.Entities;
|
||||
using PARR.Domain.Entities.Base.History;
|
||||
using PARR.Domain.Enums;
|
||||
|
||||
namespace PARR.DAL.Repositories
|
||||
{
|
||||
internal class TemplateRepository : BaseRepository<Template>, ITemplateRepository
|
||||
{
|
||||
public TemplateRepository(DataContext dataContext, ILogger<TemplateRepository> logger) : base(logger, dataContext) { }
|
||||
|
||||
public async Task<Template?> GetTemplateByNameAsync(string name)
|
||||
{
|
||||
logger.LogDebug("Поиск шаблона по имени: {TemplateName}", name);
|
||||
|
||||
var template = await GetWithIncludes()
|
||||
.Include(t => t.RobotConfigurations)
|
||||
.FirstOrDefaultAsync(t => t.Name == name);
|
||||
|
||||
if (template != null)
|
||||
{
|
||||
logger.LogDebug("Шаблон найден: {TemplateId}, имя: {TemplateName}", template.Id, template.Name);
|
||||
}
|
||||
else
|
||||
{
|
||||
logger.LogDebug("Шаблон с именем {TemplateName} не найден", name);
|
||||
}
|
||||
|
||||
return template;
|
||||
}
|
||||
|
||||
public IQueryable<Template> GetWithIncludes()
|
||||
{
|
||||
logger.LogDebug("Получаю шаблоны с include связями");
|
||||
|
||||
return Get()
|
||||
.Include(h => h.Unit)
|
||||
.ThenInclude(t => t!.UnitValues)
|
||||
.ThenInclude(t => t.Value)
|
||||
.Include(h => h.Unit)
|
||||
.ThenInclude(t => t!.UnitValues)
|
||||
.ThenInclude(t => t.Field)
|
||||
.Include(a => a.Job)
|
||||
.ThenInclude(t => t!.Tnk)
|
||||
.ThenInclude(s => s!.Subprocess)
|
||||
.ThenInclude(p => p!.Process)
|
||||
.Include(t => t.Job)
|
||||
.ThenInclude(t => t!.Group)
|
||||
.ThenInclude(t => t!.GroupType)
|
||||
.Include(t => t.Job)
|
||||
.ThenInclude(t => t!.Group)
|
||||
.ThenInclude(t => t.DistributionConfig)
|
||||
.ThenInclude(t => t.DistributionPeriod);
|
||||
}
|
||||
|
||||
public override Task<bool> CreateAsync(Template obj)
|
||||
{
|
||||
logger.LogDebug("Создание шаблона: {TemplateName}", obj.Name);
|
||||
|
||||
// добавление роботов для шаблона
|
||||
obj.RobotConfigurations = new List<RobotConfiguration>
|
||||
{
|
||||
// робот по управлению шаблоном
|
||||
new RobotConfiguration
|
||||
{
|
||||
Id = Guid.NewGuid(),
|
||||
DateCreated = DateTimeOffset.UtcNow,
|
||||
TemplateId = obj.Id,
|
||||
RobotCode = (int)RobotsEnum.TemplateOrder,
|
||||
TaskStatusCode = (int)TaskStatusEnum.Creating,
|
||||
RobotStatusCode = (int)RobotStatusEnum.Wait,
|
||||
AttemptsNumber = 0,
|
||||
LastRobotStatusUpdated = null
|
||||
},
|
||||
// робот по управлениею расписанием
|
||||
new RobotConfiguration
|
||||
{
|
||||
Id = Guid.NewGuid(),
|
||||
DateCreated = DateTimeOffset.UtcNow,
|
||||
TemplateId = obj.Id,
|
||||
RobotCode = (int)RobotsEnum.ScheduleOrder,
|
||||
TaskStatusCode = (int)TaskStatusEnum.Creating,
|
||||
RobotStatusCode = (int)RobotStatusEnum.Wait,
|
||||
AttemptsNumber = 0,
|
||||
LastRobotStatusUpdated = null
|
||||
}
|
||||
};
|
||||
|
||||
logger.LogDebug("Добавлены роботы для шаблона {TemplateName}", obj.Name);
|
||||
|
||||
return base.CreateAsync(obj);
|
||||
}
|
||||
|
||||
|
||||
public async Task<Guid?> ReserveUnusedTemplateAsync(Guid newUnitId, HistoryInitiator initiator)
|
||||
{
|
||||
logger.LogDebug("Резервирую неиспользуемый шаблон с проверкой конфигураций роботов для UnitId: {UnitId}", newUnitId);
|
||||
|
||||
var sql = @"
|
||||
UPDATE ""Templates""
|
||||
SET ""StatusTypeId"" = @NewStatus,
|
||||
""DateModified"" = @DateModified,
|
||||
""InitiatorIp"" = @InitiatorIp,
|
||||
""InitiatorParrComponentId"" = @InitiatorComponent,
|
||||
""InitiatorComment"" = @InitiatorComment
|
||||
WHERE ""Id"" = (
|
||||
SELECT t.""Id""
|
||||
FROM ""Templates"" t
|
||||
WHERE t.""StatusTypeId"" = @OldStatus
|
||||
AND t.""UnitId"" != @NewUnitId
|
||||
AND EXISTS (
|
||||
SELECT 1
|
||||
FROM ""RobotConfigurations"" rc
|
||||
WHERE rc.""TemplateId"" = t.""Id""
|
||||
AND rc.""RobotCode"" = @RobotCode1
|
||||
AND rc.""TaskStatusCode"" = @TaskStatus
|
||||
AND rc.""RobotStatusCode"" = @RobotStatus
|
||||
)
|
||||
AND EXISTS (
|
||||
SELECT 1
|
||||
FROM ""RobotConfigurations"" rc
|
||||
WHERE rc.""TemplateId"" = t.""Id""
|
||||
AND rc.""RobotCode"" = @RobotCode2
|
||||
AND rc.""TaskStatusCode"" = @TaskStatus
|
||||
AND rc.""RobotStatusCode"" = @RobotStatus
|
||||
)
|
||||
ORDER BY t.""DateCreated"" ASC
|
||||
LIMIT 1
|
||||
)
|
||||
RETURNING ""Id"";";
|
||||
|
||||
var parameters = new[]
|
||||
{
|
||||
new NpgsqlParameter("@NewStatus", (int)TemplateStatusTypeEnum.Updating),
|
||||
new NpgsqlParameter("@DateModified", DateTimeOffset.UtcNow),
|
||||
new NpgsqlParameter("@InitiatorIp", initiator.InitiatorIp ?? (object)DBNull.Value),
|
||||
new NpgsqlParameter("@InitiatorComponent",
|
||||
initiator.InitiatorParrComponentId.HasValue
|
||||
? (object)(int)initiator.InitiatorParrComponentId.Value
|
||||
: DBNull.Value),
|
||||
new NpgsqlParameter("@InitiatorComment", initiator.InitiatorComment ?? (object)DBNull.Value),
|
||||
new NpgsqlParameter("@OldStatus", (int)TemplateStatusTypeEnum.Unused),
|
||||
new NpgsqlParameter("@NewUnitId", newUnitId),
|
||||
// Параметры для проверки конфигураций роботов
|
||||
new NpgsqlParameter("@RobotCode1", (int)RobotsEnum.TemplateOrder),
|
||||
new NpgsqlParameter("@RobotCode2", (int)RobotsEnum.ScheduleOrder),
|
||||
new NpgsqlParameter("@TaskStatus", (int)TaskStatusEnum.Ok),
|
||||
new NpgsqlParameter("@RobotStatus", (int)RobotStatusEnum.Complete)
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
var result = await EntityContext.Database
|
||||
.SqlQueryRaw<Guid>(sql, parameters)
|
||||
.ToListAsync();
|
||||
|
||||
var reservedTemplateId = result.FirstOrDefault();
|
||||
|
||||
if (reservedTemplateId != default(Guid))
|
||||
{
|
||||
logger.LogInformation("Успешно зарезервирован шаблон с ID: {TemplateId} для UnitId: {UnitId}",
|
||||
reservedTemplateId, newUnitId);
|
||||
}
|
||||
else
|
||||
{
|
||||
logger.LogDebug("Не удалось зарезервировать шаблон для UnitId: {UnitId} (не найдено подходящих конфигураций роботов)", newUnitId);
|
||||
}
|
||||
|
||||
return reservedTemplateId;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
logger.LogError(ex, "Ошибка при резервировании шаблона для UnitId: {UnitId}", newUnitId);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user