ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationBusinessLogic/BusinessLogics/ComponentLogic.cs

120 lines
4.3 KiB
C#
Raw Normal View History

2024-05-12 14:45:39 +04:00
using Microsoft.Extensions.Logging;
using SoftwareInstallationContracts.BindingModels;
2024-04-07 16:54:02 +04:00
using SoftwareInstallationContracts.BusinessLogicsContracts;
using SoftwareInstallationContracts.SearchModels;
using SoftwareInstallationContracts.StoragesContracts;
using SoftwareInstallationContracts.ViewModels;
2024-05-12 14:45:39 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-07 16:54:02 +04:00
2024-05-12 14:45:39 +04:00
namespace SoftwareInstallationBusinessLogic.BusinessLogics
2024-04-07 16:54:02 +04:00
{
public class ComponentLogic : IComponentLogic
{
private readonly ILogger _logger;
private readonly IComponentStorage _componentStorage;
2024-05-12 14:45:39 +04:00
public ComponentLogic(ILogger<ComponentLogic> logger, IComponentStorage componentStorage)
2024-04-07 16:54:02 +04:00
{
_logger = logger;
_componentStorage = componentStorage;
}
2024-05-12 14:45:39 +04:00
2024-04-07 16:54:02 +04:00
public List<ComponentViewModel>? ReadList(ComponentSearchModel? model)
{
2024-05-12 14:45:39 +04:00
_logger.LogInformation("ReadList. ComponentName:{ComponentName}.Id:{ Id}", model?.ComponentName, model?.Id);
2024-04-07 16:54:02 +04:00
var list = model == null ? _componentStorage.GetFullList() : _componentStorage.GetFilteredList(model);
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;
}
public ComponentViewModel? ReadElement(ComponentSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
2024-05-12 14:45:39 +04:00
_logger.LogInformation("ReadElement. ComponentName:{ComponentName}.Id:{ Id}", model.ComponentName, model.Id);
2024-04-07 16:54:02 +04:00
var element = _componentStorage.GetElement(model);
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
return null;
}
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
return element;
}
public bool Create(ComponentBindingModel model)
{
CheckModel(model);
if (_componentStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
public bool Update(ComponentBindingModel model)
{
CheckModel(model);
if (_componentStorage.Update(model) == null)
{
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
public bool Delete(ComponentBindingModel model)
{
CheckModel(model, false);
_logger.LogInformation("Delete. Id:{Id}", model.Id);
if (_componentStorage.Delete(model) == null)
{
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
private void CheckModel(ComponentBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (string.IsNullOrEmpty(model.ComponentName))
{
2024-05-12 14:45:39 +04:00
throw new ArgumentNullException("Нет названия ингредиента", nameof(model.ComponentName));
2024-04-07 16:54:02 +04:00
}
if (model.Cost <= 0)
{
2024-05-12 14:45:39 +04:00
throw new ArgumentNullException("Цена ингредиента должна быть больше 0", nameof(model.Cost));
2024-04-07 16:54:02 +04:00
}
2024-05-12 14:45:39 +04:00
_logger.LogInformation("Component. ComponentName:{ComponentName}.Cost:{ Cost}.Id: { Id}", model.ComponentName, model.Cost, model.Id);
2024-04-07 16:54:02 +04:00
var element = _componentStorage.GetElement(new ComponentSearchModel
{
2024-05-12 14:45:39 +04:00
ComponentName = model.ComponentName
2024-04-07 16:54:02 +04:00
});
if (element != null && element.Id != model.Id)
{
2024-05-12 14:45:39 +04:00
throw new InvalidOperationException("Ингредиент с таким названием уже есть");
2024-04-07 16:54:02 +04:00
}
}
}
2024-05-12 14:45:39 +04:00
}