using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
namespace AircraftPlantShopApp
{
///
/// API-клиент
///
public class APIClient
{
///
/// Http-клиент
///
private static readonly HttpClient _client = new();
///
/// Пароль
///
public static string Password { get; private set; } = string.Empty;
///
/// Доступ
///
public static bool Access { get; private set; } = false;
///
/// Конструктор
///
///
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"));
}
///
/// Get-запрос
///
///
///
///
///
public static T? GetRequest(string requestUrl)
{
var response = _client.GetAsync(requestUrl);
var result = response.Result.Content.ReadAsStringAsync().Result;
if (response.Result.IsSuccessStatusCode)
{
return JsonConvert.DeserializeObject(result);
}
else
{
throw new Exception(result);
}
}
///
/// Post-запрос
///
///
///
///
///
public static void PostRequest(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);
}
}
///
/// Проверка доступа
///
///
///
public static bool CheckPassword(string password)
{
return APIClient.Access = password == Password;
}
}
}