2024-05-03 01:12:33 +04:00
|
|
|
|
using ComputersShopBusinessLogic.MailWorker;
|
|
|
|
|
using ComputersShopContracts.BindingModels;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
using ComputersShopContracts.BuisnessLogicsContracts;
|
2024-05-03 01:12:33 +04:00
|
|
|
|
using ComputersShopContracts.BusinessLogicsContracts;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
using ComputersShopContracts.SearchModels;
|
|
|
|
|
using ComputersShopContracts.StoragesContracts;
|
|
|
|
|
using ComputersShopContracts.ViewModels;
|
|
|
|
|
using ComputersShopDataModels.Enums;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputersShopBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class OrderLogic: IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
2024-04-21 22:39:33 +04:00
|
|
|
|
static readonly object locker = new object();
|
2024-05-03 01:12:33 +04:00
|
|
|
|
private readonly AbstractMailWorker _mailWorker;
|
|
|
|
|
private readonly IClientLogic _clientLogic;
|
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, AbstractMailWorker mailWorker, IClientLogic clientLogic)
|
2024-02-10 02:12:37 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderStorage = orderStorage;
|
2024-05-03 01:12:33 +04:00
|
|
|
|
_mailWorker = mailWorker;
|
|
|
|
|
_clientLogic = clientLogic;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
}
|
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("ReadList. Id:{Id}", model?.Id);
|
|
|
|
|
var list = model == null ? _orderStorage.GetFullList() : _orderStorage.GetFiltredList(model);
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
2024-04-19 04:28:11 +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 bool CreateOrder(OrderBindingModel model)
|
2024-02-10 02:12:37 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (model.Status != OrderStatus.Неизвестен)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Wrong order status. Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
model.Status = OrderStatus.Принят;
|
2024-05-03 01:12:33 +04:00
|
|
|
|
var order = _orderStorage.Insert(model);
|
|
|
|
|
if (order == null)
|
2024-02-10 02:12:37 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-05-03 01:12:33 +04:00
|
|
|
|
SendOrderMessage(order.ClientId, $"DNS, Заказ №{order.Id}", $"Заказ №{order.Id} от {order.DateCreate} на сумму {order.Sum:0.00} принят");
|
|
|
|
|
return true;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
}
|
2024-02-19 22:16:00 +04:00
|
|
|
|
public bool ChangeStatus(OrderBindingModel model, OrderStatus newStatus)
|
2024-02-10 02:12:37 +04:00
|
|
|
|
{
|
2024-04-21 22:39:33 +04:00
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
var element = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id });
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Read operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (element.Status != newStatus - 1)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Status change operation failed");
|
|
|
|
|
throw new InvalidOperationException("Текущий статус заказа не может быть переведен в выбранный");
|
|
|
|
|
}
|
|
|
|
|
if (element.ImplementerId.HasValue)
|
2024-02-10 02:12:37 +04:00
|
|
|
|
{
|
2024-04-21 22:39:33 +04:00
|
|
|
|
model.ImplementerId = element.ImplementerId;
|
2024-02-10 02:12:37 +04:00
|
|
|
|
}
|
2024-04-21 22:39:33 +04:00
|
|
|
|
OrderStatus oldStatus = model.Status;
|
|
|
|
|
model.Status = newStatus;
|
|
|
|
|
if (model.Status == OrderStatus.Выдан)
|
2024-02-19 22:16:00 +04:00
|
|
|
|
{
|
|
|
|
|
model.DateImplement = DateTime.Now;
|
|
|
|
|
}
|
2024-05-03 01:12:33 +04:00
|
|
|
|
var order = _orderStorage.Update(model);
|
|
|
|
|
if (order == null)
|
2024-04-21 22:39:33 +04:00
|
|
|
|
{
|
|
|
|
|
model.Status = oldStatus;
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-05-03 01:12:33 +04:00
|
|
|
|
SendOrderMessage(order.ClientId, $"DNS, Заказ №{order.Id}", $"Заказ №{order.Id} от {order.DateCreate} на сумму {order.Sum:0.00} принят");
|
2024-04-21 22:39:33 +04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-02-19 22:16:00 +04:00
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
|
|
|
|
{
|
2024-04-21 22:39:33 +04:00
|
|
|
|
lock (locker)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Выполняется);
|
|
|
|
|
}
|
2024-02-19 22:16:00 +04:00
|
|
|
|
}
|
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Готов);
|
|
|
|
|
}
|
2024-02-10 02:12:37 +04:00
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
2024-02-19 22:16:00 +04:00
|
|
|
|
return ChangeStatus(model, OrderStatus.Выдан);
|
2024-02-10 02:12:37 +04:00
|
|
|
|
}
|
|
|
|
|
private void CheckModel(OrderBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-02-10 02:14:22 +04:00
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Цена должна быть больше 0", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
if (model.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Количество изделий должно быть больше 0", nameof(model.Count));
|
|
|
|
|
}
|
2024-02-19 22:16:00 +04:00
|
|
|
|
if (model.DateImplement != null && model.DateImplement < model.DateCreate)
|
2024-02-10 02:14:22 +04:00
|
|
|
|
{
|
2024-02-19 22:16:00 +04:00
|
|
|
|
throw new ArithmeticException("Дата завершения не может быть раньше даты начала");
|
2024-02-10 02:14:22 +04:00
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Order. Id:{Id}. Sum:{Sum}. ComputerId:{ComputerId}", model.Id, model.Sum, model.ComputerId);
|
2024-02-10 02:12:37 +04:00
|
|
|
|
}
|
2024-05-03 01:12:33 +04:00
|
|
|
|
private bool SendOrderMessage(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-10 02:12:37 +04:00
|
|
|
|
}
|
|
|
|
|
}
|