2024-03-28 21:32:49 +04:00
|
|
|
|
using PizzeriaDataModels.Enums;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
using PizzeriaContracts.BindingModels;
|
|
|
|
|
using PizzeriaContracts.BusinessLogicsContracts;
|
|
|
|
|
using PizzeriaContracts.SearchModels;
|
|
|
|
|
using PizzeriaContracts.StoragesContracts;
|
|
|
|
|
using PizzeriaContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace PizzeriaBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class OrderLogic : IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
static readonly object _locker = new object();
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage)
|
2024-02-17 18:51:42 +04:00
|
|
|
|
private readonly IShopStorage _shopStorage;
|
|
|
|
|
|
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, IShopStorage shopStorage)
|
2024-02-01 10:43:41 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderStorage = orderStorage;
|
2024-02-17 18:51:42 +04:00
|
|
|
|
_shopStorage = shopStorage;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
2024-03-28 21:32:49 +04:00
|
|
|
|
|
|
|
|
|
public OrderViewModel? ReadElement(OrderSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement. ClientId:{ClientId}.Status:{Status}.ImplementerId:{ImplementerId}.DateFrom:{DateFrom}.DateTo:{DateTo}OrderId:{Id}",
|
|
|
|
|
model.ClientId, model.Status, model.ImplementerId, model.DateFrom, model.DateTo, 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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
|
|
|
|
{
|
2024-03-28 21:32:49 +04:00
|
|
|
|
_logger.LogInformation("ReadList. ClientId:{ClientId}.Status:{Status}.ImplementerId:{ImplementerId}.DateFrom:{DateFrom}.DateTo:{DateTo}OrderId:{Id}",
|
|
|
|
|
model?.ClientId, model?.Status, model?.ImplementerId, model?.DateFrom, model?.DateTo, model?.Id);
|
2024-02-01 10:43:41 +04:00
|
|
|
|
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;
|
|
|
|
|
}
|
2024-03-28 21:32:49 +04:00
|
|
|
|
|
2024-02-01 10:43:41 +04:00
|
|
|
|
public bool CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (model.Status != OrderStatus.Неизвестен)
|
|
|
|
|
return false;
|
|
|
|
|
model.Status = OrderStatus.Принят;
|
|
|
|
|
if (_orderStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
|
|
|
|
{
|
2024-03-28 21:32:49 +04:00
|
|
|
|
lock (_locker)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Выполняется);
|
|
|
|
|
}
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Готов);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2024-02-17 18:51:42 +04:00
|
|
|
|
var order = _orderStorage.GetElement(new OrderSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id,
|
|
|
|
|
});
|
|
|
|
|
if (order == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(order));
|
|
|
|
|
}
|
|
|
|
|
if (!_shopStorage.RestockingShops(new SupplyBindingModel
|
|
|
|
|
{
|
|
|
|
|
PizzaId = order.PizzaId,
|
|
|
|
|
Count = order.Count
|
|
|
|
|
}))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Недостаточно места");
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-01 10:43:41 +04:00
|
|
|
|
return ChangeStatus(model, OrderStatus.Выдан);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CheckModel(OrderBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (model.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Колличество пиццы в заказе не может быть меньше 1", nameof(model.Count));
|
|
|
|
|
}
|
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Стоимость заказа на может быть меньше 1", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
if (model.DateImplement.HasValue && model.DateImplement < model.DateCreate)
|
|
|
|
|
{
|
|
|
|
|
throw new ArithmeticException($"Дата выдачи заказа {model.DateImplement} не может быть раньше даты его создания {model.DateCreate}");
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Pizza. PizzaId:{PizzaId}.Count:{Count}.Sum:{Sum}Id:{Id}",
|
|
|
|
|
model.PizzaId, model.Count, model.Sum, model.Id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool ChangeStatus(OrderBindingModel model, OrderStatus requiredStatus)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
var element = _orderStorage.GetElement(new OrderSearchModel()
|
|
|
|
|
{
|
|
|
|
|
Id = model.Id
|
|
|
|
|
});
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
2024-03-28 21:32:49 +04:00
|
|
|
|
throw new InvalidOperationException(nameof(element));
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
model.DateCreate = element.DateCreate;
|
|
|
|
|
model.PizzaId = element.PizzaId;
|
|
|
|
|
model.DateImplement = element.DateImplement;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
model.ClientId = element.ClientId;
|
|
|
|
|
if (!model.ImplementerId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
model.ImplementerId = element.ImplementerId;
|
|
|
|
|
}
|
2024-02-01 10:43:41 +04:00
|
|
|
|
model.Status = element.Status;
|
|
|
|
|
model.Count = element.Count;
|
|
|
|
|
model.Sum = element.Sum;
|
|
|
|
|
if (requiredStatus - model.Status == 1)
|
|
|
|
|
{
|
|
|
|
|
model.Status = requiredStatus;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
if (model.Status == OrderStatus.Готов)
|
|
|
|
|
{
|
2024-02-01 10:43:41 +04:00
|
|
|
|
model.DateImplement = DateTime.Now;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
}
|
2024-02-01 10:43:41 +04:00
|
|
|
|
if (_orderStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogWarning("Changing status operation faled: Current-{Status}:required-{requiredStatus}.", model.Status, requiredStatus);
|
2024-03-28 21:32:49 +04:00
|
|
|
|
throw new InvalidOperationException($"Невозможно приствоить статус {requiredStatus} заказу с текущим статусом {model.Status}");
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|