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<HomeController> _logger;

        public HomeController(ILogger<HomeController> logger) {
            _logger = logger;
        }

        public IActionResult Index() {
           if (APIClient.Client == null) {
                return Redirect("~/Home/Enter");
           }
           return View(APIClient.GetRequset<List<OrderViewModel>>($"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<ClientViewModel>($"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<List<OrderViewModel>>("api/main/getproductlist");
            return View();
        }

        public void Create(OrderBindingModel order) {
            throw new NotImplementedException();

		}

		private double Calc() {
            throw new NotImplementedException();
		}
	}
}