using HardwareShopClientApp.Models; using HardwareShopContracts.BindingModels; using HardwareShopContracts.ViewModels; using HardwareShopDataModels.Enums; using Microsoft.AspNetCore.Mvc; using System.Diagnostics; namespace HardwareShopClientApp.Controllers { public class HomeController : Controller { private readonly ILogger _logger; public HomeController(ILogger logger) { _logger = logger; } public IActionResult Register() { return View(); } [HttpPost] public void Register(string login, string email, string password, int role) { if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password) || role <= 0) { throw new Exception("Введите логин, email, пароль и роль"); } APIClient.PostRequest("api/client/register", new UserBindingModel { Login = login, Email = email, Password = password, Role = (UserRole)role }); Response.Redirect("Enter"); return; } public IActionResult Index() { return View(); } public IActionResult Privacy() { return View(); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } public IActionResult Enter() { return View(); } [HttpPost] public IActionResult Enter(string email, string password) { if (string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password)) { throw new Exception("Введите почту и пароль"); } APIClient.User = APIClient.GetRequest($"api/client/login?email={email}&password={password}"); if (APIClient.User == null) { throw new Exception("Неверные почта и/или пароль"); } if ((int)APIClient.User.Role == 1) { return RedirectToAction("MainWorker", "Worker"); } else { return RedirectToAction("Goods", "Storekeeper"); } } } }