2023-04-09 13:00:51 +04:00
|
|
|
|
using CanteenContracts.BindingModels;
|
|
|
|
|
using CanteenContracts.BusinessLogicsContracts;
|
|
|
|
|
using CanteenContracts.SearchModel;
|
|
|
|
|
using CanteenContracts.SearchModels;
|
|
|
|
|
using CanteenContracts.StoragesContracts;
|
|
|
|
|
using CanteenContracts.View;
|
2023-05-19 03:39:58 +04:00
|
|
|
|
using CanteenDataModels.Models;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class OrderLogic : IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
|
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderStorage = orderStorage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Create(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
|
|
|
|
|
if (_orderStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Delete(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Delete. Id: {Id}", model.Id);
|
|
|
|
|
if (_orderStorage.Delete(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OrderViewModel? ReadElement(OrderSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadElement. Id: {Id}", model.Id);
|
|
|
|
|
|
|
|
|
|
var element = _orderStorage.GetElement(model);
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadElement find. Id: {Id}", element.Id);
|
|
|
|
|
return element;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("ReadList. Id: {Id}", model?.Id);
|
|
|
|
|
|
|
|
|
|
var list = model == null ? _orderStorage.GetFullList() : _orderStorage.GetFilteredList(model);
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Update(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
|
|
|
|
|
if (_orderStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
public bool UpdateCooks(OrderBindingModel order, CookBindingModel cook)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
var _order = _orderStorage.GetElement(new OrderSearchModel { Id = order.Id });
|
|
|
|
|
_order.OrderCooks[cook.Id] = cook as ICookModel;
|
|
|
|
|
if (_orderStorage.Update(new()
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
Id = _order.Id,
|
|
|
|
|
Description = _order.Description,
|
|
|
|
|
VisitorId = _order.VisitorId,
|
2023-06-21 14:52:08 +04:00
|
|
|
|
OrderCooks = _order.OrderCooks,
|
|
|
|
|
OrderTablewares = _order.OrderTablewares
|
2023-04-09 13:00:51 +04:00
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
}) == null)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
return true;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
2023-05-20 00:18:48 +04:00
|
|
|
|
|
|
|
|
|
public bool UpdateTablewares(OrderBindingModel order, TablewareBindingModel tableware, int count)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
var _order = _orderStorage.GetElement(new OrderSearchModel { Id = order.Id });
|
|
|
|
|
if (count == -1)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
if (_order.OrderTablewares.ContainsKey(tableware.Id))
|
|
|
|
|
{
|
|
|
|
|
_order.OrderTablewares.Remove(tableware.Id);
|
|
|
|
|
}
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
2023-05-20 00:18:48 +04:00
|
|
|
|
else if (count > 0)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
_order.OrderTablewares[tableware.Id] = (tableware, count);
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
2023-05-20 00:18:48 +04:00
|
|
|
|
if (_orderStorage.Update(new()
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
Id = _order.Id,
|
|
|
|
|
Description = _order.Description,
|
|
|
|
|
VisitorId = _order.VisitorId,
|
2023-06-21 14:52:08 +04:00
|
|
|
|
OrderTablewares = _order.OrderTablewares,
|
|
|
|
|
OrderCooks = _order.OrderCooks
|
2023-04-09 13:00:51 +04:00
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
}) == null)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
return true;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
2023-05-20 00:18:48 +04:00
|
|
|
|
|
|
|
|
|
private void CheckModel(OrderBindingModel model, bool withParams = true)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
if (string.IsNullOrEmpty(model.Description))
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
throw new ArgumentNullException("Нет описание заказа", nameof(model.Description));
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (model.VisitorId <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("id посетителя должен быть больше 0", nameof(model.VisitorId));
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 00:18:48 +04:00
|
|
|
|
_logger.LogInformation("Order. Description: {Description}. VisitorId: {VisitorId}. Id: {Id}", model.Description, model.VisitorId, model.Id);
|
|
|
|
|
|
|
|
|
|
var element = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
|
|
|
|
|
if (element != null && element.Id != model.Id)
|
2023-04-09 13:00:51 +04:00
|
|
|
|
{
|
2023-05-20 00:18:48 +04:00
|
|
|
|
throw new InvalidOperationException("Заказ с таким id уже есть");
|
2023-04-09 13:00:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|