SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomManagerApp/APIClient.cs

51 lines
1.8 KiB
C#
Raw Normal View History

2024-05-12 14:05:30 +04:00
using CarShowroomDataModels.Views;
using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
using System.Xml;
namespace CarShowroomManagerApp
{
2024-05-12 21:44:49 +04:00
public static class ApiClient
2024-05-12 14:05:30 +04:00
{
private static readonly HttpClient _client = new();
public static EmployeeView? Client { get; set; } = null;
public static void Connect(IConfiguration configuration)
{
string? ip = configuration["IPAddress"];
if (ip == null)
{
throw new Exception("RestApi application's IPAddress is undefined");
}
_client.BaseAddress = new Uri(ip);
_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);
}
}
}
}