83 lines
2.0 KiB
C#
83 lines
2.0 KiB
C#
using Azure;
|
|
using BankContracts.ViewModels.Cashier.ViewModels;
|
|
using Newtonsoft.Json;
|
|
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
|
|
namespace BankCashierApp
|
|
{
|
|
public class APICashier
|
|
{
|
|
private static readonly HttpClient _cashier = new();
|
|
|
|
public static CashierViewModel? Cashier { get; set; } = null;
|
|
|
|
public static string ErrorMessage = string.Empty;
|
|
|
|
public static void Connect(IConfiguration configuration)
|
|
{
|
|
_cashier.BaseAddress = new Uri(configuration["IPAddress"]);
|
|
_cashier.DefaultRequestHeaders.Accept.Clear();
|
|
_cashier.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
}
|
|
|
|
public static void SetErrorMessage(string error)
|
|
{
|
|
ErrorMessage = error;
|
|
}
|
|
|
|
// Get-запрос
|
|
public static T? GetRequest<T>(string requestUrl)
|
|
{
|
|
var response = _cashier.GetAsync(requestUrl);
|
|
|
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
|
|
|
if (response.Result.IsSuccessStatusCode)
|
|
{
|
|
return JsonConvert.DeserializeObject<T>(result);
|
|
}
|
|
else
|
|
{
|
|
throw new Exception(result);
|
|
}
|
|
}
|
|
|
|
// Post-запрос
|
|
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 = _cashier.PostAsync(requestUrl, data);
|
|
|
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
|
|
|
if (!response.Result.IsSuccessStatusCode)
|
|
{
|
|
throw new Exception(result);
|
|
}
|
|
}
|
|
|
|
// Post-запрос для получения данных
|
|
public static T? PostRequetReport<T, U>(string requestUrl, U model)
|
|
{
|
|
var json = JsonConvert.SerializeObject(model);
|
|
var data = new StringContent(json, Encoding.UTF8, "application/json");
|
|
|
|
var response = _cashier.PostAsync(requestUrl, data);
|
|
|
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
|
|
|
if (response.Result.IsSuccessStatusCode)
|
|
{
|
|
return JsonConvert.DeserializeObject<T>(result);
|
|
}
|
|
else
|
|
{
|
|
throw new Exception(result);
|
|
}
|
|
}
|
|
}
|
|
}
|