using AircraftPlantContracts.BindingModels;
using AircraftPlantContracts.SearchModels;
using AircraftPlantContracts.ViewModels;
using AircraftPlantShopApp.Models;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
namespace AircraftPlantShopApp.Controllers
{
///
/// Контроллер
///
public class HomeController : Controller
{
///
/// Логгер
///
private readonly ILogger _logger;
///
/// Конструктор
///
///
public HomeController(ILogger logger)
{
_logger = logger;
}
///
/// Вход в приложение
///
///
[HttpGet]
public IActionResult Enter()
{
return View();
}
///
/// Вход в приложение
///
///
///
[HttpPost]
public void Enter(string password)
{
if (string.IsNullOrEmpty(password))
{
throw new Exception("Введите пароль");
}
if (!APIClient.CheckPassword(password))
{
throw new Exception("Неправильный пароль");
}
Response.Redirect("Index");
}
///
/// Получение списка магазинов
///
///
public IActionResult Index()
{
if (APIClient.Access == false)
{
return Redirect("~/Home/Enter");
}
return View(APIClient.GetRequest>($"api/shop/getshops"));
}
///
/// Получение магазина
///
///
///
///
[HttpGet]
public Tuple? GetShop(int shopId)
{
if (APIClient.Access == false)
{
throw new Exception("Вы как сюда попали? Сюда вход только авторизованным");
}
var result = APIClient.GetRequest>>>($"api/shop/getshop?shopid={shopId}");
if (result == null)
{
return default;
}
string table = "";
for (int i = 0; i < result.Item2.Count; i++)
{
var plane = result.Item2[i].Item1;
var count = result.Item2[i].Item2;
table += "";
table += $"{plane} | ";
table += $"{count} | ";
table += "
";
}
return Tuple.Create(result.Item1, table);
}
///
/// Создать магазин
///
///
public IActionResult Create()
{
if (APIClient.Access == false)
{
return Redirect("~/Home/Enter");
}
return View();
}
///
/// Создать магазин
///
///
///
///
///
///
[HttpPost]
public void Create(string name, string address, DateTime date, int count)
{
if (APIClient.Access == false)
{
throw new Exception("Вы как сюда попали? Сюда вход только авторизованным");
}
if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(address) || count <= 0)
{
throw new Exception("Введите название");
}
if (string.IsNullOrEmpty(address))
{
throw new Exception("Введите адрес");
}
if (count <= 0)
{
throw new Exception("Введите количество");
}
APIClient.PostRequest("api/shop/createshop", new ShopBindingModel
{
ShopName = name,
Address = address,
MaxPlanes = count,
DateOpening = date
});
Response.Redirect("Index");
}
///
/// Обновить магазин
///
///
public IActionResult Update()
{
if (APIClient.Access == false)
{
return Redirect("~/Home/Enter");
}
ViewBag.Shops = APIClient.GetRequest>("api/shop/getshops");
return View();
}
///
/// Обновить магазин
///
///
///
///
///
///
///
[HttpPost]
public void Update(int shop, string name, string address, DateTime date, int count)
{
if (APIClient.Access == false)
{
throw new Exception("Вы как сюда попали? Сюда вход только авторизованным");
}
if (string.IsNullOrEmpty(name))
{
throw new Exception("Название магазина не может быть пустым");
}
if (string.IsNullOrEmpty(address))
{
throw new Exception("Адрес магазина не может быть пустым");
}
if (count <= 0)
{
throw new Exception("Вместимость магазина не может быть меньше нуля");
}
APIClient.PostRequest("api/shop/updateshop", new ShopBindingModel
{
Id = shop,
ShopName = name,
Address = address,
DateOpening = date,
MaxPlanes = count
});
Response.Redirect("Index");
}
///
/// Удалить магазин
///
///
public IActionResult Delete()
{
if (APIClient.Access == false)
{
return Redirect("~/Home/Enter");
}
ViewBag.Shops = APIClient.GetRequest>("api/shop/getshops");
return View();
}
///
/// Удалить магазин
///
///
///
[HttpPost]
public void Delete(int shop)
{
if (APIClient.Access == false)
{
throw new Exception("Вы как сюда попали? Сюда вход только авторизованным");
}
APIClient.PostRequest("api/shop/deleteshop", new ShopBindingModel
{
Id = shop
});
Response.Redirect("Index");
}
///
/// Добавить изделие в магазин
///
///
public IActionResult AddPlane()
{
if (APIClient.Access == false)
{
return Redirect("~/Home/Enter");
}
ViewBag.Shops = APIClient.GetRequest>("api/shop/getshops");
ViewBag.Planes = APIClient.GetRequest>("api/main/getplanelist");
return View();
}
///
/// Добавить изделие в магазин
///
///
///
///
///
[HttpPost]
public void AddPlane(int shop, int plane, int count)
{
if (APIClient.Access == false)
{
throw new Exception("Вы как сюда попали? Сюда вход только авторизованным");
}
APIClient.PostRequest("api/shop/AddPlaneInShop", Tuple.Create(
new ShopSearchModel() { Id = shop },
new PlaneViewModel() { Id = plane },
count
));
Response.Redirect("Index");
}
///
/// Ошибка
///
///
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}