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

113 lines
4.2 KiB
C#
Raw Permalink Normal View History

2024-04-07 17:40:43 +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;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-11 21:16:59 +04:00
namespace SoftwareInstallationBusinessLogic.BusinessLogic
2024-04-07 16:54:02 +04:00
{
public class PackageLogic : IPackageLogic
{
private readonly ILogger _logger;
2024-04-07 17:40:43 +04:00
private readonly IPackageStorage _PacakgeStorage;
public PackageLogic(ILogger<PackageLogic> logger, IPackageStorage PackageStorage)
2024-04-07 16:54:02 +04:00
{
_logger = logger;
2024-04-07 17:40:43 +04:00
_PacakgeStorage = PackageStorage;
2024-04-07 16:54:02 +04:00
}
public List<PackageViewModel>? ReadList(PackageSearchModel? model)
{
2024-04-07 17:40:43 +04:00
_logger.LogInformation("ReadList. SoftwareName:{SoftwareName}.Id:{ Id}", model?.SoftwareName, model?.Id);
var list = model == null ? _PacakgeStorage.GetFullList() : _PacakgeStorage.GetFilteredList(model);
2024-04-07 16:54:02 +04:00
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;
}
public PackageViewModel? ReadElement(PackageSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
2024-04-07 17:40:43 +04:00
_logger.LogInformation("ReadElement. SoftwareName:{SoftwareName}.Id:{ Id}", model.SoftwareName, model.Id);
var element = _PacakgeStorage.GetElement(model);
2024-04-07 16:54:02 +04:00
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
return null;
}
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
return element;
}
public bool Create(PackageBindingModel model)
{
CheckModel(model);
2024-04-07 17:40:43 +04:00
if (_PacakgeStorage.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-04-07 17:40:43 +04:00
if (_PacakgeStorage.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);
_logger.LogInformation("Delete. Id:{Id}", model.Id);
2024-04-07 17:40:43 +04:00
if (_PacakgeStorage.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;
}
2024-04-07 17:40:43 +04:00
if (string.IsNullOrEmpty(model.SoftwareName))
2024-04-07 16:54:02 +04:00
{
2024-04-07 17:40:43 +04:00
throw new ArgumentNullException("Нет названия изделия", nameof(model.SoftwareName));
2024-04-07 16:54:02 +04:00
}
if (model.Price <= 0)
{
throw new ArgumentNullException("Цена изделия должна быть больше 0", nameof(model.Price));
}
2024-04-07 17:40:43 +04:00
_logger.LogInformation("Software. SoftwareName:{SoftwareName}.Price:{Price}.Id: { Id}", model.SoftwareName, model.Price, model.Id);
var element = _PacakgeStorage.GetElement(new PackageSearchModel
2024-04-07 16:54:02 +04:00
{
2024-04-07 17:40:43 +04:00
SoftwareName = model.SoftwareName
2024-04-07 16:54:02 +04:00
});
if (element != null && element.Id != model.Id)
{
throw new InvalidOperationException("Изделие с таким названием уже есть");
}
}
}
}