mirror of
https://github.com/C9Glax/tranga.git
synced 2025-04-13 03:43:17 +02:00
https://github.com/C9Glax/tranga/issues/361 Chromium Close Pages that errored.
Some checks failed
Docker Image CI / build (push) Has been cancelled
Some checks failed
Docker Image CI / build (push) Has been cancelled
This commit is contained in:
parent
721f932fac
commit
c94c55300c
@ -10,6 +10,8 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
{
|
{
|
||||||
private static IBrowser? _browser;
|
private static IBrowser? _browser;
|
||||||
private readonly HttpDownloadClient _httpDownloadClient;
|
private readonly HttpDownloadClient _httpDownloadClient;
|
||||||
|
private readonly Thread _closeStalePagesThread;
|
||||||
|
private readonly List<KeyValuePair<IPage, DateTime>> _openPages = new ();
|
||||||
|
|
||||||
private static async Task<IBrowser> StartBrowser()
|
private static async Task<IBrowser> StartBrowser()
|
||||||
{
|
{
|
||||||
@ -22,31 +24,7 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
"--disable-setuid-sandbox",
|
"--disable-setuid-sandbox",
|
||||||
"--no-sandbox"},
|
"--no-sandbox"},
|
||||||
Timeout = 30000
|
Timeout = 30000
|
||||||
}, new LoggerFactory([new LogProvider()])); //TODO
|
});
|
||||||
}
|
|
||||||
|
|
||||||
private class LogProvider : ILoggerProvider
|
|
||||||
{
|
|
||||||
//TODO
|
|
||||||
public void Dispose() { }
|
|
||||||
|
|
||||||
public ILogger CreateLogger(string categoryName) => new Logger();
|
|
||||||
}
|
|
||||||
|
|
||||||
private class Logger : ILogger
|
|
||||||
{
|
|
||||||
public Logger() : base() { }
|
|
||||||
|
|
||||||
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
|
|
||||||
{
|
|
||||||
if (logLevel <= LogLevel.Information)
|
|
||||||
return;
|
|
||||||
//TODO
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsEnabled(LogLevel logLevel) => true;
|
|
||||||
|
|
||||||
public IDisposable? BeginScope<TState>(TState state) where TState : notnull => null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ChromiumDownloadClient()
|
public ChromiumDownloadClient()
|
||||||
@ -54,6 +32,20 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
_httpDownloadClient = new();
|
_httpDownloadClient = new();
|
||||||
if(_browser is null)
|
if(_browser is null)
|
||||||
_browser = StartBrowser().Result;
|
_browser = StartBrowser().Result;
|
||||||
|
_closeStalePagesThread = new Thread(CheckStalePages);
|
||||||
|
_closeStalePagesThread.Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CheckStalePages()
|
||||||
|
{
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
Thread.Sleep(TimeSpan.FromHours(1));
|
||||||
|
foreach ((IPage? key, DateTime value) in _openPages.Where(kv => kv.Value.Subtract(DateTime.Now) > TimeSpan.FromHours(1)))
|
||||||
|
{
|
||||||
|
key.CloseAsync().Wait();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly Regex _imageUrlRex = new(@"https?:\/\/.*\.(?:p?jpe?g|gif|a?png|bmp|avif|webp)(\?.*)?");
|
private readonly Regex _imageUrlRex = new(@"https?:\/\/.*\.(?:p?jpe?g|gif|a?png|bmp|avif|webp)(\?.*)?");
|
||||||
@ -69,8 +61,9 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
if (_browser is null)
|
if (_browser is null)
|
||||||
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
||||||
IPage page = _browser.NewPageAsync().Result;
|
IPage page = _browser.NewPageAsync().Result;
|
||||||
|
_openPages.Add(new(page, DateTime.Now));
|
||||||
page.SetExtraHttpHeadersAsync(new() { { "Referer", referrer } });
|
page.SetExtraHttpHeadersAsync(new() { { "Referer", referrer } });
|
||||||
page.DefaultTimeout = 10000;
|
page.DefaultTimeout = 30000;
|
||||||
IResponse response;
|
IResponse response;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -81,6 +74,7 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
{
|
{
|
||||||
//Log($"Could not load Page {url}\n{e.Message}");
|
//Log($"Could not load Page {url}\n{e.Message}");
|
||||||
page.CloseAsync();
|
page.CloseAsync();
|
||||||
|
_openPages.Remove(_openPages.Find(i => i.Key == page));
|
||||||
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -104,11 +98,13 @@ internal class ChromiumDownloadClient : DownloadClient
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
page.CloseAsync();
|
page.CloseAsync().Wait();
|
||||||
|
_openPages.Remove(_openPages.Find(i => i.Key == page));
|
||||||
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
|
||||||
}
|
}
|
||||||
|
|
||||||
page.CloseAsync();
|
page.CloseAsync().Wait();
|
||||||
|
_openPages.Remove(_openPages.Find(i => i.Key == page));
|
||||||
return new RequestResult(response.Status, document, stream, false, "");
|
return new RequestResult(response.Status, document, stream, false, "");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user