58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
using AutomobilePlantContracts.ViewModel;
|
|
using Newtonsoft.Json;
|
|
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
|
|
namespace ShopClient
|
|
{
|
|
public class APIClient
|
|
{
|
|
private static readonly HttpClient _client = new();
|
|
public static bool Permission { get; private set; } = false;
|
|
private static string Password { get; set; } = "";
|
|
|
|
public static void Connect(IConfiguration configuration)
|
|
{
|
|
_client.BaseAddress = new Uri(configuration["IPAddress"]);
|
|
Password = configuration["PasswordEnter"];
|
|
_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);
|
|
}
|
|
}
|
|
public static bool SetPermission(string pass)
|
|
{
|
|
if (Password.Equals(pass))
|
|
{
|
|
Permission = true;
|
|
}
|
|
return Permission;
|
|
}
|
|
}
|
|
} |