2024-05-16 21:31:36 +04:00
|
|
|
|
using CarRepairShopBusinessLogic.MailWorker;
|
|
|
|
|
using CarRepairShopContracts.BindingModels;
|
2024-03-23 14:18:27 +04:00
|
|
|
|
using CarRepairShopContracts.BusinessLogicsContracts;
|
|
|
|
|
using CarRepairShopContracts.SearchModels;
|
|
|
|
|
using CarRepairShopContracts.StoragesContracts;
|
|
|
|
|
using CarRepairShopContracts.ViewModels;
|
|
|
|
|
using CarRepairShopDataModels.Enums;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-05-16 21:31:36 +04:00
|
|
|
|
using System.Xml.Linq;
|
2024-03-23 14:18:27 +04:00
|
|
|
|
|
|
|
|
|
namespace CarRepairShopBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class OrderLogic : IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
|
2024-05-16 21:31:36 +04:00
|
|
|
|
private readonly AbstractMailWorker _mailWorker;
|
|
|
|
|
|
2024-05-02 22:47:27 +04:00
|
|
|
|
static readonly object locker = new();
|
|
|
|
|
|
2024-05-16 21:31:36 +04:00
|
|
|
|
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, AbstractMailWorker mailWorker)
|
2024-03-23 14:18:27 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderStorage = orderStorage;
|
2024-05-16 21:31:36 +04:00
|
|
|
|
_mailWorker = mailWorker;
|
2024-03-23 14:18:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (model.Status != OrderStatus.Неизвестен)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Invalid order status");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
model.Status = OrderStatus.Принят;
|
2024-05-16 21:31:36 +04:00
|
|
|
|
var element = _orderStorage.Insert(model);
|
|
|
|
|
if (element == null)
|
2024-03-23 14:18:27 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-05-16 21:31:36 +04:00
|
|
|
|
Task.Run(() => _mailWorker.MailSendAsync(new MailSendInfoBindingModel
|
|
|
|
|
{
|
|
|
|
|
MailAddress = element.ClientEmail,
|
|
|
|
|
Subject = $"Новый заказ создан. Номер заказа - {element.Id}",
|
|
|
|
|
Text = $"Заказ №{element.Id} от {element.DateCreate} на сумму {element.Sum} принят."
|
|
|
|
|
}));
|
2024-03-23 14:18:27 +04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("ReadList. OrderId: {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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-02 22:47:27 +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-03-23 14:18:27 +04:00
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
|
|
|
|
{
|
2024-05-02 22:47:27 +04:00
|
|
|
|
lock (locker)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Выполняется);
|
|
|
|
|
}
|
2024-03-23 14:18:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return ChangeStatus(model, OrderStatus.Готов);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
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.RepairId <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор ремонта", nameof(model.RepairId));
|
|
|
|
|
}
|
2024-04-27 21:36:54 +04:00
|
|
|
|
if (model.ClientId <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор клиента", nameof(model.ClientId));
|
|
|
|
|
}
|
2024-03-23 14:18:27 +04:00
|
|
|
|
if (model.Count <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("В заказе должен быть хотя бы один ремонт", nameof(model.Count));
|
|
|
|
|
}
|
|
|
|
|
if (model.Sum <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Стоимость заказа должна быть больше 0", nameof(model.Sum));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Order. Id: {Id}. Sum: {Sum}. CarRepairId: {CarRepairId}. CarRepairCount: {Count}", model.Id, model.Sum,
|
|
|
|
|
model.RepairId, model.Count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool ChangeStatus(OrderBindingModel model, OrderStatus newStatus)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
var order = _orderStorage.GetElement(new OrderSearchModel { Id = model.Id } );
|
|
|
|
|
if (order == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Change status operation failed. Order not found");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (order.Status + 1 != newStatus)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Change status operation failed. Incorrect new status: {newStatus}. Current status: {currStatus}",
|
|
|
|
|
newStatus, order.Status);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
model.Status = newStatus;
|
2024-05-02 22:47:27 +04:00
|
|
|
|
if (order.ImplementerId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
model.ImplementerId = order.ImplementerId;
|
|
|
|
|
}
|
2024-03-23 14:18:27 +04:00
|
|
|
|
if (model.Status == OrderStatus.Готов)
|
|
|
|
|
{
|
|
|
|
|
model.DateImplement = DateTime.Now;
|
|
|
|
|
} else
|
|
|
|
|
{
|
|
|
|
|
model.DateImplement = order.DateImplement;
|
|
|
|
|
}
|
|
|
|
|
if (_orderStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Change status operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-05-16 21:31:36 +04:00
|
|
|
|
string DateInfo = model.DateImplement.HasValue ? $"Дата выполнения {model.DateImplement}" : "";
|
|
|
|
|
Task.Run(() => _mailWorker.MailSendAsync(new MailSendInfoBindingModel
|
|
|
|
|
{
|
|
|
|
|
MailAddress = order.ClientEmail,
|
|
|
|
|
Subject = $"Заказ №{order.Id}",
|
|
|
|
|
Text = $"Заказ №{order.Id} изменен статус на {model.Status}. {DateInfo}"
|
|
|
|
|
}));
|
2024-03-23 14:18:27 +04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|