LabWork05_Hard: Фикс авторизации

This commit is contained in:
Safgerd 2023-04-24 10:22:46 +04:00
parent 4f91314c47
commit f3562db8c4
2 changed files with 11 additions and 7 deletions

View File

@ -7,8 +7,17 @@ namespace AutomobilePlantShopApp
public static class APIClient
{
private static readonly HttpClient _client = new();
public static bool isAuth { get; set; } = false;
public static bool isAuth { get; private set; } = false;
public static string ConfigPassword { get; private set; } = string.Empty;
public static bool Login(string password)
{
if (string.IsNullOrEmpty(password))
{
throw new Exception("Введите пароль");
}
return isAuth = password.Equals(ConfigPassword);
}
public static void Connect(IConfiguration configuration)
{
ConfigPassword = configuration["Password"];

View File

@ -45,15 +45,10 @@ namespace AutomobilePlantShopApp.Controllers
[HttpPost]
public void Enter(string password)
{
if (string.IsNullOrEmpty(password))
{
throw new Exception("Введите пароль");
}
if (!password.Equals(APIClient.ConfigPassword))
if (!APIClient.Login(password))
{
throw new Exception("Неверный пароль");
}
APIClient.isAuth = true;
Response.Redirect("Index");
}
[HttpGet]