243 lines
8.5 KiB
C#
Raw Normal View History

using FlowerShopBusinessLogic.MailWorker;
using FlowerShopContracts.BindingModels;
2024-02-08 15:12:43 +03:00
using FlowerShopContracts.BusinessLogicsContracts;
using FlowerShopContracts.SearchModels;
using FlowerShopContracts.StoragesContracts;
using FlowerShopContracts.ViewModels;
using FlowerShopDataModels.Enums;
2024-03-14 21:28:58 +04:00
using FlowerShopDataModels.Models;
2024-02-08 15:12:43 +03:00
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopBusinessLogic.BusinessLogic
{
public class OrderLogic : IOrderLogic
{
private readonly ILogger _logger;
private readonly IOrderStorage _orderStorage;
2024-03-14 21:28:58 +04:00
private readonly IShopStorage _shopStorage;
private readonly IShopLogic _shopLogic;
private readonly IFlowerStorage _flowerStorage;
private readonly AbstractMailWorker _mailWorker;
private readonly IClientLogic _clientLogic;
2024-04-22 20:09:58 +04:00
static readonly object locker = new object();
2024-02-08 15:12:43 +03:00
public OrderLogic(IOrderStorage orderStorage, IShopStorage shopStorage, IShopLogic shopLogic, IFlowerStorage flowerStorage, ILogger<OrderLogic> logger, AbstractMailWorker mailWorker, IClientLogic clientLogic)
2024-02-08 15:12:43 +03:00
{
_orderStorage = orderStorage;
2024-03-14 21:28:58 +04:00
_shopStorage = shopStorage;
_logger = logger;
_shopLogic = shopLogic;
_flowerStorage = flowerStorage;
_mailWorker = mailWorker;
_clientLogic = clientLogic;
}
2024-04-22 20:09:58 +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;
}
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
2024-02-08 15:12:43 +03:00
{
_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 CreateOrder(OrderBindingModel model)
{
CheckModel(model);
if (model.Status != OrderStatus.Неизвестен) return false;
model.Status = OrderStatus.Принят;
var res = _orderStorage.Insert(model);
if (res == null)
{
2024-02-08 15:12:43 +03:00
_logger.LogWarning("Insert operation failed");
return false;
}
SendOrderStatusMail(model.ClientId, $"Изменен статус заказа #{res.Id}", $"Заказ #{res.Id} изменен статус на {model.Status}");
return true;
}
2024-02-08 15:12:43 +03:00
public bool ChangeStatus(OrderBindingModel model, OrderStatus status)
{
2024-04-22 20:09:58 +04:00
CheckModel(model,false);
2024-02-08 15:12:43 +03:00
var element = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
if (element == null)
{
_logger.LogWarning("Read operation failed");
return false;
}
if (!(element.Status == status - 1 || (element.Status == OrderStatus.Готов )))
2024-02-08 15:12:43 +03:00
{
_logger.LogWarning("Status change operation failed");
throw new InvalidOperationException("Текущий статус заказа не может быть переведен в выбранный");
}
if (element.Status == OrderStatus.Готов || element.Status == OrderStatus.Ожидает)
2024-03-14 21:28:58 +04:00
{
var flower = _flowerStorage.GetElement(new FlowerSearchModel() { Id = element.FlowerId });
2024-03-14 21:28:58 +04:00
if (flower == null)
{
_logger.LogWarning("Status update to " + status.ToString() + " operation failed. Document not found.");
return false;
}
if (CheckSupply(flower, element.Count) == false)
2024-03-14 21:28:58 +04:00
{
_logger.LogWarning("Status update to " + status.ToString() + " operation failed. Shop supply error.");
status = OrderStatus.Ожидает;
2024-03-14 21:28:58 +04:00
}
}
2024-02-08 15:12:43 +03:00
model.Status = status;
if (model.Status == OrderStatus.Выдан) model.DateImplement = DateTime.Now;
2024-04-22 20:09:58 +04:00
if (element.ImplementerId.HasValue)
model.ImplementerId = element.ImplementerId;
var result = _orderStorage.Update(model);
if (result == null)
{
_logger.LogWarning("Update operation failed");
return false;
}
SendOrderStatusMail(result.ClientId, $"Изменен статус заказа #{result.Id}", $"Заказ #{model.Id} изменен статус на {result.Status}");
return true;
}
2024-02-08 15:12:43 +03:00
public bool TakeOrderInWork(OrderBindingModel model)
{
2024-04-22 20:09:58 +04:00
lock (locker)
{
return ChangeStatus(model, OrderStatus.Выполняется);
}
}
2024-02-08 15:12:43 +03:00
public bool FinishOrder(OrderBindingModel model)
{
return ChangeStatus(model, OrderStatus.Готов);
}
public bool DeliveryOrder(OrderBindingModel model)
{
return ChangeStatus(model, OrderStatus.Выдан);
}
2024-02-08 15:12:43 +03:00
private void CheckModel(OrderBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (model.Sum <= 0)
{
throw new ArgumentNullException("Цена заказа должна быть больше 0", nameof(model.Sum));
}
if (model.Count <= 0)
{
throw new ArgumentNullException("Количество элементов в заказе должно быть больше 0", nameof(model.Count));
}
_logger.LogInformation("Order. Sum:{ Cost}. Id: { Id}", model.Sum, model.Id);
}
2024-03-14 21:28:58 +04:00
public bool CheckSupply(IFlowerModel flower, int count)
{
if (count <= 0)
{
2024-03-27 15:56:18 +04:00
_logger.LogWarning("Check then supply operation error. Flowers count < 0.");
2024-03-14 21:28:58 +04:00
return false;
}
int sumCapacity = 0;
int sumCount = 0;
sumCapacity = _shopStorage.GetFullList().Select(x => x.MaxCapacity).Sum();
sumCount = _shopStorage.GetFullList().Select(x => x.ShopFlowers.Select(y => y.Value.Item2).Sum()).Sum();
int freeSpace = sumCapacity - sumCount;
if (freeSpace - count < 0)
{
2024-03-27 15:56:18 +04:00
_logger.LogWarning("Check then supply operation error. There's no place for new Flowers in shops.");
2024-03-14 21:28:58 +04:00
return false;
}
foreach (var shop in _shopStorage.GetFullList())
{
freeSpace = shop.MaxCapacity;
foreach (var doc in shop.ShopFlowers)
{
freeSpace -= doc.Value.Item2;
}
if (freeSpace == 0)
{
continue;
}
if (freeSpace - count >= 0)
{
if (_shopLogic.MakeSupply(new() { Id = shop.Id }, flower, count))
count = 0;
else
{
_logger.LogWarning("Supply error");
return false;
}
}
if (freeSpace - count < 0)
{
if (_shopLogic.MakeSupply(new() { Id = shop.Id }, flower, freeSpace))
count -= freeSpace;
else
{
_logger.LogWarning("Supply error");
return false;
}
}
if (count <= 0)
{
return true;
}
}
return false;
}
private bool SendOrderStatusMail(int clientId, string subject, string text)
{
var client = _clientLogic.ReadElement(new() { Id = clientId });
if (client == null)
{
return false;
}
_mailWorker.MailSendAsync(new()
{
MailAddress = client.Email,
Subject = subject,
Text = text
});
return true;
}
}
2024-02-08 15:12:43 +03:00
}