78 lines
2.4 KiB
C#
78 lines
2.4 KiB
C#
using HardwareShopStorekeeperApp.Models;
|
||
using HardwareShopContracts.BindingModels;
|
||
using HardwareShopContracts.ViewModels;
|
||
using HardwareShopDataModels.Enums;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using System.Diagnostics;
|
||
|
||
namespace HardwareShopStorekeeperApp.Controllers
|
||
{
|
||
public class HomeController : Controller
|
||
{
|
||
private readonly ILogger<HomeController> _logger;
|
||
|
||
public HomeController(ILogger<HomeController> logger)
|
||
{
|
||
_logger = logger;
|
||
}
|
||
|
||
public IActionResult Register()
|
||
{
|
||
return View();
|
||
}
|
||
|
||
[HttpPost]
|
||
public void Register(string login, string email, string password)
|
||
{
|
||
if (string.IsNullOrEmpty(login) || string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password))
|
||
{
|
||
throw new Exception("Введите логин, email, пароль");
|
||
}
|
||
APIClient.PostRequest("api/user/register", new UserBindingModel
|
||
{
|
||
Login = login,
|
||
Email = email,
|
||
Password = password,
|
||
Role = UserRole.Кладовщик
|
||
});
|
||
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<UserViewModel>($"api/user/login?email={email}&password={password}");
|
||
if (APIClient.User == null)
|
||
{
|
||
throw new Exception("Неверные почта и/или пароль");
|
||
}
|
||
return RedirectToAction("MainStorekeeper", "Storekeeper");
|
||
}
|
||
}
|
||
} |