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

120 lines
4.3 KiB
C#
Raw Normal View History

2024-04-07 16:54:02 +04:00
using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.BusinessLogicsContracts;
using SoftwareInstallationContracts.SearchModels;
using SoftwareInstallationContracts.StoragesContracts;
using SoftwareInstallationContracts.ViewModels;
using Microsoft.Extensions.Logging;
2024-05-12 14:38:32 +04:00
namespace SoftwareInstallationBusinessLogic.BusinessLogics
2024-04-07 16:54:02 +04:00
{
public class PackageLogic : IPackageLogic
{
private readonly ILogger _logger;
2024-05-12 14:38:32 +04:00
private readonly IPackageStorage _iceCreamStorage;
public PackageLogic(ILogger<PackageLogic> logger, IPackageStorage iceCreamStorage)
2024-04-07 16:54:02 +04:00
{
_logger = logger;
2024-05-12 14:38:32 +04:00
_iceCreamStorage = iceCreamStorage;
2024-04-07 16:54:02 +04:00
}
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
public List<PackageViewModel>? ReadList(PackageSearchModel? model)
{
2024-05-12 14:38:32 +04:00
_logger.LogInformation("ReadList. PackageName: {PackageName}. Id: {Id}", model?.PackageName, model?.Id);
var list = model == null ? _iceCreamStorage.GetFullList() : _iceCreamStorage.GetFilteredList(model);
2024-04-07 16:54:02 +04:00
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
2024-05-12 14:38:32 +04:00
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
2024-04-07 16:54:02 +04:00
return list;
}
public PackageViewModel? ReadElement(PackageSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
2024-05-12 14:38:32 +04:00
_logger.LogInformation("ReadElement. PackageName: {PackageName}. Id: {Id}", model.PackageName, model.Id);
var element = _iceCreamStorage.GetElement(model);
2024-04-07 16:54:02 +04:00
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
return null;
}
2024-05-12 14:38:32 +04:00
_logger.LogInformation("ReadElement find. Id: {Id}", element.Id);
2024-04-07 16:54:02 +04:00
return element;
}
public bool Create(PackageBindingModel model)
{
CheckModel(model);
2024-05-12 14:38:32 +04:00
if (_iceCreamStorage.Insert(model) == null)
2024-04-07 16:54:02 +04:00
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
public bool Update(PackageBindingModel model)
{
CheckModel(model);
2024-05-12 14:38:32 +04:00
if (_iceCreamStorage.Update(model) == null)
2024-04-07 16:54:02 +04:00
{
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
public bool Delete(PackageBindingModel model)
{
CheckModel(model, false);
2024-05-12 14:38:32 +04:00
_logger.LogInformation("Delete. Id: {Id}", model.Id);
if (_iceCreamStorage.Delete(model) == null)
2024-04-07 16:54:02 +04:00
{
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
private void CheckModel(PackageBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (string.IsNullOrEmpty(model.PackageName))
{
2024-05-12 14:38:32 +04:00
throw new ArgumentNullException("Нет названия мороженого", nameof(model.PackageName));
2024-04-07 16:54:02 +04:00
}
if (model.Price <= 0)
{
2024-05-12 14:38:32 +04:00
throw new ArgumentNullException("Цена мороженого должна быть больше 0", nameof(model.Price));
}
if (model.PackageComponents == null || model.PackageComponents.Count == 0)
{
throw new ArgumentNullException("Мороженое должно состоять хотя бы из одного компонента");
2024-04-07 16:54:02 +04:00
}
2024-05-12 14:38:32 +04:00
_logger.LogInformation("Package. PackageName: {PackageName}. Price: {Price}. Id: {Id}", model.PackageName, model.Price, model.Id);
var element = _iceCreamStorage.GetElement(new PackageSearchModel
2024-04-07 16:54:02 +04:00
{
PackageName = model.PackageName
});
if (element != null && element.Id != model.Id)
{
2024-05-12 14:38:32 +04:00
throw new InvalidOperationException("Мороженое с таким названием уже есть");
2024-04-07 16:54:02 +04:00
}
}
}
}