PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopsApp/ApiClient.cs

55 lines
1.5 KiB
C#
Raw Normal View History

2024-04-14 14:57:27 +04:00
using IceCreamShopContracts.ViewModels;
using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
namespace IceCreamShopsApp
{
public static class ApiClient
{
private static readonly HttpClient _client = new();
2024-04-16 12:30:25 +04:00
private static string password = string.Empty;
2024-04-14 14:57:27 +04:00
public static bool Access { get; private set; } = false;
public static void Connect(IConfiguration configuration)
{
2024-04-16 12:30:25 +04:00
password = configuration["Password"];
2024-04-14 14:57:27 +04:00
_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);
}
}
2024-04-16 12:30:25 +04:00
public static bool CheckPassword(string _password)
2024-04-14 14:57:27 +04:00
{
2024-04-16 12:30:25 +04:00
return Access = (_password == password);
2024-04-14 14:57:27 +04:00
}
}
}