mirror of
https://github.com/C9Glax/tranga.git
synced 2025-04-15 21:03:17 +02:00
78 lines
3.0 KiB
C#
78 lines
3.0 KiB
C#
using System.Net;
|
|
using System.Net.Http.Headers;
|
|
using Logging;
|
|
|
|
namespace Tranga.LibraryConnectors;
|
|
|
|
public abstract class LibraryConnector : TBaseObject
|
|
{
|
|
public enum LibraryType : byte
|
|
{
|
|
Komga = 0,
|
|
Kavita = 1
|
|
}
|
|
|
|
// ReSharper disable once UnusedAutoPropertyAccessor.Global
|
|
public LibraryType libraryType { get; }
|
|
public string baseUrl { get; }
|
|
// ReSharper disable once MemberCanBeProtected.Global
|
|
public string auth { get; } //Base64 encoded, if you use your password everywhere, you have problems
|
|
|
|
protected LibraryConnector(string baseUrl, string auth, LibraryType libraryType, TBaseObject clone) : base(clone)
|
|
{
|
|
this.baseUrl = baseUrl;
|
|
this.auth = auth;
|
|
this.libraryType = libraryType;
|
|
}
|
|
public abstract void UpdateLibrary();
|
|
|
|
protected static class NetClient
|
|
{
|
|
public static Stream MakeRequest(string url, string authScheme, string auth, Logger? logger)
|
|
{
|
|
HttpClient client = new();
|
|
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(authScheme, auth);
|
|
|
|
HttpRequestMessage requestMessage = new ()
|
|
{
|
|
Method = HttpMethod.Get,
|
|
RequestUri = new Uri(url)
|
|
};
|
|
HttpResponseMessage response = client.Send(requestMessage);
|
|
logger?.WriteLine("LibraryManager.NetClient", $"GET {url} -> {(int)response.StatusCode}: {response.ReasonPhrase}");
|
|
|
|
if(response.StatusCode is HttpStatusCode.Unauthorized && response.RequestMessage!.RequestUri!.AbsoluteUri != url)
|
|
return MakeRequest(response.RequestMessage!.RequestUri!.AbsoluteUri, authScheme, auth, logger);
|
|
else if (response.IsSuccessStatusCode)
|
|
return response.Content.ReadAsStream();
|
|
else
|
|
return Stream.Null;
|
|
}
|
|
|
|
public static bool MakePost(string url, string authScheme, string auth, Logger? logger)
|
|
{
|
|
HttpClient client = new()
|
|
{
|
|
DefaultRequestHeaders =
|
|
{
|
|
{ "Accept", "application/json" },
|
|
{ "Authorization", new AuthenticationHeaderValue(authScheme, auth).ToString() }
|
|
}
|
|
};
|
|
HttpRequestMessage requestMessage = new ()
|
|
{
|
|
Method = HttpMethod.Post,
|
|
RequestUri = new Uri(url)
|
|
};
|
|
HttpResponseMessage response = client.Send(requestMessage);
|
|
logger?.WriteLine("LibraryManager.NetClient", $"POST {url} -> {(int)response.StatusCode}: {response.ReasonPhrase}");
|
|
|
|
if(response.StatusCode is HttpStatusCode.Unauthorized && response.RequestMessage!.RequestUri!.AbsoluteUri != url)
|
|
return MakePost(response.RequestMessage!.RequestUri!.AbsoluteUri, authScheme, auth, logger);
|
|
else if (response.IsSuccessStatusCode)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|
|
} |