Movin on up (movin on up) #166

This commit is contained in:
TwistedUmbrellaX 2024-05-16 18:24:36 +02:00 committed by Kilian von Pflugk
parent 445607235b
commit 48bfec8d32

View File

@ -58,15 +58,27 @@ public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages
ArgumentNullException.ThrowIfNull(applicationPaths); ArgumentNullException.ThrowIfNull(applicationPaths);
var introsDirectory = Path.Join(applicationPaths.CachePath, "introskipper"); var pluginDirName = "introskipper";
FingerprintCachePath = Path.Join(introsDirectory, "chromaprints"); var pluginCachePath = "chromaprints";
_introPath = Path.Join(applicationPaths.CachePath, "introskipper", "intros.xml");
_creditsPath = Path.Join(applicationPaths.CachePath, "introskipper", "credits.xml");
var oldIntrosDirectory = Path.Join(applicationPaths.PluginConfigurationsPath, "intros"); var introsDirectory = Path.Join(applicationPaths.DataPath, pluginDirName);
var oldFingerprintCachePath = Path.Join(oldIntrosDirectory, "cache"); FingerprintCachePath = Path.Join(introsDirectory, pluginCachePath);
var oldIntroPath = Path.Join(applicationPaths.PluginConfigurationsPath, "intros", "intros.xml"); _introPath = Path.Join(applicationPaths.DataPath, pluginDirName, "intros.xml");
var oldCreditsPath = Path.Join(applicationPaths.PluginConfigurationsPath, "intros", "credits.xml"); _creditsPath = Path.Join(applicationPaths.DataPath, pluginDirName, "credits.xml");
var cacheRoot = applicationPaths.CachePath;
var oldIntrosDirectory = Path.Join(cacheRoot, pluginDirName);
if (!Directory.Exists(oldIntrosDirectory))
{
pluginDirName = "intros";
pluginCachePath = "cache";
cacheRoot = applicationPaths.PluginConfigurationsPath;
oldIntrosDirectory = Path.Join(cacheRoot, pluginDirName);
}
var oldFingerprintCachePath = Path.Join(oldIntrosDirectory, pluginCachePath);
var oldIntroPath = Path.Join(cacheRoot, pluginDirName, "intros.xml");
var oldCreditsPath = Path.Join(cacheRoot, pluginDirName, "credits.xml");
// Create the base & cache directories (if needed). // Create the base & cache directories (if needed).
if (!Directory.Exists(FingerprintCachePath)) if (!Directory.Exists(FingerprintCachePath))