LANCommander/LANCommander.Playnite.Extension/UninstallController.cs

80 lines
2.9 KiB
C#

using LANCommander.SDK.Enums;
using LANCommander.SDK.Helpers;
using LANCommander.SDK.PowerShell;
using Playnite.SDK;
using Playnite.SDK.Models;
using Playnite.SDK.Plugins;
using System;
using System.IO;
namespace LANCommander.PlaynitePlugin
{
public class LANCommanderUninstallController : UninstallController
{
public static readonly ILogger Logger = LogManager.GetLogger();
private LANCommanderLibraryPlugin Plugin;
public LANCommanderUninstallController(LANCommanderLibraryPlugin plugin, Game game) : base(game)
{
Name = "Uninstall LANCommander Game";
Plugin = plugin;
}
public override void Uninstall(UninstallActionArgs args)
{
try
{
var gameId = Guid.Parse(Game.GameId);
try
{
var scriptPath = ScriptHelper.GetScriptFilePath(Game.InstallDirectory, gameId, SDK.Enums.ScriptType.Uninstall);
if (!String.IsNullOrEmpty(scriptPath) && File.Exists(scriptPath))
{
var manifest = ManifestHelper.Read(Game.InstallDirectory, gameId);
var script = new PowerShellScript();
script.AddVariable("InstallDirectory", Game.InstallDirectory);
script.AddVariable("GameManifest", manifest);
script.AddVariable("DefaultInstallDirectory", Plugin.Settings.InstallDirectory);
script.AddVariable("ServerAddress", Plugin.Settings.ServerAddress);
script.UseFile(scriptPath);
script.Execute();
}
}
catch (Exception ex)
{
Logger.Error(ex, "There was an error running the uninstall script");
}
Plugin.PlayniteApi.Dialogs.ActivateGlobalProgress(progress =>
{
Plugin.LANCommanderClient.Games.Uninstall(Game.InstallDirectory, gameId);
var metadataPath = SDK.GameService.GetMetadataDirectoryPath(Game.InstallDirectory, gameId);
if (Directory.Exists(metadataPath))
Directory.Delete(metadataPath, true);
DirectoryHelper.DeleteEmptyDirectories(Game.InstallDirectory);
},
new GlobalProgressOptions("Removing game files...")
{
IsIndeterminate = true,
Cancelable = false,
});
}
catch (Exception ex)
{
Logger.Error(ex, "There was an error uninstalling the game");
throw new Exception("There was an error uninstalling the game");
}
InvokeOnUninstalled(new GameUninstalledEventArgs());
}
}
}