763 lines
36 KiB
C#
763 lines
36 KiB
C#
using System.Net;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using Newtonsoft.Json;
|
|
using Tranga.Jobs;
|
|
using Tranga.LibraryConnectors;
|
|
using Tranga.MangaConnectors;
|
|
using Tranga.NotificationConnectors;
|
|
|
|
namespace Tranga;
|
|
|
|
public class Server : GlobalBase
|
|
{
|
|
private readonly HttpListener _listener = new ();
|
|
private readonly Tranga _parent;
|
|
|
|
public Server(Tranga parent) : base(parent)
|
|
{
|
|
this._parent = parent;
|
|
if(RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
|
this._listener.Prefixes.Add($"http://*:{TrangaSettings.apiPortNumber}/");
|
|
else
|
|
this._listener.Prefixes.Add($"http://localhost:{TrangaSettings.apiPortNumber}/");
|
|
Thread listenThread = new (Listen);
|
|
listenThread.Start();
|
|
Thread watchThread = new(WatchRunning);
|
|
watchThread.Start();
|
|
}
|
|
|
|
private void WatchRunning()
|
|
{
|
|
while(_parent.keepRunning)
|
|
Thread.Sleep(1000);
|
|
this._listener.Close();
|
|
}
|
|
|
|
private void Listen()
|
|
{
|
|
this._listener.Start();
|
|
foreach(string prefix in this._listener.Prefixes)
|
|
Log($"Listening on {prefix}");
|
|
while (this._listener.IsListening && _parent.keepRunning)
|
|
{
|
|
try
|
|
{
|
|
HttpListenerContext context = this._listener.GetContext();
|
|
//Log($"{context.Request.HttpMethod} {context.Request.Url} {context.Request.UserAgent}");
|
|
Task t = new(() =>
|
|
{
|
|
HandleRequest(context);
|
|
});
|
|
t.Start();
|
|
}
|
|
catch (HttpListenerException)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
private void HandleRequest(HttpListenerContext context)
|
|
{
|
|
HttpListenerRequest request = context.Request;
|
|
HttpListenerResponse response = context.Response;
|
|
if (request.Url!.LocalPath.Contains("favicon"))
|
|
{
|
|
SendResponse(HttpStatusCode.NoContent, response);
|
|
return;
|
|
}
|
|
|
|
switch (request.HttpMethod)
|
|
{
|
|
case "GET":
|
|
HandleGet(request, response);
|
|
break;
|
|
case "POST":
|
|
HandlePost(request, response);
|
|
break;
|
|
case "DELETE":
|
|
HandleDelete(request, response);
|
|
break;
|
|
case "OPTIONS":
|
|
SendResponse(HttpStatusCode.OK, context.Response);
|
|
break;
|
|
default:
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private Dictionary<string, string> GetRequestVariables(string query)
|
|
{
|
|
Dictionary<string, string> ret = new();
|
|
Regex queryRex = new (@"\?{1}&?([A-z0-9-=]+=[A-z0-9-=]+)+(&[A-z0-9-=]+=[A-z0-9-=]+)*");
|
|
if (!queryRex.IsMatch(query))
|
|
return ret;
|
|
query = query.Substring(1);
|
|
foreach (string keyValuePair in query.Split('&').Where(str => str.Length >= 3))
|
|
{
|
|
string var = keyValuePair.Split('=')[0];
|
|
string val = Regex.Replace(keyValuePair.Substring(var.Length + 1), "%20", " ");
|
|
val = Regex.Replace(val, "%[0-9]{2}", "");
|
|
ret.Add(var, val);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
private void HandleGet(HttpListenerRequest request, HttpListenerResponse response)
|
|
{
|
|
Dictionary<string, string> requestVariables = GetRequestVariables(request.Url!.Query);
|
|
string? connectorName, jobId, internalId;
|
|
MangaConnector? connector;
|
|
Manga? manga;
|
|
string path = Regex.Match(request.Url!.LocalPath, @"[A-z0-9]+(\/[A-z0-9]+)*").Value;
|
|
switch (path)
|
|
{
|
|
case "Connectors":
|
|
SendResponse(HttpStatusCode.OK, response, _parent.GetConnectors().Select(con => con.name).ToArray());
|
|
break;
|
|
case "Manga/Cover":
|
|
if (!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
!_parent.TryGetPublicationById(internalId, out manga))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
string filePath = manga?.coverFileNameInCache ?? "";
|
|
if (File.Exists(filePath))
|
|
{
|
|
FileStream coverStream = new(filePath, FileMode.Open);
|
|
SendResponse(HttpStatusCode.OK, response, coverStream);
|
|
}
|
|
else
|
|
{
|
|
SendResponse(HttpStatusCode.NotFound, response);
|
|
}
|
|
break;
|
|
case "Manga/FromConnector":
|
|
requestVariables.TryGetValue("title", out string? title);
|
|
requestVariables.TryGetValue("url", out string? url);
|
|
if (!requestVariables.TryGetValue("connector", out connectorName) ||
|
|
!_parent.TryGetConnector(connectorName, out connector) ||
|
|
(title is null && url is null))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
if (url is not null)
|
|
{
|
|
HashSet<Manga> ret = new();
|
|
manga = connector!.GetMangaFromUrl(url);
|
|
if (manga is not null)
|
|
ret.Add((Manga)manga);
|
|
SendResponse(HttpStatusCode.OK, response, ret);
|
|
}else
|
|
SendResponse(HttpStatusCode.OK, response, connector!.GetManga(title!));
|
|
break;
|
|
case "Manga/Chapters":
|
|
if(!requestVariables.TryGetValue("connector", out connectorName) ||
|
|
!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
!_parent.TryGetConnector(connectorName, out connector) ||
|
|
!_parent.TryGetPublicationById(internalId, out manga))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
requestVariables.TryGetValue("translatedLanguage", out string? translatedLanguage);
|
|
SendResponse(HttpStatusCode.OK, response, connector!.GetChapters((Manga)manga!, translatedLanguage??"en"));
|
|
break;
|
|
case "Jobs":
|
|
if (!requestVariables.TryGetValue("jobId", out jobId))
|
|
{
|
|
if(!_parent.jobBoss.jobs.Any(jjob => jjob.id == jobId))
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
else
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.First(jjob => jjob.id == jobId));
|
|
break;
|
|
}
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs);
|
|
break;
|
|
case "Jobs/Progress":
|
|
if (requestVariables.TryGetValue("jobId", out jobId))
|
|
{
|
|
if(!_parent.jobBoss.jobs.Any(jjob => jjob.id == jobId))
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
else
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.First(jjob => jjob.id == jobId).progressToken);
|
|
break;
|
|
}
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.Select(jjob => jjob.progressToken));
|
|
break;
|
|
case "Jobs/Running":
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.Where(jjob => jjob.progressToken.state is ProgressToken.State.Running));
|
|
break;
|
|
case "Jobs/Waiting":
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.Where(jjob => jjob.progressToken.state is ProgressToken.State.Standby).OrderBy(jjob => jjob.nextExecution));
|
|
break;
|
|
case "Jobs/MonitorJobs":
|
|
SendResponse(HttpStatusCode.OK, response, _parent.jobBoss.jobs.Where(jjob => jjob is DownloadNewChapters).OrderBy(jjob => ((DownloadNewChapters)jjob).manga.sortName));
|
|
break;
|
|
case "Settings":
|
|
SendResponse(HttpStatusCode.OK, response, TrangaSettings.AsJObject());
|
|
break;
|
|
case "Settings/userAgent":
|
|
SendResponse(HttpStatusCode.OK, response, TrangaSettings.userAgent);
|
|
break;
|
|
case "Settings/customRequestLimit":
|
|
SendResponse(HttpStatusCode.OK, response, TrangaSettings.requestLimits);
|
|
break;
|
|
case "Settings/AprilFoolsMode":
|
|
SendResponse(HttpStatusCode.OK, response, TrangaSettings.aprilFoolsMode);
|
|
break;
|
|
case "NotificationConnectors":
|
|
SendResponse(HttpStatusCode.OK, response, notificationConnectors);
|
|
break;
|
|
case "NotificationConnectors/Types":
|
|
SendResponse(HttpStatusCode.OK, response,
|
|
Enum.GetValues<NotificationConnector.NotificationConnectorType>().Select(nc => new KeyValuePair<byte, string?>((byte)nc, Enum.GetName(nc))));
|
|
break;
|
|
case "LibraryConnectors":
|
|
SendResponse(HttpStatusCode.OK, response, libraryConnectors);
|
|
break;
|
|
case "LibraryConnectors/Types":
|
|
SendResponse(HttpStatusCode.OK, response,
|
|
Enum.GetValues<LibraryConnector.LibraryType>().Select(lc => new KeyValuePair<byte, string?>((byte)lc, Enum.GetName(lc))));
|
|
break;
|
|
case "Ping":
|
|
SendResponse(HttpStatusCode.OK, response, "Pong");
|
|
break;
|
|
case "LogMessages":
|
|
if (logger is null || !File.Exists(logger?.logFilePath))
|
|
{
|
|
SendResponse(HttpStatusCode.NotFound, response);
|
|
break;
|
|
}
|
|
|
|
if (requestVariables.TryGetValue("count", out string? count))
|
|
{
|
|
try
|
|
{
|
|
uint messageCount = uint.Parse(count);
|
|
SendResponse(HttpStatusCode.OK, response, logger.Tail(messageCount));
|
|
}
|
|
catch (FormatException f)
|
|
{
|
|
SendResponse(HttpStatusCode.InternalServerError, response, f);
|
|
}
|
|
}else
|
|
SendResponse(HttpStatusCode.OK, response, logger.GetLog());
|
|
break;
|
|
case "LogFile":
|
|
if (logger is null || !File.Exists(logger?.logFilePath))
|
|
{
|
|
SendResponse(HttpStatusCode.NotFound, response);
|
|
break;
|
|
}
|
|
|
|
string logDir = new FileInfo(logger.logFilePath).DirectoryName!;
|
|
string tmpFilePath = Path.Join(logDir, "Tranga.log");
|
|
File.Copy(logger.logFilePath, tmpFilePath);
|
|
SendResponse(HttpStatusCode.OK, response, new FileStream(tmpFilePath, FileMode.Open));
|
|
File.Delete(tmpFilePath);
|
|
break;
|
|
default:
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void HandlePost(HttpListenerRequest request, HttpListenerResponse response)
|
|
{
|
|
Dictionary<string, string> requestVariables = GetRequestVariables(request.Url!.Query);
|
|
string? connectorName, internalId, jobId, chapterNumStr, customFolderName, translatedLanguage, notificationConnectorStr, libraryConnectorStr;
|
|
MangaConnector? connector;
|
|
Manga? tmpManga;
|
|
Manga manga;
|
|
Job? job;
|
|
NotificationConnector.NotificationConnectorType notificationConnectorType;
|
|
LibraryConnector.LibraryType libraryConnectorType;
|
|
string path = Regex.Match(request.Url!.LocalPath, @"[A-z0-9]+(\/[A-z0-9]+)*").Value;
|
|
switch (path)
|
|
{
|
|
case "Manga":
|
|
if(!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
!_parent.TryGetPublicationById(internalId, out tmpManga))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
manga = (Manga)tmpManga!;
|
|
SendResponse(HttpStatusCode.OK, response, manga);
|
|
break;
|
|
case "Jobs/MonitorManga":
|
|
if(!requestVariables.TryGetValue("connector", out connectorName) ||
|
|
!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
!requestVariables.TryGetValue("interval", out string? intervalStr) ||
|
|
!_parent.TryGetConnector(connectorName, out connector)||
|
|
!_parent.TryGetPublicationById(internalId, out tmpManga) ||
|
|
!TimeSpan.TryParse(intervalStr, out TimeSpan interval))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
manga = (Manga)tmpManga!;
|
|
|
|
if (requestVariables.TryGetValue("ignoreBelowChapterNum", out chapterNumStr))
|
|
{
|
|
if (!float.TryParse(chapterNumStr, numberFormatDecimalPoint, out float chapterNum))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
manga.ignoreChaptersBelow = chapterNum;
|
|
}
|
|
|
|
if (requestVariables.TryGetValue("customFolderName", out customFolderName))
|
|
manga.MovePublicationFolder(TrangaSettings.downloadLocation, customFolderName);
|
|
requestVariables.TryGetValue("translatedLanguage", out translatedLanguage);
|
|
|
|
_parent.jobBoss.AddJob(new DownloadNewChapters(this, connector!, manga, true, interval, translatedLanguage: translatedLanguage??"en"));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Jobs/DownloadNewChapters":
|
|
if(!requestVariables.TryGetValue("connector", out connectorName) ||
|
|
!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
!_parent.TryGetConnector(connectorName, out connector)||
|
|
!_parent.TryGetPublicationById(internalId, out tmpManga))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
manga = (Manga)tmpManga!;
|
|
|
|
if (requestVariables.TryGetValue("ignoreBelowChapterNum", out chapterNumStr))
|
|
{
|
|
if (!float.TryParse(chapterNumStr, numberFormatDecimalPoint, out float chapterNum))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
manga.ignoreChaptersBelow = chapterNum;
|
|
}
|
|
|
|
if (requestVariables.TryGetValue("customFolderName", out customFolderName))
|
|
manga.MovePublicationFolder(TrangaSettings.downloadLocation, customFolderName);
|
|
requestVariables.TryGetValue("translatedLanguage", out translatedLanguage);
|
|
|
|
_parent.jobBoss.AddJob(new DownloadNewChapters(this, connector!, manga, false, translatedLanguage: translatedLanguage??"en"));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Jobs/UpdateMetadata":
|
|
if (!requestVariables.TryGetValue("internalId", out internalId))
|
|
{
|
|
foreach (Job pJob in _parent.jobBoss.jobs.Where(possibleDncJob =>
|
|
possibleDncJob.jobType is Job.JobType.DownloadNewChaptersJob).ToArray())//ToArray to avoid modyifying while adding new jobs
|
|
{
|
|
DownloadNewChapters dncJob = pJob as DownloadNewChapters ??
|
|
throw new Exception("Has to be DownloadNewChapters Job");
|
|
_parent.jobBoss.AddJob(new UpdateMetadata(this, dncJob.mangaConnector, dncJob.manga));
|
|
}
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}
|
|
else
|
|
{
|
|
Job[] possibleDncJobs = _parent.jobBoss.GetJobsLike(internalId: internalId).ToArray();
|
|
switch (possibleDncJobs.Length)
|
|
{
|
|
case <1: SendResponse(HttpStatusCode.BadRequest, response, "Could not find matching release"); break;
|
|
case >1: SendResponse(HttpStatusCode.BadRequest, response, "Multiple releases??"); break;
|
|
default:
|
|
DownloadNewChapters dncJob = possibleDncJobs[0] as DownloadNewChapters ??
|
|
throw new Exception("Has to be DownloadNewChapters Job");
|
|
_parent.jobBoss.AddJob(new UpdateMetadata(this, dncJob.mangaConnector, dncJob.manga));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case "Jobs/StartNow":
|
|
if (!requestVariables.TryGetValue("jobId", out jobId) ||
|
|
!_parent.jobBoss.TryGetJobById(jobId, out job))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
_parent.jobBoss.AddJobToQueue(job!);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Jobs/Cancel":
|
|
if (!requestVariables.TryGetValue("jobId", out jobId) ||
|
|
!_parent.jobBoss.TryGetJobById(jobId, out job))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
job!.Cancel();
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Settings/UpdateDownloadLocation":
|
|
if (!requestVariables.TryGetValue("downloadLocation", out string? downloadLocation) ||
|
|
!requestVariables.TryGetValue("moveFiles", out string? moveFilesStr) ||
|
|
!bool.TryParse(moveFilesStr, out bool moveFiles))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
TrangaSettings.UpdateDownloadLocation(downloadLocation, moveFiles);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Settings/AprilFoolsMode":
|
|
if (!requestVariables.TryGetValue("enabled", out string? aprilFoolsModeEnabledStr) ||
|
|
!bool.TryParse(aprilFoolsModeEnabledStr, out bool aprilFoolsModeEnabled))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
TrangaSettings.UpdateAprilFoolsMode(aprilFoolsModeEnabled);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
/*case "Settings/UpdateWorkingDirectory":
|
|
if (!requestVariables.TryGetValue("workingDirectory", out string? workingDirectory))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
settings.UpdateWorkingDirectory(workingDirectory);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;*/
|
|
case "Settings/userAgent":
|
|
if(!requestVariables.TryGetValue("userAgent", out string? customUserAgent))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
TrangaSettings.UpdateUserAgent(customUserAgent);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Settings/userAgent/Reset":
|
|
TrangaSettings.UpdateUserAgent(null);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Settings/customRequestLimit":
|
|
if (!requestVariables.TryGetValue("requestType", out string? requestTypeStr) ||
|
|
!requestVariables.TryGetValue("requestsPerMinute", out string? requestsPerMinuteStr) ||
|
|
!Enum.TryParse(requestTypeStr, out RequestType requestType) ||
|
|
!int.TryParse(requestsPerMinuteStr, out int requestsPerMinute))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
TrangaSettings.UpdateRateLimit(requestType, requestsPerMinute);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Settings/customRequestLimit/Reset":
|
|
TrangaSettings.ResetRateLimits();
|
|
break;
|
|
case "NotificationConnectors/Update":
|
|
if (!requestVariables.TryGetValue("notificationConnector", out notificationConnectorStr) ||
|
|
!Enum.TryParse(notificationConnectorStr, out notificationConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
if (notificationConnectorType is NotificationConnector.NotificationConnectorType.Gotify)
|
|
{
|
|
if (!requestVariables.TryGetValue("gotifyUrl", out string? gotifyUrl) ||
|
|
!requestVariables.TryGetValue("gotifyAppToken", out string? gotifyAppToken))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
AddNotificationConnector(new Gotify(this, gotifyUrl, gotifyAppToken));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}else if (notificationConnectorType is NotificationConnector.NotificationConnectorType.LunaSea)
|
|
{
|
|
if (!requestVariables.TryGetValue("lunaseaWebhook", out string? lunaseaWebhook))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
AddNotificationConnector(new LunaSea(this, lunaseaWebhook));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}else if (notificationConnectorType is NotificationConnector.NotificationConnectorType.Ntfy)
|
|
{
|
|
if (!requestVariables.TryGetValue("ntfyUrl", out string? ntfyUrl) ||
|
|
!requestVariables.TryGetValue("ntfyUser", out string? ntfyUser)||
|
|
!requestVariables.TryGetValue("ntfyPass", out string? ntfyPass))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
AddNotificationConnector(new Ntfy(this, ntfyUrl, ntfyUser, ntfyPass, null));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}
|
|
else
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
}
|
|
break;
|
|
case "NotificationConnectors/Test":
|
|
NotificationConnector notificationConnector;
|
|
if (!requestVariables.TryGetValue("notificationConnector", out notificationConnectorStr) ||
|
|
!Enum.TryParse(notificationConnectorStr, out notificationConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
if (notificationConnectorType is NotificationConnector.NotificationConnectorType.Gotify)
|
|
{
|
|
if (!requestVariables.TryGetValue("gotifyUrl", out string? gotifyUrl) ||
|
|
!requestVariables.TryGetValue("gotifyAppToken", out string? gotifyAppToken))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
notificationConnector = new Gotify(this, gotifyUrl, gotifyAppToken);
|
|
}else if (notificationConnectorType is NotificationConnector.NotificationConnectorType.LunaSea)
|
|
{
|
|
if (!requestVariables.TryGetValue("lunaseaWebhook", out string? lunaseaWebhook))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
notificationConnector = new LunaSea(this, lunaseaWebhook);
|
|
}else if (notificationConnectorType is NotificationConnector.NotificationConnectorType.Ntfy)
|
|
{
|
|
if (!requestVariables.TryGetValue("ntfyUrl", out string? ntfyUrl) ||
|
|
!requestVariables.TryGetValue("ntfyUser", out string? ntfyUser)||
|
|
!requestVariables.TryGetValue("ntfyPass", out string? ntfyPass))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
notificationConnector = new Ntfy(this, ntfyUrl, ntfyUser, ntfyPass, null);
|
|
}
|
|
else
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
notificationConnector.SendNotification("Tranga Test", "This is Test-Notification.");
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "NotificationConnectors/Reset":
|
|
if (!requestVariables.TryGetValue("notificationConnector", out notificationConnectorStr) ||
|
|
!Enum.TryParse(notificationConnectorStr, out notificationConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
DeleteNotificationConnector(notificationConnectorType);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "LibraryConnectors/Update":
|
|
if (!requestVariables.TryGetValue("libraryConnector", out libraryConnectorStr) ||
|
|
!Enum.TryParse(libraryConnectorStr, out libraryConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
if (libraryConnectorType is LibraryConnector.LibraryType.Kavita)
|
|
{
|
|
if (!requestVariables.TryGetValue("kavitaUrl", out string? kavitaUrl) ||
|
|
!requestVariables.TryGetValue("kavitaUsername", out string? kavitaUsername) ||
|
|
!requestVariables.TryGetValue("kavitaPassword", out string? kavitaPassword))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
AddLibraryConnector(new Kavita(this, kavitaUrl, kavitaUsername, kavitaPassword));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}else if (libraryConnectorType is LibraryConnector.LibraryType.Komga)
|
|
{
|
|
if (!requestVariables.TryGetValue("komgaUrl", out string? komgaUrl) ||
|
|
!requestVariables.TryGetValue("komgaAuth", out string? komgaAuth))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
AddLibraryConnector(new Komga(this, komgaUrl, komgaAuth));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
}
|
|
else
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
}
|
|
break;
|
|
case "LibraryConnectors/Test":
|
|
LibraryConnector libraryConnector;
|
|
if (!requestVariables.TryGetValue("libraryConnector", out libraryConnectorStr) ||
|
|
!Enum.TryParse(libraryConnectorStr, out libraryConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
|
|
if (libraryConnectorType is LibraryConnector.LibraryType.Kavita)
|
|
{
|
|
if (!requestVariables.TryGetValue("kavitaUrl", out string? kavitaUrl) ||
|
|
!requestVariables.TryGetValue("kavitaUsername", out string? kavitaUsername) ||
|
|
!requestVariables.TryGetValue("kavitaPassword", out string? kavitaPassword))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
libraryConnector = new Kavita(this, kavitaUrl, kavitaUsername, kavitaPassword);
|
|
}else if (libraryConnectorType is LibraryConnector.LibraryType.Komga)
|
|
{
|
|
if (!requestVariables.TryGetValue("komgaUrl", out string? komgaUrl) ||
|
|
!requestVariables.TryGetValue("komgaAuth", out string? komgaAuth))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
libraryConnector = new Komga(this, komgaUrl, komgaAuth);
|
|
}
|
|
else
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
libraryConnector.UpdateLibrary();
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "LibraryConnectors/Reset":
|
|
if (!requestVariables.TryGetValue("libraryConnector", out libraryConnectorStr) ||
|
|
!Enum.TryParse(libraryConnectorStr, out libraryConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
DeleteLibraryConnector(libraryConnectorType);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
default:
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void HandleDelete(HttpListenerRequest request, HttpListenerResponse response)
|
|
{
|
|
Dictionary<string, string> requestVariables = GetRequestVariables(request.Url!.Query);
|
|
string? connectorName, internalId;
|
|
MangaConnector connector;
|
|
Manga manga;
|
|
string path = Regex.Match(request.Url!.LocalPath, @"[A-z0-9]+(\/[A-z0-9]+)*").Value;
|
|
switch (path)
|
|
{
|
|
case "Jobs":
|
|
if (!requestVariables.TryGetValue("jobId", out string? jobId) ||
|
|
!_parent.jobBoss.TryGetJobById(jobId, out Job? job))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
_parent.jobBoss.RemoveJob(job!);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "Jobs/DownloadNewChapters":
|
|
if(!requestVariables.TryGetValue("connector", out connectorName) ||
|
|
!requestVariables.TryGetValue("internalId", out internalId) ||
|
|
_parent.GetConnector(connectorName) is null ||
|
|
_parent.GetPublicationById(internalId) is null)
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
connector = _parent.GetConnector(connectorName)!;
|
|
manga = (Manga)_parent.GetPublicationById(internalId)!;
|
|
_parent.jobBoss.RemoveJobs(_parent.jobBoss.GetJobsLike(connector, manga));
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "NotificationConnectors":
|
|
if (!requestVariables.TryGetValue("notificationConnector", out string? notificationConnectorStr) ||
|
|
!Enum.TryParse(notificationConnectorStr, out NotificationConnector.NotificationConnectorType notificationConnectorType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
DeleteNotificationConnector(notificationConnectorType);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
case "LibraryConnectors":
|
|
if (!requestVariables.TryGetValue("libraryConnectors", out string? libraryConnectorStr) ||
|
|
!Enum.TryParse(libraryConnectorStr,
|
|
out LibraryConnector.LibraryType libraryConnectoryType))
|
|
{
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
DeleteLibraryConnector(libraryConnectoryType);
|
|
SendResponse(HttpStatusCode.Accepted, response);
|
|
break;
|
|
default:
|
|
SendResponse(HttpStatusCode.BadRequest, response);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void SendResponse(HttpStatusCode statusCode, HttpListenerResponse response, object? content = null)
|
|
{
|
|
//Log($"Response: {statusCode} {content}");
|
|
|
|
response.StatusCode = (int)statusCode;
|
|
response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept, X-Requested-With");
|
|
response.AddHeader("Access-Control-Allow-Methods", "GET, POST, DELETE");
|
|
response.AddHeader("Access-Control-Max-Age", "1728000");
|
|
response.AppendHeader("Access-Control-Allow-Origin", "*");
|
|
try
|
|
{
|
|
|
|
if (content is not Stream)
|
|
{
|
|
response.ContentType = "application/json";
|
|
response.AddHeader("Cache-Control", "no-store");
|
|
response.OutputStream.Write(content is not null
|
|
? Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(content))
|
|
: Array.Empty<byte>());
|
|
response.OutputStream.Close();
|
|
}
|
|
else if (content is FileStream stream)
|
|
{
|
|
string contentType = stream.Name.Split('.')[^1];
|
|
response.AddHeader("Cache-Control", "max-age=600");
|
|
switch (contentType.ToLower())
|
|
{
|
|
case "gif":
|
|
response.ContentType = "image/gif";
|
|
break;
|
|
case "png":
|
|
response.ContentType = "image/png";
|
|
break;
|
|
case "jpg":
|
|
case "jpeg":
|
|
response.ContentType = "image/jpeg";
|
|
break;
|
|
case "log":
|
|
response.ContentType = "text/plain";
|
|
break;
|
|
}
|
|
|
|
stream.CopyTo(response.OutputStream);
|
|
response.OutputStream.Close();
|
|
stream.Close();
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Log(e.ToString());
|
|
}
|
|
}
|
|
} |