Don't let a failed index.html backup block the injection

On linuxserver/jellyfin the web folder belongs to root, so copying
index.html to index.html.sharelinks.bak threw even when index.html itself
was writable, and the ShareLink action never got injected. The backup is
best-effort now.

Bump to 1.0.7.0.
Cette révision appartient à :
Francois CB
2026-09-18 15:48:42 +02:00
Parent c365b8859c
révision d88034c988
3 fichiers modifiés avec 23 ajouts et 10 suppressions
+18 -5
Voir le fichier
@@ -70,11 +70,7 @@ public sealed class WebInjectionHostedService : IHostedService
return;
}
var backup = path + ".sharelinks.bak";
if (!File.Exists(backup))
{
File.Copy(path, backup);
}
TryBackup(path, path + ".sharelinks.bak");
var snippet = "\n" + Begin + "\n<script src=\"/ShareLinks/ClientScript\" defer></script>\n" + End + "\n";
var bodyIndex = html.LastIndexOf("</body>", StringComparison.OrdinalIgnoreCase);
@@ -84,4 +80,21 @@ public sealed class WebInjectionHostedService : IHostedService
_logger.LogInformation("ShareLinks: injected client script into {Path}.", path);
}
private void TryBackup(string path, string backup)
{
// The backup is only a convenience. Some images (linuxserver) make the
// web folder root-owned while index.html itself is writable, so a
// failed copy must not stop the injection.
try
{
if (!File.Exists(backup))
{
File.Copy(path, backup);
}
}
catch (Exception ex) when (ex is UnauthorizedAccessException or IOException)
{
_logger.LogDebug(ex, "ShareLinks: could not back up {Path}, injecting without a backup.", path);
}
}
}