2024-05-27 00:50:40 +04:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
using System.Net.Http.Headers;
|
|
|
|
|
using System.Text;
|
2024-05-28 19:50:44 +04:00
|
|
|
|
using Azure.Core;
|
|
|
|
|
using UniversityDataModels.Models;
|
|
|
|
|
using UniversityDatabaseImplement.Models;
|
2024-05-27 00:50:40 +04:00
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairClientApp
|
|
|
|
|
{
|
|
|
|
|
public class APIClient
|
|
|
|
|
{
|
|
|
|
|
private static readonly HttpClient _client = new();
|
|
|
|
|
public static UserViewModel? User { get; set; } = null;
|
|
|
|
|
public static void Connect(IConfiguration configuration)
|
|
|
|
|
{
|
|
|
|
|
_client.BaseAddress = new Uri(configuration["IPAddress"]);
|
2024-05-29 02:49:07 +04:00
|
|
|
|
_client.DefaultRequestHeaders.Accept.Clear();
|
2024-05-27 00:50:40 +04:00
|
|
|
|
_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);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
public static async Task<T?> GetRequestPlanOfStudyAsync<T>(string requestUrl)
|
|
|
|
|
{
|
|
|
|
|
var response = await _client.GetAsync(requestUrl);
|
|
|
|
|
var result = await response.Content.ReadAsStringAsync();
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
|
{
|
|
|
|
|
var settings = new JsonSerializerSettings
|
|
|
|
|
{
|
|
|
|
|
Converters = new List<JsonConverter> { new TeacherConverter() }
|
|
|
|
|
};
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(result, settings);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-29 02:49:07 +04:00
|
|
|
|
|
2024-05-30 00:22:02 +04:00
|
|
|
|
public static async Task<T?> GetRequestStudentsAsync<T>(string requestUrl)
|
|
|
|
|
{
|
|
|
|
|
var response = await _client.GetAsync(requestUrl);
|
|
|
|
|
var result = await response.Content.ReadAsStringAsync();
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
|
{
|
|
|
|
|
var settings = new JsonSerializerSettings
|
|
|
|
|
{
|
|
|
|
|
Converters = new List<JsonConverter> { new TeacherConverter() }
|
|
|
|
|
};
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(result, settings);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-29 02:49:07 +04:00
|
|
|
|
public static async Task<T?> GetRequestAsync<T>(string requestUrl)
|
|
|
|
|
{
|
|
|
|
|
var response = await _client.GetAsync(requestUrl);
|
|
|
|
|
var result = await response.Content.ReadAsStringAsync();
|
|
|
|
|
if (response.IsSuccessStatusCode)
|
|
|
|
|
{
|
|
|
|
|
return JsonConvert.DeserializeObject<T>(result);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new Exception(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
public static void PostRequest<T>(string requestUrl, T model)
|
2024-05-27 00:50:40 +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);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
}
|
|
|
|
|
public class TeacherConverter : JsonConverter
|
|
|
|
|
{
|
|
|
|
|
public override bool CanConvert(Type objectType)
|
|
|
|
|
{
|
|
|
|
|
return objectType == typeof(ITeacherModel);
|
|
|
|
|
//return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
|
|
|
|
|
{
|
|
|
|
|
if (reader.TokenType == JsonToken.Null)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
// Пропускаем десериализацию, если уже есть экземпляр Teacher
|
|
|
|
|
if (existingValue is Teacher teacher)
|
|
|
|
|
return teacher;
|
|
|
|
|
|
|
|
|
|
var teach = new Teacher();
|
|
|
|
|
serializer.Populate(reader, teach);
|
|
|
|
|
return teach;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
|
|
|
|
|
{
|
|
|
|
|
if (value == null)
|
|
|
|
|
{
|
|
|
|
|
writer.WriteNull();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var teacher = (Teacher)value;
|
|
|
|
|
serializer.Serialize(writer, teacher);
|
2024-05-27 00:50:40 +04:00
|
|
|
|
}
|
2024-05-28 19:50:44 +04:00
|
|
|
|
}
|
2024-05-27 00:50:40 +04:00
|
|
|
|
}
|