PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/BusinessLogic/OrderLogic.cs

139 lines
4.8 KiB
C#
Raw Normal View History

using TravelCompanyContracts.BindingModels;
2024-02-07 19:42:14 +04:00
using TravelCompanyContracts.BusinessLogicsContracts;
using TravelCompanyContracts.SearchModels;
using TravelCompanyContracts.StoragesContracts;
using TravelCompanyContracts.ViewModels;
using TravelCompanyDataModels.Enums;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-02-07 19:42:14 +04:00
namespace TravelCompanyBusinessLogic.BusinessLogic
{
public class OrderLogic : IOrderLogic
{
private readonly ILogger _logger;
private readonly IOrderStorage _orderStorage;
2024-05-03 10:54:09 +04:00
private readonly IShopStorage _shopStorage;
2024-05-02 14:54:56 +04:00
static readonly object locker = new object();
2024-05-03 10:54:09 +04:00
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, IShopStorage shopStorage)
2024-02-07 19:42:14 +04:00
{
_logger = logger;
_orderStorage = orderStorage;
2024-05-03 10:54:09 +04:00
_shopStorage = shopStorage;
2024-02-07 19:42:14 +04:00
}
2024-05-02 14:54:56 +04:00
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;
}
2024-02-07 19:42:14 +04:00
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
{
_logger.LogInformation("ReadList. OrderId:{Id}", model?.Id);
2024-02-07 19:42:14 +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;
}
public bool CreateOrder(OrderBindingModel model)
{
CheckModel(model);
2024-02-07 19:42:14 +04:00
if (model.Status != OrderStatus.Неизвестен)
return false;
model.Status = OrderStatus.Принят;
2024-02-07 19:42:14 +04:00
if (_orderStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
public bool TakeOrderInWork(OrderBindingModel model)
{
2024-05-02 14:54:56 +04:00
lock (locker)
{
return ToNextStatus(model, OrderStatus.Выполняется);
}
2024-02-07 19:42:14 +04:00
}
public bool FinishOrder(OrderBindingModel model)
{
return ToNextStatus(model, OrderStatus.Готов);
2024-02-07 19:42:14 +04:00
}
public bool DeliveryOrder(OrderBindingModel model)
{
return ToNextStatus(model, OrderStatus.Выдан);
2024-02-07 19:42:14 +04:00
}
public bool ToNextStatus(OrderBindingModel model, OrderStatus orderStatus)
2024-02-07 19:42:14 +04:00
{
CheckModel(model, false);
2024-05-02 14:54:56 +04:00
var element = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
if (element == null)
2024-02-07 19:42:14 +04:00
{
2024-05-02 14:54:56 +04:00
_logger.LogWarning("Read operation failed");
return false;
2024-02-07 19:42:14 +04:00
}
2024-05-02 14:54:56 +04:00
if (element.Status != orderStatus - 1)
2024-02-07 19:42:14 +04:00
{
2024-05-02 14:54:56 +04:00
_logger.LogWarning("Status change operation failed");
throw new InvalidOperationException("Текущий статус заказа не может быть переведен в выбранный");
2024-02-07 19:42:14 +04:00
}
2024-05-02 14:54:56 +04:00
model.Status = orderStatus;
if (model.Status == OrderStatus.Готов) model.DateImplement = DateTime.Now;
if (element.ImplementerId.HasValue)
model.ImplementerId = element.ImplementerId;
_orderStorage.Update(model);
return true;
2024-02-07 19:42:14 +04:00
}
private void CheckModel(OrderBindingModel model, bool withParams = true)
2024-02-07 19:42:14 +04:00
{
if (model == null)
2024-02-07 19:42:14 +04:00
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
2024-02-07 19:42:14 +04:00
{
return;
2024-02-07 19:42:14 +04:00
}
if (model.Count <= 0)
2024-02-07 19:42:14 +04:00
{
throw new ArgumentNullException("Количество изделий должно быть больше 0", nameof(model.Count));
2024-02-07 19:42:14 +04:00
}
if (model.Sum <= 0)
{
throw new ArgumentNullException("Цена заказа должна быть больше 0", nameof(model.Sum));
2024-02-07 19:42:14 +04:00
}
_logger.LogInformation("Travel. TravelId:{TravelId}.Count:{Count}.Sum:{Sum}Id:{Id}", model.TravelId, model.Count, model.Sum, model.Id);
2024-02-07 19:42:14 +04:00
}
}
}