это как вообще произошло...

This commit is contained in:
Вячеслав Иванов 2024-04-02 21:29:32 +04:00
parent 1733ff3820
commit 156675a60e

View File

@ -1,168 +1,147 @@
using PizzeriaDataModels.Enums; using Microsoft.AspNetCore.Mvc;
using PizzeriaClientApp.Models;
using PizzeriaContracts.BindingModels; using PizzeriaContracts.BindingModels;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.SearchModels;
using PizzeriaContracts.StoragesContracts;
using PizzeriaContracts.ViewModels; using PizzeriaContracts.ViewModels;
using PizzeriaBusinessLogic.MailWorker; using System.Diagnostics;
namespace PizzeriaBusinessLogic.BusinessLogics namespace PizzeriaClientApp.Controllers
{ {
public class OrderLogic : IOrderLogic public class HomeController : Controller
{ {
private readonly ILogger _logger; private readonly ILogger<HomeController> _logger;
private readonly IOrderStorage _orderStorage;
private readonly AbstractMailWorker _mailWorker; public HomeController(ILogger<HomeController> logger)
static readonly object _locker = new object();
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, AbstractMailWorker mailWorker)
{ {
_logger = logger; _logger = logger;
_orderStorage = orderStorage;
_mailWorker = mailWorker;
} }
public OrderViewModel? ReadElement(OrderSearchModel model) public IActionResult Index()
{ {
if (model == null) if (APIClient.Client == null)
{ {
throw new ArgumentNullException(nameof(model)); return Redirect("~/Home/Enter");
} }
_logger.LogInformation("ReadElement. ClientId:{ClientId}.Status:{Status}.ImplementerId:{ImplementerId}.DateFrom:{DateFrom}.DateTo:{DateTo}OrderId:{Id}", return View(APIClient.GetRequest<List<OrderViewModel>>($"api/main/getorders?clientId={APIClient.Client.Id}"));
model.ClientId, model.Status, model.ImplementerId, model.DateFrom, model.DateTo, 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) [HttpGet]
public IActionResult Privacy()
{ {
_logger.LogInformation("ReadList. ClientId:{ClientId}.Status:{Status}.ImplementerId:{ImplementerId}.DateFrom:{DateFrom}.DateTo:{DateTo}OrderId:{Id}", if (APIClient.Client == null)
model?.ClientId, model?.Status, model?.ImplementerId, model?.DateFrom, model?.DateTo, model?.Id);
var list = model == null ? _orderStorage.GetFullList() : _orderStorage.GetFilteredList(model);
if (list == null)
{ {
_logger.LogWarning("ReadList return null list"); return Redirect("~/Home/Enter");
return null;
} }
_logger.LogInformation("ReadList. Count:{Count}", list.Count); return View(APIClient.Client);
return list;
} }
public bool CreateOrder(OrderBindingModel model) [HttpPost]
public void Privacy(string login, string password, string fio)
{ {
CheckModel(model); if (APIClient.Client == null)
if (model.Status != OrderStatus.Неизвестен)
return false;
model.Status = OrderStatus.Принят;
var element = _orderStorage.Insert(model);
if (element == null)
{ {
_logger.LogWarning("Insert operation failed"); throw new Exception("Вы как суда попали? Суда вход только авторизованным");
return false;
} }
Task.Run(() => _mailWorker.MailSendAsync(new MailSendInfoBindingModel if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(fio))
{ {
MailAddress = element.ClientEmail, throw new Exception("Введите логин, пароль и ФИО");
Subject = $"Изменение статуса заказа номер {element.Id}", }
Text = $"Ваш заказ номер {element.Id} на пиццу {element.PizzaName} от {element.DateCreate} на сумму {element.Sum} принят." APIClient.PostRequest("api/client/updatedata", new ClientBindingModel
})); {
return true; Id = APIClient.Client.Id,
ClientFIO = fio,
Email = login,
Password = password
});
APIClient.Client.ClientFIO = fio;
APIClient.Client.Email = login;
APIClient.Client.Password = password;
Response.Redirect("Index");
} }
public bool TakeOrderInWork(OrderBindingModel model) [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{ {
lock (_locker) return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
{
return ChangeStatus(model, OrderStatus.Выполняется);
}
} }
public bool FinishOrder(OrderBindingModel model) [HttpGet]
public IActionResult Enter()
{ {
return ChangeStatus(model, OrderStatus.Готов); return View();
} }
public bool DeliveryOrder(OrderBindingModel model) [HttpPost]
public void Enter(string login, string password)
{ {
return ChangeStatus(model, OrderStatus.Выдан); if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password))
{
throw new Exception("Введите логин и пароль");
}
APIClient.Client = APIClient.GetRequest<ClientViewModel>($"api/client/login?login={login}&password={password}");
if (APIClient.Client == null)
{
throw new Exception("Неверный логин/пароль");
}
Response.Redirect("Index");
} }
private void CheckModel(OrderBindingModel model, bool withParams = true) [HttpGet]
public IActionResult Register()
{ {
if (model == null) return View();
{
throw new ArgumentNullException(nameof(model));
} }
if (!withParams)
[HttpPost]
public void Register(string login, string password, string fio)
{ {
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(fio))
{
throw new Exception("Введите логин, пароль и ФИО");
}
APIClient.PostRequest("api/client/register", new ClientBindingModel
{
ClientFIO = fio,
Email = login,
Password = password
});
Response.Redirect("Enter");
return; return;
} }
if (model.Count <= 0)
[HttpGet]
public IActionResult Create()
{ {
throw new ArgumentException("Колличество пиццы в заказе не может быть меньше 1", nameof(model.Count)); ViewBag.Pizzas = APIClient.GetRequest<List<PizzaViewModel>>("api/main/getpizzalist");
} return View();
if (model.Sum <= 0)
{
throw new ArgumentException("Стоимость заказа на может быть меньше 1", nameof(model.Sum));
}
if (model.DateImplement.HasValue && model.DateImplement < model.DateCreate)
{
throw new ArithmeticException($"Дата выдачи заказа {model.DateImplement} не может быть раньше даты его создания {model.DateCreate}");
}
_logger.LogInformation("Pizza. PizzaId:{PizzaId}.Count:{Count}.Sum:{Sum}Id:{Id}",
model.PizzaId, model.Count, model.Sum, model.Id);
} }
private bool ChangeStatus(OrderBindingModel model, OrderStatus requiredStatus) [HttpPost]
public void Create(int pizza, int count)
{ {
CheckModel(model, false); if (APIClient.Client == null)
var element = _orderStorage.GetElement(new OrderSearchModel()
{ {
Id = model.Id throw new Exception("Вы как суда попали? Суда вход только авторизованным");
}
if (count <= 0)
{
throw new Exception("Количество и сумма должны быть больше 0");
}
APIClient.PostRequest("api/main/createorder", new OrderBindingModel
{
ClientId = APIClient.Client.Id,
PizzaId = pizza,
Count = count,
Sum = Calc(count, pizza)
}); });
if (element == null) Response.Redirect("Index");
}
[HttpPost]
public double Calc(int count, int pizza)
{ {
throw new InvalidOperationException(nameof(element)); var piz = APIClient.GetRequest<PizzaViewModel>($"api/main/getpizza?pizzaId={pizza}");
} return count * (piz?.Price ?? 1);
model.DateCreate = element.DateCreate;
model.PizzaId = element.PizzaId;
model.DateImplement = element.DateImplement;
model.ClientId = element.ClientId;
if (!model.ImplementerId.HasValue)
{
model.ImplementerId = element.ImplementerId;
}
model.Status = element.Status;
model.Count = element.Count;
model.Sum = element.Sum;
if (requiredStatus - model.Status == 1)
{
model.Status = requiredStatus;
if (model.Status == OrderStatus.Готов)
{
model.DateImplement = DateTime.Now;
}
if (_orderStorage.Update(model) == null)
{
_logger.LogWarning("Update operation failed");
return false;
}
string DateInfo = model.DateImplement.HasValue ? $"Дата выполнения {model.DateImplement}" : "";
Task.Run(() => _mailWorker.MailSendAsync(new MailSendInfoBindingModel
{
MailAddress = element.ClientEmail,
Subject = $"Изменение статуса заказа номер {element.Id}",
Text = $"Ваш заказ номер {element.Id} на пиццу {element.PizzaName} от {element.DateCreate} на сумму {element.Sum} {model.Status}. {DateInfo}"
}));
return true;
}
_logger.LogWarning("Changing status operation faled: Current-{Status}:required-{requiredStatus}.", model.Status, requiredStatus);
throw new InvalidOperationException($"Невозможно приствоить статус {requiredStatus} заказу с текущим статусом {model.Status}");
} }
} }
} }