using ElectronicsShopContracts.BindingModels; using ElectronicsShopContracts.ViewModels; using ElectronicsShopUserApp.Models; using Microsoft.AspNetCore.Mvc; using System.Diagnostics; using System.Runtime.Serialization; namespace ElectronicsShopUserApp.Controllers { public class HomeController : Controller { private readonly ILogger _logger; public HomeController(ILogger logger) { _logger = logger; } public IActionResult Index() { if (APIClient.Client == null) { return Redirect("~/Home/Enter"); } return View(APIClient.GetRequset>($"api/main/getorders?_clientid={APIClient.Client.ID}")); } [HttpGet] public IActionResult Privacy() { if (APIClient.Client == null) { return Redirect("~/home/Enter"); } return View(APIClient.Client); } [HttpPost] public void Privacy(string email, string password, string fio) { if (APIClient.Client == null) { throw new Exception("Вход для авторизованных"); } if (string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(fio)) { throw new Exception("Введите почту, пароль и ФИО"); } APIClient.PostRequest("api/client/updatedata", new ClientBindingModel { ID = APIClient.Client.ID, ClientFIO = fio, Email = email, Password = password, }); APIClient.Client.ClientFIO = fio; APIClient.Client.Email = email; APIClient.Client.Password = password; Response.Redirect("Index"); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } [HttpGet] public IActionResult Enter() { return View(); } [HttpPost] public void Enter(string email, string password) { if (string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password)) { throw new Exception("Введите почту и пароль"); } APIClient.Client = APIClient.GetRequset($"api/client/email?email={email}&password={password}"); if (APIClient.Client == null) { throw new Exception("Неверный адрес почты/пароль"); } Response.Redirect("Index"); } [HttpGet] public IActionResult Register() { return View(); } public void Register(string email, string password, string fio) { if (string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password) || string.IsNullOrEmpty(fio)) { throw new Exception("Введите почту,пароль и ФИО"); } APIClient.PostRequest("api/client/register", new ClientBindingModel { ClientFIO = fio, Email = email, Password = password }); Response.Redirect("Enter"); return; } [HttpGet] public IActionResult Create() { ViewBag.Orders = APIClient.GetRequset>("api/main/getproductlist"); return View(); } public void Create(OrderBindingModel order) { throw new NotImplementedException(); } private double Calc() { throw new NotImplementedException(); } } }