using Microsoft.AspNetCore.Mvc;
using MotorPlantClientApp.Models;
using System.Diagnostics;
using MotorPlantContracts.BindingModels;
using MotorPlantContracts.ViewModels;
using MotorPlantContracts.VeiwModels;

namespace MotorPlantClientApp.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.GetRequest<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 login, string password, string fio)
        {
            if (APIClient.Client == null)
            {
                throw new Exception("�� ��� ���� ������? ���� ���� ������ ��������������");
            }
            if (string.IsNullOrEmpty(login) ||
            string.IsNullOrEmpty(password) || string.IsNullOrEmpty(fio))
            {
                throw new Exception("������� �����, ������ � ���");
            }
            APIClient.PostRequest("api/client/updatedata", new
            ClientBindingModel
            {
                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");
        }
        [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 login, string password)
        {
            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");
        }
        [HttpGet]
        public IActionResult Register()
        {
            return View();
        }
        [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;
        }
        [HttpGet]
        public IActionResult Create()
        {
            ViewBag.Engines =
            APIClient.GetRequest<List<EngineViewModel>>("api/main/getEnginelist");
            return View();
        }
        [HttpPost]
        public void Create(int Engine, int count)
        {
            if (APIClient.Client == null)
            {
                throw new Exception("�� ��� ���� ������? ���� ���� ������ ��������������");
            }
            if (count <= 0)
            {
                throw new Exception("���������� � ����� ������ ���� ������ 0");
            }
            APIClient.PostRequest("api/main/createorder", new
            OrderBindingModel
            {
                ClientId = APIClient.Client.Id,
                EngineId = Engine,
                Count = count,
                Sum = Calc(count, Engine)
            });
            Response.Redirect("Index");
        }
        [HttpPost]
        public double Calc(int count, int Engine)
        {
            var _Engine =
            APIClient.GetRequest<EngineViewModel>($"api/main/getEngine?Engineid={Engine}"
            );
            return Math.Round(count * (_Engine?.Price ?? 1), 2);
        }
    }
}