152 lines
4.8 KiB
C#
152 lines
4.8 KiB
C#
using Logging;
|
|
using Newtonsoft.Json;
|
|
using System.Net.Http.Headers;
|
|
using System.Net.Http.Json;
|
|
using Utils;
|
|
|
|
namespace DistTestCore
|
|
{
|
|
public class Http
|
|
{
|
|
private readonly BaseLog log;
|
|
private readonly ITimeSet timeSet;
|
|
private readonly Address address;
|
|
private readonly string baseUrl;
|
|
private readonly string? logAlias;
|
|
private readonly TimeSpan? timeoutOverride;
|
|
|
|
public Http(BaseLog log, ITimeSet timeSet, Address address, string baseUrl, string? logAlias = null, TimeSpan? timeoutOverride = null)
|
|
{
|
|
this.log = log;
|
|
this.timeSet = timeSet;
|
|
this.address = address;
|
|
this.baseUrl = baseUrl;
|
|
this.logAlias = logAlias;
|
|
this.timeoutOverride = timeoutOverride;
|
|
if (!this.baseUrl.StartsWith("/")) this.baseUrl = "/" + this.baseUrl;
|
|
if (!this.baseUrl.EndsWith("/")) this.baseUrl += "/";
|
|
}
|
|
|
|
public string HttpGetString(string route)
|
|
{
|
|
return Retry(() =>
|
|
{
|
|
using var client = GetClient();
|
|
var url = GetUrl() + route;
|
|
Log(url, "");
|
|
var result = Time.Wait(client.GetAsync(url));
|
|
var str = Time.Wait(result.Content.ReadAsStringAsync());
|
|
Log(url, str);
|
|
return str; ;
|
|
}, $"HTTP-GET:{route}");
|
|
}
|
|
|
|
public T HttpGetJson<T>(string route)
|
|
{
|
|
var json = HttpGetString(route);
|
|
return TryJsonDeserialize<T>(json);
|
|
}
|
|
|
|
public TResponse HttpPostJson<TRequest, TResponse>(string route, TRequest body)
|
|
{
|
|
var json = HttpPostJson(route, body);
|
|
return TryJsonDeserialize<TResponse>(json);
|
|
}
|
|
|
|
public string HttpPostJson<TRequest>(string route, TRequest body)
|
|
{
|
|
return Retry(() =>
|
|
{
|
|
using var client = GetClient();
|
|
var url = GetUrl() + route;
|
|
using var content = JsonContent.Create(body);
|
|
Log(url, JsonConvert.SerializeObject(body));
|
|
var result = Time.Wait(client.PostAsync(url, content));
|
|
var str = Time.Wait(result.Content.ReadAsStringAsync());
|
|
Log(url, str);
|
|
return str;
|
|
}, $"HTTP-POST-JSON: {route}");
|
|
}
|
|
|
|
public string HttpPostStream(string route, Stream stream)
|
|
{
|
|
return Retry(() =>
|
|
{
|
|
using var client = GetClient();
|
|
var url = GetUrl() + route;
|
|
Log(url, "~ STREAM ~");
|
|
var content = new StreamContent(stream);
|
|
content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
|
|
var response = Time.Wait(client.PostAsync(url, content));
|
|
var str =Time.Wait(response.Content.ReadAsStringAsync());
|
|
Log(url, str);
|
|
return str;
|
|
}, $"HTTP-POST-STREAM: {route}");
|
|
}
|
|
|
|
public Stream HttpGetStream(string route)
|
|
{
|
|
return Retry(() =>
|
|
{
|
|
var client = GetClient();
|
|
var url = GetUrl() + route;
|
|
Log(url, "~ STREAM ~");
|
|
return Time.Wait(client.GetStreamAsync(url));
|
|
}, $"HTTP-GET-STREAM: {route}");
|
|
}
|
|
|
|
public T TryJsonDeserialize<T>(string json)
|
|
{
|
|
try
|
|
{
|
|
return JsonConvert.DeserializeObject<T>(json)!;
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
var msg = $"Failed to deserialize JSON: '{json}' with exception: {exception}";
|
|
throw new InvalidOperationException(msg, exception);
|
|
}
|
|
}
|
|
|
|
private string GetUrl()
|
|
{
|
|
return $"{address.Host}:{address.Port}{baseUrl}";
|
|
}
|
|
|
|
private void Log(string url, string message)
|
|
{
|
|
if (logAlias != null)
|
|
{
|
|
log.Debug($"({logAlias})({url}) = '{message}'", 3);
|
|
}
|
|
else
|
|
{
|
|
log.Debug($"({url}) = '{message}'", 3);
|
|
}
|
|
}
|
|
|
|
private T Retry<T>(Func<T> operation, string description)
|
|
{
|
|
return Time.Retry(operation, GetTimeout(), timeSet.HttpCallRetryDelay(), description);
|
|
}
|
|
|
|
private HttpClient GetClient()
|
|
{
|
|
return GetClient(GetTimeout());
|
|
}
|
|
|
|
private TimeSpan GetTimeout()
|
|
{
|
|
if (timeoutOverride.HasValue) return timeoutOverride.Value;
|
|
return timeSet.HttpCallTimeout();
|
|
}
|
|
|
|
private HttpClient GetClient(TimeSpan timeout)
|
|
{
|
|
var client = new HttpClient();
|
|
client.Timeout = timeout;
|
|
return client;
|
|
}
|
|
}
|
|
}
|