PIbd-23_Borschevskaya_A.A._.../FurnitureAssembly/FurnitureAssemblyBusinessLogic/OrderLogic.cs

164 lines
5.4 KiB
C#
Raw Normal View History

using FurnitureAssemblyContracts.BindingModels;
using FurnitureAssemblyContracts.BusinessLogicsContarcts;
using FurnitureAssemblyContracts.SearchModels;
using FurnitureAssemblyContracts.StoragesContracts;
using FurnitureAssemblyContracts.ViewModels;
using FurnitureAssemblyDataModels.Enums;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyBusinessLogic
{
public class OrderLogic : IOrderLogic
{
private readonly ILogger _logger;
private readonly IOrderStorage _orderStorage;
2023-02-01 11:25:29 +04:00
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage)
{
_logger = logger;
_orderStorage = orderStorage;
}
2023-02-11 09:38:42 +04:00
private bool ChangeStatus(OrderBindingModel model, OrderStatus orderStatus)
{
if (model.Status + 1 != orderStatus)
{
return false;
}
model.Status = orderStatus;
return true;
}
public bool CreateOrder(OrderBindingModel model)
{
CheckModel(model);
2023-02-13 09:02:44 +04:00
2023-02-11 09:38:42 +04:00
if (!ChangeStatus(model, OrderStatus.Принят))
{
_logger.LogWarning("Order's status is wrong");
return false;
}
if (_orderStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
return false;
}
2023-02-11 09:38:42 +04:00
return true;
}
2023-02-11 09:38:42 +04:00
public bool TakeOrderInWork(OrderBindingModel model)
{
2023-02-13 09:02:44 +04:00
model = Find(model);
if (model == null)
{
return false;
}
2023-02-11 09:38:42 +04:00
if (!ChangeStatus(model, OrderStatus.Выполняется))
{
2023-02-11 09:38:42 +04:00
_logger.LogWarning("Order's status is wrong");
return false;
}
2023-02-11 09:38:42 +04:00
_orderStorage.Update(model);
return true;
}
public bool FinishOrder(OrderBindingModel model)
{
2023-02-13 09:02:44 +04:00
model = Find(model);
if (model == null) {
return false;
}
2023-02-11 09:38:42 +04:00
if (!ChangeStatus(model, OrderStatus.Готов))
{
2023-02-11 09:38:42 +04:00
_logger.LogWarning("Order's status is wrong");
return false;
}
_orderStorage.Update(model);
return true;
}
public bool DeliveryOrder(OrderBindingModel model)
{
2023-02-13 09:02:44 +04:00
model = Find(model);
if (model == null)
{
return false;
}
2023-02-11 09:38:42 +04:00
if (!ChangeStatus(model, OrderStatus.Выдан))
{
_logger.LogWarning("Order's status is wrong");
return false;
}
2023-02-11 09:38:42 +04:00
model.DateImplement = DateTime.Now;
_orderStorage.Update(model);
return true;
}
2023-02-11 09:38:42 +04:00
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;
}
2023-02-11 09:38:42 +04:00
private void CheckModel(OrderBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (model.FurnitureId <= 0)
{
2023-02-11 09:38:42 +04:00
throw new ArgumentNullException("Неверный идентификатор изделия", nameof(model.FurnitureId));
}
if (model.Count <= 0)
{
throw new ArgumentNullException("Количество изделий должно быть больше 0", nameof(model.Count));
}
if (model.Sum <= 0)
{
throw new ArgumentNullException("Стоимость заказа должна быть больше 0", nameof(model.Sum));
}
2023-02-11 09:38:42 +04:00
_logger.LogInformation("Order. OrderId: { Id}. OrderStatus: {OrderStatus} DateCreate: {DateCreate} " +
"FurnitureId:{FurnitureId}. FurnitureName:{FurnitureName}. Count:{ Count}. Sum:{ Sum}. ",
model.Id, model.Status, model.DateCreate, model.FurnitureId, model.FurnitureName, model.Count, model.Sum);
}
2023-02-13 09:02:44 +04:00
private OrderBindingModel Find(OrderBindingModel model)
{
var modelView = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
if (modelView == null)
{
return null;
}
model.FurnitureId = modelView.FurnitureId;
model.DateCreate = modelView.DateCreate;
model.Count = modelView.Count;
model.Sum = modelView.Sum;
model.FurnitureId = model.FurnitureId;
model.FurnitureName = modelView.FurnitureName;
model.Status = modelView.Status;
return model;
}
}
}