2024-02-27 12:37:50 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ConfectioneryContracts.BindingModels;
|
|
|
|
|
using ConfectioneryContracts.SearchModels;
|
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
using ConfectioneryContracts.BusinessLogicsContracts;
|
|
|
|
|
using ConfectioneryContracts.StoragesContracts;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
public class PastryLogic : IPastryLogic
|
2024-02-27 12:37:50 +04:00
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
2024-02-27 23:07:55 +04:00
|
|
|
|
private readonly IPastryStorage _pastryStorage;
|
2024-02-27 22:14:35 +04:00
|
|
|
|
|
2024-02-27 23:07:55 +04:00
|
|
|
|
public PastryLogic(ILogger<PastryLogic> logger, IPastryStorage pastryStorage)
|
2024-02-27 12:37:50 +04:00
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
_logger = logger;
|
2024-02-27 23:07:55 +04:00
|
|
|
|
_pastryStorage = pastryStorage;
|
2024-02-27 12:37:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 22:14:35 +04:00
|
|
|
|
public List<PastryViewModel>? ReadList(PastrySearchModel? model)
|
2024-02-27 12:37:50 +04:00
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
_logger.LogInformation("ReadList. PastryName: {PastryName}. Id: {Id}", model?.PastryName, model?.Id);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
var list = model == null ? _pastryStorage.GetFullList() : _pastryStorage.GetFilteredList(model);
|
2024-02-27 22:14:35 +04:00
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
|
|
|
|
|
return list;
|
2024-02-27 12:37:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PastryViewModel? ReadElement(PastrySearchModel model)
|
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement. PastryName: {PastryName}. Id: {Id}", model.PastryName, model.Id);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
var element = _pastryStorage.GetElement(model);
|
2024-02-27 22:14:35 +04:00
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement find. Id: {Id}", element.Id);
|
|
|
|
|
return element;
|
2024-02-27 12:37:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 22:14:35 +04:00
|
|
|
|
public bool Create(PastryBindingModel model)
|
2024-02-27 12:37:50 +04:00
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
CheckModel(model);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
if (_pastryStorage.Insert(model) == null)
|
2024-02-27 22:14:35 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-02-27 12:37:50 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Update(PastryBindingModel model)
|
|
|
|
|
{
|
2024-02-27 22:14:35 +04:00
|
|
|
|
CheckModel(model);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
if (_pastryStorage.Update(model) == null)
|
2024-02-27 22:14:35 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Delete(PastryBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id: {Id}", model.Id);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
if (_pastryStorage.Delete(model) == null)
|
2024-02-27 22:14:35 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckModel(PastryBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(model.PastryName))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Нет названия мороженого", nameof(model.PastryName));
|
|
|
|
|
}
|
|
|
|
|
if (model.Price <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Цена мороженого должна быть больше 0", nameof(model.Price));
|
|
|
|
|
}
|
|
|
|
|
if (model.PastryComponents == null || model.PastryComponents.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Мороженое должно состоять хотя бы из одного компонента");
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Pastry. PastryName: {PastryName}. Price: {Price}. Id: {Id}", model.PastryName, model.Price, model.Id);
|
2024-02-27 23:07:55 +04:00
|
|
|
|
var element = _pastryStorage.GetElement(new PastrySearchModel
|
2024-02-27 22:14:35 +04:00
|
|
|
|
{
|
|
|
|
|
PastryName = model.PastryName
|
|
|
|
|
});
|
|
|
|
|
if (element != null && element.Id != model.Id)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Мороженое с таким названием уже есть");
|
|
|
|
|
}
|
2024-02-27 12:37:50 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|