2023-05-18 17:56:47 +04:00
|
|
|
|
using BankYouBankruptContracts.ViewModels.Client.Default;
|
2023-05-16 20:05:59 +04:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Net.Http.Headers;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptСlientApp
|
|
|
|
|
{
|
|
|
|
|
public class APIClient
|
|
|
|
|
{
|
|
|
|
|
private static readonly HttpClient _client = new();
|
|
|
|
|
|
|
|
|
|
public static ClientViewModel? Client { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
public static void Connect(IConfiguration configuration)
|
|
|
|
|
{
|
|
|
|
|
_client.BaseAddress = new Uri(configuration["IPAddress"]);
|
|
|
|
|
_client.DefaultRequestHeaders.Accept.Clear();
|
|
|
|
|
_client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Get-запрос
|
|
|
|
|
public static T? GetRequest<T>(string requestUrl)
|
|
|
|
|
{
|
|
|
|
|
var response = _client.GetAsync(requestUrl);
|
2023-05-18 21:57:14 +04:00
|
|
|
|
|
|
|
|
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
2023-05-16 20:05:59 +04:00
|
|
|
|
|
|
|
|
|
if (response.Result.IsSuccessStatusCode)
|
|
|
|
|
{
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(result);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-19 01:12:27 +04:00
|
|
|
|
//Post-запрос
|
|
|
|
|
public static void PostRequest<T>(string requestUrl, T model)
|
2023-05-16 20:05:59 +04:00
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-19 02:18:52 +04:00
|
|
|
|
|
|
|
|
|
//Post-запрос для получения данных
|
|
|
|
|
public static T? PostRequestReport<T, U>(string requestUrl, U 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)
|
|
|
|
|
{
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(result);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-16 20:05:59 +04:00
|
|
|
|
}
|