PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopShopApp/APIClient.cs
2024-06-17 23:29:35 +04:00

60 lines
1.8 KiB
C#

using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
namespace CarRepairShopShopApp
{
public class APIClient
{
private static readonly HttpClient _client = new();
private static string _password = string.Empty;
public static bool IsAuthenticated { get; private set; }
public static bool Authentication(string password)
{
if (password == _password)
{
IsAuthenticated = true;
}
return IsAuthenticated;
}
public static void Connect(IConfiguration configuration)
{
_password = configuration["Password"];
_client.BaseAddress = new Uri(configuration["IPAddress"]);
_client.DefaultRequestHeaders.Accept.Clear();
_client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
}
public static T? GetRequest<T>(string requestUrl)
{
var response = _client.GetAsync(requestUrl);
var result = response.Result.Content.ReadAsStringAsync().Result;
if (response.Result.IsSuccessStatusCode)
{
return JsonConvert.DeserializeObject<T>(result);
}
else
{
throw new Exception(result);
}
}
public static void PostRequest<T>(string requestUrl, T model)
{
var json = JsonConvert.SerializeObject(model);
var data = new StringContent(json, Encoding.UTF8, "application/json");
var response = _client.PostAsync(requestUrl, data);
var result = response.Result.Content.ReadAsStringAsync().Result;
if (!response.Result.IsSuccessStatusCode)
{
throw new Exception(result);
}
}
}
}