using SecuritySystemContracts.BindingModels; using SecuritySystemContracts.BusinessLogicsContracts; using SecuritySystemContracts.SearchModels; using SecuritySystemContracts.StoragesContracts; using SecuritySystemContracts.ViewModels; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SecuritySystemBusinessLogic.BusinessLogic { public class SecureLogic : ISecureLogic { private readonly ILogger _logger; private readonly ISecureStorage _secureStorage; //конструктор public SecureLogic(ILogger logger, ISecureStorage secureStorage) { _logger = logger; _secureStorage = secureStorage; } //вывод отфильтрованного списка public List? ReadList(SecureSearchModel? model) { _logger.LogInformation("ReadList. SecureName:{SecureName}. Id:{Id}", model?.SecureName, model?.Id); //list хранит весь список в случае, если model пришло со значением null на вход метода var list = model == null ? _secureStorage.GetFullList() : _secureStorage.GetFilteredList(model); if (list == null) { _logger.LogWarning("ReadList return null list"); return null; } _logger.LogInformation("ReadList. Count:{Count}", list.Count); return list; } //вывод конкретного изделия public SecureViewModel? ReadElement(SecureSearchModel model) { if (model == null) { throw new ArgumentNullException(nameof(model)); } _logger.LogInformation("ReadElement. SecureName:{SecureName}. Id:{Id}", model.SecureName, model.Id); var element = _secureStorage.GetElement(model); if (element == null) { _logger.LogWarning("ReadElement element not found"); return null; } _logger.LogInformation("ReadElement find. Id:{Id}", model.Id); return element; } //Создание изделия public bool Create(SecureBindingModel model) { CheckModel(model); if (_secureStorage.Insert(model) == null) { _logger.LogWarning("Create operation failed"); return false; } return true; } //обновление изделия public bool Update(SecureBindingModel model) { CheckModel(model); if (_secureStorage.Update(model) == null) { _logger.LogWarning("Update operation failed"); return false; } return true; } //удаление изделия public bool Delete(SecureBindingModel model) { CheckModel(model, false); _logger.LogInformation("Delete. Id:{Id}", model.Id); if (_secureStorage.Delete(model) == null) { _logger.LogWarning("Delete operation failed"); return false; } return true; } //проверка входного аргумента для методов Insert, Update и Delete private void CheckModel(SecureBindingModel model, bool withParams = true) { if (model == null) { throw new ArgumentNullException(nameof(model)); } //так как при удалении параметром withParams передаём false if (!withParams) { return; } //проверка на наличие названия изделия if (string.IsNullOrEmpty(model.SecureName)) { throw new ArgumentNullException("Нет названия изделия", nameof(model.SecureName)); } //проверка на наличие нормальной цены у изделия if (model.Price <= 0) { throw new ArgumentNullException("Цена изделия должна быть больше 0", nameof(model.Price)); } _logger.LogInformation("Secure. SecureName:{SecureName}. Price:{Price}. Id:{Id}", model.SecureName, model.Price, model.Id); //проверка на наличие такого же изделия в списке var element = _secureStorage.GetElement(new SecureSearchModel { SecureName = model.SecureName, }); //если элемент найден и его Id не совпадает с Id объекта, переданного на вход if (element != null && element.Id != model.Id) { throw new InvalidOperationException("Изделие с таким названием уже есть"); } } } }