PIbd-21_Raspaev_N.I._FoodOr.../FoodOrders/FoodOrdersBusinessLogic/BusinessLogics/DishLogic.cs

119 lines
4.0 KiB
C#
Raw Normal View History

2023-02-07 13:00:02 +04:00
using FoodOrdersContracts.BindingModels;
using FoodOrdersContracts.BusinessLogicsContracts;
using FoodOrdersContracts.SearchModels;
using FoodOrdersContracts.StoragesContracts;
using FoodOrdersContracts.ViewModels;
using Microsoft.Extensions.Logging;
2023-02-12 10:11:34 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-02-07 13:00:02 +04:00
namespace FoodOrdersBusinessLogic.BusinessLogics
{
public class DishLogic : IDishLogic
{
private readonly ILogger _logger;
2023-02-12 10:11:34 +04:00
private readonly IDishStorage _dishStorage;
public DishLogic(ILogger<DishLogic> logger, IDishStorage dishStorage)
2023-02-07 13:00:02 +04:00
{
_logger = logger;
2023-02-12 10:11:34 +04:00
_dishStorage = dishStorage;
2023-02-07 13:00:02 +04:00
}
2023-02-12 10:11:34 +04:00
public List<DishViewModel>? ReadList(DishSearchModel? model)
2023-02-07 13:00:02 +04:00
{
_logger.LogInformation("ReadList. DishName:{DishName}. Id:{Id}",
model?.DishName, model?.Id);
2023-02-12 10:11:34 +04:00
var list = model == null ? _dishStorage.GetFullList() :
_dishStorage.GetFilteredList(model);
2023-02-07 13:00:02 +04:00
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;
}
2023-02-12 10:11:34 +04:00
public DishViewModel? ReadElement(DishSearchModel model)
2023-02-07 13:00:02 +04:00
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
_logger.LogInformation("ReadElement. DishName:{DishName}. Id:{Id}", model.DishName, model.Id);
2023-02-12 10:11:34 +04:00
var element = _dishStorage.GetElement(model);
2023-02-07 13:00:02 +04:00
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
return null;
}
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
return element;
}
2023-02-12 10:11:34 +04:00
2023-02-07 13:00:02 +04:00
public bool Create(DishBindingModel model)
{
CheckModel(model);
2023-02-12 10:11:34 +04:00
if (_dishStorage.Insert(model) == null)
2023-02-07 13:00:02 +04:00
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
2023-02-12 10:11:34 +04:00
2023-02-07 13:00:02 +04:00
public bool Update(DishBindingModel model)
{
CheckModel(model);
2023-02-12 10:11:34 +04:00
if (_dishStorage.Update(model) == null)
2023-02-07 13:00:02 +04:00
{
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
public bool Delete(DishBindingModel model)
{
CheckModel(model, false);
_logger.LogInformation("Delete. Id:{Id}", model.Id);
2023-02-12 10:11:34 +04:00
if (_dishStorage.Delete(model) == null)
2023-02-07 13:00:02 +04:00
{
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
2023-02-12 10:11:34 +04:00
private void CheckModel(DishBindingModel model, bool withParams = true)
2023-02-07 13:00:02 +04:00
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (string.IsNullOrEmpty(model.DishName))
{
2023-02-12 10:11:34 +04:00
throw new ArgumentNullException("Нет названия компонента", nameof(model.DishName));
2023-02-07 13:00:02 +04:00
}
2023-02-12 10:11:34 +04:00
if (model.Price <= 0)
2023-02-07 13:00:02 +04:00
{
2023-02-12 10:11:34 +04:00
throw new ArgumentNullException("Цена компонента должна быть больше 0", nameof(model.Price));
2023-02-07 13:00:02 +04:00
}
2023-02-12 10:11:34 +04:00
_logger.LogInformation("Dish. DishName:{DishName}. Price:{Price}. Id:{Id}", model.DishName, model.Price, model.Id);
var element = _dishStorage.GetElement(new DishSearchModel
{
DishName = model.DishName
});
2023-02-07 13:00:02 +04:00
if (element != null && element.Id != model.Id)
{
2023-02-12 10:11:34 +04:00
throw new InvalidOperationException("Прдукт с таким названием уже есть");
2023-02-07 13:00:02 +04:00
}
}
}
2023-02-12 10:11:34 +04:00
}