mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
source code checkin
This commit is contained in:
parent
5f8fb2c825
commit
7e57b72e35
675 changed files with 168433 additions and 0 deletions
803
src/ARKServerManager/Windows/ServerMonitorWindow.xaml.cs
Normal file
803
src/ARKServerManager/Windows/ServerMonitorWindow.xaml.cs
Normal file
|
|
@ -0,0 +1,803 @@
|
|||
using IWshRuntimeLibrary;
|
||||
using NLog;
|
||||
using ServerManagerTool.Common.Lib;
|
||||
using ServerManagerTool.Common.Utils;
|
||||
using ServerManagerTool.Enums;
|
||||
using ServerManagerTool.Lib;
|
||||
using ServerManagerTool.Plugin.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using WPFSharp.Globalizer;
|
||||
|
||||
namespace ServerManagerTool.Windows
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ServerMonitorWindow.xaml
|
||||
/// </summary>
|
||||
public partial class ServerMonitorWindow : Window
|
||||
{
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
private static readonly List<ServerMonitorWindow> Windows = new List<ServerMonitorWindow>();
|
||||
|
||||
private readonly GlobalizedApplication _globalizer = GlobalizedApplication.Instance;
|
||||
private CancellationTokenSource _upgradeCancellationSource = null;
|
||||
private ActionQueue _versionChecker;
|
||||
|
||||
public static readonly DependencyProperty ServerManagerProperty = DependencyProperty.Register(nameof(ServerManager), typeof(ServerManager), typeof(ServerMonitorWindow), new PropertyMetadata(null));
|
||||
public static readonly DependencyProperty LatestServerManagerVersionProperty = DependencyProperty.Register(nameof(LatestServerManagerVersion), typeof(Version), typeof(ServerMonitorWindow), new PropertyMetadata(new Version()));
|
||||
public static readonly DependencyProperty ShowUpdateButtonProperty = DependencyProperty.Register(nameof(ShowUpdateButton), typeof(bool), typeof(ServerMonitorWindow), new PropertyMetadata(false));
|
||||
public static readonly DependencyProperty IsStandAloneWindowProperty = DependencyProperty.Register(nameof(IsStandAloneWindow), typeof(bool), typeof(ServerMonitorWindow), new PropertyMetadata(false));
|
||||
|
||||
public ServerMonitorWindow() : this(null)
|
||||
{
|
||||
}
|
||||
|
||||
public ServerMonitorWindow(ServerManager serverManager)
|
||||
{
|
||||
InitializeComponent();
|
||||
WindowUtils.RemoveDefaultResourceDictionary(this, Config.Default.DefaultGlobalizationFile);
|
||||
|
||||
this.ServerManager = serverManager;
|
||||
this.IsStandAloneWindow = serverManager == null;
|
||||
this.DataContext = this;
|
||||
|
||||
SetWindowTitle();
|
||||
|
||||
this.Height = Config.Default.ServerMonitorWindow_Height;
|
||||
this.Width = Config.Default.ServerMonitorWindow_Width;
|
||||
|
||||
// hook into the language change event
|
||||
GlobalizedApplication.Instance.GlobalizationManager.ResourceDictionaryChangedEvent += ResourceDictionaryChangedEvent;
|
||||
|
||||
Windows.Add(this);
|
||||
}
|
||||
|
||||
public ServerManager ServerManager
|
||||
{
|
||||
get { return (ServerManager)GetValue(ServerManagerProperty); }
|
||||
set { SetValue(ServerManagerProperty, value); }
|
||||
}
|
||||
|
||||
public Version LatestServerManagerVersion
|
||||
{
|
||||
get { return (Version)GetValue(LatestServerManagerVersionProperty); }
|
||||
set { SetValue(LatestServerManagerVersionProperty, value); }
|
||||
}
|
||||
|
||||
public bool ShowUpdateButton
|
||||
{
|
||||
get { return (bool)GetValue(ShowUpdateButtonProperty); }
|
||||
set { SetValue(ShowUpdateButtonProperty, value); }
|
||||
}
|
||||
|
||||
public bool IsStandAloneWindow
|
||||
{
|
||||
get { return (bool)GetValue(IsStandAloneWindowProperty); }
|
||||
set { SetValue(IsStandAloneWindowProperty, value); }
|
||||
}
|
||||
|
||||
private void Window_Loaded(object sender, RoutedEventArgs e)
|
||||
{
|
||||
if (ServerManager == null)
|
||||
{
|
||||
ServerManager = ServerManager.Instance;
|
||||
|
||||
TaskUtils.RunOnUIThreadAsync(() =>
|
||||
{
|
||||
// We need to load the set of existing servers, or create a blank one if we don't have any...
|
||||
foreach (var profile in Directory.EnumerateFiles(Config.Default.ConfigDirectory, "*" + Config.Default.ProfileExtension))
|
||||
{
|
||||
try
|
||||
{
|
||||
ServerManager.Instance.AddFromPath(profile);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(String.Format(_globalizer.GetResourceString("MainWindow_ProfileLoad_FailedLabel"), profile, ex.Message, ex.StackTrace), _globalizer.GetResourceString("MainWindow_ProfileLoad_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Exclamation);
|
||||
}
|
||||
}
|
||||
|
||||
ServerManager.Instance.SortServers();
|
||||
ServerManager.Instance.CheckProfiles();
|
||||
|
||||
}).DoNotWait();
|
||||
}
|
||||
|
||||
if (IsStandAloneWindow)
|
||||
{
|
||||
_versionChecker = new ActionQueue();
|
||||
_versionChecker.PostAction(CheckForUpdates).DoNotWait();
|
||||
}
|
||||
}
|
||||
|
||||
private void Window_Closed(object sender, EventArgs e)
|
||||
{
|
||||
this.Activate();
|
||||
}
|
||||
|
||||
private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
|
||||
{
|
||||
if (this.WindowState != WindowState.Minimized)
|
||||
{
|
||||
Config.Default.ServerMonitorWindow_Height = e.NewSize.Height;
|
||||
Config.Default.ServerMonitorWindow_Width = e.NewSize.Width;
|
||||
}
|
||||
}
|
||||
|
||||
private void Window_StateChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (IsStandAloneWindow && Config.Default.MainWindow_MinimizeToTray && this.WindowState == WindowState.Minimized)
|
||||
{
|
||||
this.Hide();
|
||||
}
|
||||
}
|
||||
|
||||
protected override void OnClosing(CancelEventArgs e)
|
||||
{
|
||||
if (this.OwnedWindows.OfType<ProgressWindow>().Any())
|
||||
{
|
||||
if (MessageBox.Show(_globalizer.GetResourceString("ServerMonitor_CloseWindow_ConfirmLabel"), _globalizer.GetResourceString("ServerMonitor_CloseWindow_ConfirmTitle"), MessageBoxButton.YesNo, MessageBoxImage.Warning) != MessageBoxResult.Yes)
|
||||
{
|
||||
e.Cancel = true;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Windows.Remove(this);
|
||||
_versionChecker?.DisposeAsync().DoNotWait();
|
||||
|
||||
base.OnClosing(e);
|
||||
}
|
||||
|
||||
private void ResourceDictionaryChangedEvent(object source, ResourceDictionaryChangedEventArgs e)
|
||||
{
|
||||
SetWindowTitle();
|
||||
}
|
||||
|
||||
private async void BackupServer_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var server = ((Server)((Button)e.Source).DataContext);
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
try
|
||||
{
|
||||
var app = new ServerApp(true)
|
||||
{
|
||||
DeleteOldServerBackupFiles = !Config.Default.AutoBackup_EnableBackup,
|
||||
SendEmails = false,
|
||||
OutputLogs = false,
|
||||
ServerProcess = ServerProcessType.Backup,
|
||||
};
|
||||
|
||||
var profile = ServerProfileSnapshot.Create(server.Profile);
|
||||
|
||||
var exitCode = await Task.Run(() => app.PerformProfileBackup(profile));
|
||||
if (exitCode != ServerApp.EXITCODE_NORMALEXIT && exitCode != ServerApp.EXITCODE_CANCELLED)
|
||||
{
|
||||
throw new ApplicationException($"An error occured during the backup process - ExitCode: {exitCode}");
|
||||
}
|
||||
|
||||
MessageBox.Show(_globalizer.GetResourceString("ServerSettings_BackupServer_SuccessfulLabel"), _globalizer.GetResourceString("ServerSettings_BackupServer_Title"), MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_BackupServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private void CreateShortcut_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var invalidChars = Path.GetInvalidFileNameChars().ToList();
|
||||
|
||||
var name = $"{_globalizer.GetResourceString("MainWindow_Title")} - {_globalizer.GetResourceString("ServerMonitor_Title")}";
|
||||
invalidChars.ForEach(c => name = name.Replace(c.ToString(), ""));
|
||||
|
||||
var desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
|
||||
var shortcutLocation = Path.Combine(desktopPath, name + ".lnk");
|
||||
var applicationFile = Assembly.GetExecutingAssembly().Location;
|
||||
|
||||
WshShell shell = new WshShell();
|
||||
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutLocation);
|
||||
|
||||
shortcut.Description = name;
|
||||
shortcut.Arguments = "-sm";
|
||||
shortcut.IconLocation = applicationFile;
|
||||
shortcut.TargetPath = applicationFile;
|
||||
shortcut.WorkingDirectory = Path.GetDirectoryName(applicationFile);
|
||||
shortcut.Save();
|
||||
}
|
||||
|
||||
private void OpenPlayerList_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var server = ((Server)((Button)e.Source).DataContext);
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
Window window = null;
|
||||
|
||||
if (server.Profile.RCONEnabled)
|
||||
{
|
||||
window = RCONWindow.GetRCONForServer(server);
|
||||
}
|
||||
else
|
||||
{
|
||||
window = PlayerListWindow.GetWindowForServer(server);
|
||||
}
|
||||
|
||||
window.Closed += Window_Closed;
|
||||
window.Show();
|
||||
if (window.WindowState == WindowState.Minimized)
|
||||
{
|
||||
window.WindowState = WindowState.Normal;
|
||||
}
|
||||
|
||||
window.Focus();
|
||||
}
|
||||
|
||||
private void OpenServerFolder_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var server = ((Server)((Button)e.Source).DataContext);
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
Process.Start("explorer.exe", server.Profile.InstallDirectory);
|
||||
}
|
||||
|
||||
private void PatchNotes_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var url = string.Empty;
|
||||
if (App.Instance.BetaVersion)
|
||||
url = Config.Default.ServerManagerVersionBetaFeedUrl;
|
||||
else
|
||||
url = Config.Default.ServerManagerVersionFeedUrl;
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(url))
|
||||
{
|
||||
var window = new VersionFeedWindow(url);
|
||||
window.Closed += Window_Closed;
|
||||
window.Owner = this;
|
||||
window.ShowDialog();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (App.Instance.BetaVersion)
|
||||
url = Config.Default.LatestASMBetaPatchNotesUrl;
|
||||
else
|
||||
url = Config.Default.LatestASMPatchNotesUrl;
|
||||
|
||||
if (string.IsNullOrWhiteSpace(url))
|
||||
return;
|
||||
|
||||
Process.Start(url);
|
||||
}
|
||||
}
|
||||
|
||||
private async void StartStopServer_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var server = ((Server)((Button)e.Source).DataContext);
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
await StartStopServerAsync(server);
|
||||
}
|
||||
|
||||
private async void UpdateServer_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var server = ((Server)((Button)e.Source).DataContext);
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
switch (server.Runtime.Status)
|
||||
{
|
||||
case ServerStatus.Stopped:
|
||||
case ServerStatus.Uninstalled:
|
||||
break;
|
||||
|
||||
case ServerStatus.Running:
|
||||
case ServerStatus.Initializing:
|
||||
var result = MessageBox.Show(_globalizer.GetResourceString("ServerSettings_UpgradeServer_RunningLabel"), _globalizer.GetResourceString("ServerSettings_UpgradeServer_RunningTitle"), MessageBoxButton.YesNo, MessageBoxImage.Warning);
|
||||
if (result == MessageBoxResult.No)
|
||||
return;
|
||||
|
||||
break;
|
||||
|
||||
case ServerStatus.Updating:
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
server.Profile.Save(false, false, null);
|
||||
await UpdateServerAsync(server, true, true, Config.Default.ServerUpdate_UpdateModsWhenUpdatingServer, false);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_UpdateServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
|
||||
private async void UpgradeApplication_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var result = MessageBox.Show(String.Format(_globalizer.GetResourceString("MainWindow_Upgrade_Label"), this.LatestServerManagerVersion), _globalizer.GetResourceString("MainWindow_Upgrade_Title"), MessageBoxButton.YesNo, MessageBoxImage.Question);
|
||||
if (result == MessageBoxResult.Yes)
|
||||
{
|
||||
try
|
||||
{
|
||||
OverlayMessage.Content = _globalizer.GetResourceString("MainWindow_OverlayMessage_UpgradeLabel");
|
||||
OverlayGrid.Visibility = Visibility.Visible;
|
||||
|
||||
await Task.Delay(500);
|
||||
|
||||
var process = Process.GetCurrentProcess();
|
||||
if (process == null || process.HasExited)
|
||||
throw new Exception("Application process could not be found or does not exist.");
|
||||
|
||||
var assemblyLocation = Assembly.GetEntryAssembly().Location;
|
||||
var updaterFile = Path.Combine(Path.GetDirectoryName(assemblyLocation), Config.Default.UpdaterFile);
|
||||
var newUpdaterFile = Path.Combine(Path.GetDirectoryName(assemblyLocation), $"New{Config.Default.UpdaterFile}");
|
||||
|
||||
// check if there is a new version of the updater file
|
||||
if (System.IO.File.Exists(newUpdaterFile))
|
||||
{
|
||||
// file exists, rename the file, so that we use the new updater instead
|
||||
try
|
||||
{
|
||||
System.IO.File.Copy(newUpdaterFile, updaterFile, true);
|
||||
await Task.Delay(1000);
|
||||
System.IO.File.Delete(newUpdaterFile);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
// if error, then do nothing
|
||||
Logger.Debug($"An error occurred trying to update the server manager updater. {ex.Message}");
|
||||
}
|
||||
}
|
||||
|
||||
if (!System.IO.File.Exists(updaterFile))
|
||||
throw new FileNotFoundException("The updater application could not be found or does not exist.");
|
||||
|
||||
var arguments = new string[]
|
||||
{
|
||||
process.Id.ToString().AsQuoted(),
|
||||
App.Instance.BetaVersion ? Config.Default.LatestASMBetaDownloadUrl.AsQuoted() : Config.Default.LatestASMDownloadUrl.AsQuoted(),
|
||||
Config.Default.UpdaterPrefix.AsQuoted(),
|
||||
};
|
||||
|
||||
ProcessStartInfo info = new ProcessStartInfo()
|
||||
{
|
||||
FileName = updaterFile.AsQuoted(),
|
||||
Arguments = string.Join(" ", arguments),
|
||||
UseShellExecute = true,
|
||||
CreateNoWindow = true,
|
||||
};
|
||||
|
||||
var updaterProcess = Process.Start(info);
|
||||
if (updaterProcess == null)
|
||||
throw new Exception("Could not restart application.");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(String.Format(_globalizer.GetResourceString("MainWindow_Upgrade_FailedLabel"), ex.Message, ex.StackTrace), _globalizer.GetResourceString("MainWindow_Upgrade_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
finally
|
||||
{
|
||||
OverlayGrid.Visibility = Visibility.Collapsed;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private async Task CheckForUpdates()
|
||||
{
|
||||
string url = App.Instance.BetaVersion ? Config.Default.LatestASMBetaVersionUrl : Config.Default.LatestASMVersionUrl;
|
||||
var newVersion = await NetworkUtils.GetLatestServerManagerVersion(url);
|
||||
|
||||
TaskUtils.RunOnUIThreadAsync(() =>
|
||||
{
|
||||
try
|
||||
{
|
||||
var appVersion = new Version();
|
||||
Version.TryParse(App.Instance.Version, out appVersion);
|
||||
|
||||
this.LatestServerManagerVersion = newVersion;
|
||||
this.ShowUpdateButton = appVersion < newVersion;
|
||||
|
||||
Logger.Info($"{nameof(CheckForUpdates)} performed.");
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
// Ignore.
|
||||
}
|
||||
}).DoNotWait();
|
||||
|
||||
await Task.Delay(Config.Default.UpdateCheckTime * 60 * 1000);
|
||||
_versionChecker?.PostAction(CheckForUpdates).DoNotWait();
|
||||
}
|
||||
|
||||
public static void CloseAllWindows()
|
||||
{
|
||||
var windows = Windows.ToArray();
|
||||
foreach (var window in windows)
|
||||
{
|
||||
if (window.IsLoaded)
|
||||
window.Close();
|
||||
}
|
||||
Windows.Clear();
|
||||
}
|
||||
|
||||
public static ServerMonitorWindow GetWindow(ServerManager serverManager)
|
||||
{
|
||||
if (Windows.Count > 0)
|
||||
return Windows[0];
|
||||
|
||||
return new ServerMonitorWindow(serverManager);
|
||||
}
|
||||
|
||||
private void SetWindowTitle()
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(App.Instance.Title))
|
||||
{
|
||||
this.Title = App.Instance.Title;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Title = _globalizer.GetResourceString("MainWindow_Title");
|
||||
}
|
||||
|
||||
this.Title += $" - {_globalizer.GetResourceString("ServerMonitor_Title")}";
|
||||
|
||||
if (IsStandAloneWindow)
|
||||
{
|
||||
this.Title += $" - {App.Instance.Version}";
|
||||
}
|
||||
}
|
||||
|
||||
private async Task StartStopServerAsync(Server server)
|
||||
{
|
||||
if (server == null)
|
||||
return;
|
||||
|
||||
var serverRuntime = server.Runtime;
|
||||
var serverProfile = server.Profile;
|
||||
var result = MessageBoxResult.None;
|
||||
|
||||
switch (server.Runtime.Status)
|
||||
{
|
||||
case ServerStatus.Initializing:
|
||||
case ServerStatus.Running:
|
||||
// check if the server is initialising.
|
||||
if (serverRuntime.Status == ServerStatus.Initializing)
|
||||
{
|
||||
result = MessageBox.Show(_globalizer.GetResourceString("ServerSettings_StartServer_StartingLabel"), _globalizer.GetResourceString("ServerSettings_StartServer_StartingTitle"), MessageBoxButton.YesNo, MessageBoxImage.Warning);
|
||||
if (result == MessageBoxResult.No)
|
||||
return;
|
||||
|
||||
try
|
||||
{
|
||||
PluginHelper.Instance.ProcessAlert(AlertType.Shutdown, serverProfile.ProfileName, Config.Default.Alert_ServerStopMessage);
|
||||
await Task.Delay(2000);
|
||||
|
||||
await server.StopAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_StopServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
try
|
||||
{
|
||||
var shutdownWindow = ShutdownWindow.OpenShutdownWindow(server);
|
||||
if (shutdownWindow == null)
|
||||
{
|
||||
MessageBox.Show(_globalizer.GetResourceString("ServerSettings_ShutdownServer_AlreadyOpenLabel"), _globalizer.GetResourceString("ServerSettings_ShutdownServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
shutdownWindow.Owner = Window.GetWindow(this);
|
||||
shutdownWindow.Closed += Window_Closed;
|
||||
shutdownWindow.Show();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_ShutdownServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case ServerStatus.Stopped:
|
||||
Mutex mutex = null;
|
||||
bool createdNew = false;
|
||||
|
||||
try
|
||||
{
|
||||
// try to establish a mutex for the profile.
|
||||
mutex = new Mutex(true, ServerApp.GetMutexName(serverProfile.InstallDirectory), out createdNew);
|
||||
|
||||
// check if the mutex was established
|
||||
if (createdNew)
|
||||
{
|
||||
serverProfile.Save(false, false, null);
|
||||
|
||||
if (Config.Default.ServerUpdate_OnServerStart)
|
||||
{
|
||||
if (!await UpdateServerAsync(server, false, true, Config.Default.ServerUpdate_UpdateModsWhenUpdatingServer, true))
|
||||
{
|
||||
if (MessageBox.Show(_globalizer.GetResourceString("ServerUpdate_WarningLabel"), _globalizer.GetResourceString("ServerUpdate_Title"), MessageBoxButton.YesNo, MessageBoxImage.Warning) != MessageBoxResult.Yes)
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!serverProfile.Validate(false, out string validateMessage))
|
||||
{
|
||||
var outputMessage = _globalizer.GetResourceString("ProfileValidation_WarningLabel").Replace("{validateMessage}", validateMessage);
|
||||
if (MessageBox.Show(outputMessage, _globalizer.GetResourceString("ProfileValidation_Title"), MessageBoxButton.YesNo, MessageBoxImage.Warning) != MessageBoxResult.Yes)
|
||||
return;
|
||||
}
|
||||
|
||||
await server.StartAsync();
|
||||
|
||||
var startupMessage = Config.Default.Alert_ServerStartedMessage;
|
||||
if (Config.Default.Alert_ServerStartedMessageIncludeIPandPort)
|
||||
startupMessage += $" {Config.Default.MachinePublicIP}:{serverProfile.QueryPort}";
|
||||
PluginHelper.Instance.ProcessAlert(AlertType.Startup, serverProfile.ProfileName, startupMessage);
|
||||
|
||||
if (serverProfile.ForceRespawnDinos)
|
||||
PluginHelper.Instance.ProcessAlert(AlertType.Startup, serverProfile.ProfileName, Config.Default.Alert_ForceRespawnDinos);
|
||||
|
||||
await Task.Delay(2000);
|
||||
}
|
||||
else
|
||||
{
|
||||
// display an error message and exit
|
||||
MessageBox.Show(_globalizer.GetResourceString("ServerSettings_StartServer_MutexFailedLabel"), _globalizer.GetResourceString("ServerSettings_StartServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_StartServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (mutex != null)
|
||||
{
|
||||
if (createdNew)
|
||||
{
|
||||
mutex.ReleaseMutex();
|
||||
mutex.Dispose();
|
||||
}
|
||||
mutex = null;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<bool> UpdateServerAsync(Server server, bool establishLock, bool updateServer, bool updateMods, bool closeProgressWindow)
|
||||
{
|
||||
if (server == null)
|
||||
return false;
|
||||
|
||||
if (_upgradeCancellationSource != null)
|
||||
{
|
||||
// display an error message and exit
|
||||
MessageBox.Show(_globalizer.GetResourceString("ServerMonitor_UpgradeServer_FailedLabel"), _globalizer.GetResourceString("ServerMonitor_UpgradeServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
return false;
|
||||
}
|
||||
|
||||
ProgressWindow window = null;
|
||||
Mutex mutex = null;
|
||||
bool createdNew = !establishLock;
|
||||
var serverProfile = server.Profile;
|
||||
|
||||
try
|
||||
{
|
||||
if (establishLock)
|
||||
{
|
||||
// try to establish a mutex for the profile.
|
||||
mutex = new Mutex(true, ServerApp.GetMutexName(serverProfile.InstallDirectory), out createdNew);
|
||||
}
|
||||
|
||||
// check if the mutex was established
|
||||
if (createdNew)
|
||||
{
|
||||
_upgradeCancellationSource = new CancellationTokenSource();
|
||||
|
||||
window = new ProgressWindow(string.Format(_globalizer.GetResourceString("Progress_UpgradeServer_WindowTitle"), serverProfile.ProfileName))
|
||||
{
|
||||
Owner = Window.GetWindow(this)
|
||||
};
|
||||
window.Closed += Window_Closed;
|
||||
window.Show();
|
||||
|
||||
await Task.Delay(1000);
|
||||
|
||||
var branch = new ServerBranchSnapshot() { BranchName = serverProfile.BranchName, BranchPassword = serverProfile.BranchPassword };
|
||||
return await server.UpgradeAsync(_upgradeCancellationSource.Token, updateServer, branch, true, updateMods, (p, m, n) => { TaskUtils.RunOnUIThreadAsync(() => { window?.AddMessage(m, n); }).DoNotWait(); });
|
||||
}
|
||||
else
|
||||
{
|
||||
// display an error message and exit
|
||||
MessageBox.Show(_globalizer.GetResourceString("ServerSettings_UpgradeServer_MutexFailedLabel"), _globalizer.GetResourceString("ServerSettings_UpgradeServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Information);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (window != null)
|
||||
{
|
||||
window.AddMessage(ex.Message);
|
||||
window.AddMessage(ex.StackTrace);
|
||||
}
|
||||
MessageBox.Show(ex.Message, _globalizer.GetResourceString("ServerSettings_UpgradeServer_FailedTitle"), MessageBoxButton.OK, MessageBoxImage.Error);
|
||||
return false;
|
||||
}
|
||||
finally
|
||||
{
|
||||
_upgradeCancellationSource = null;
|
||||
|
||||
if (window != null)
|
||||
{
|
||||
window.CloseWindow();
|
||||
if (closeProgressWindow)
|
||||
window.Close();
|
||||
}
|
||||
|
||||
if (mutex != null)
|
||||
{
|
||||
if (createdNew)
|
||||
{
|
||||
mutex.ReleaseMutex();
|
||||
mutex.Dispose();
|
||||
}
|
||||
mutex = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public ICommand ShowWindowCommand
|
||||
{
|
||||
get
|
||||
{
|
||||
return new RelayCommand<object>(
|
||||
execute: (parameter) =>
|
||||
{
|
||||
this.Show();
|
||||
this.WindowState = WindowState.Normal;
|
||||
this.Activate();
|
||||
},
|
||||
canExecute: (parameter) =>
|
||||
{
|
||||
return true;
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#region Drag and Drop
|
||||
|
||||
public static readonly DependencyProperty DraggedItemProperty = DependencyProperty.Register(nameof(DraggedItem), typeof(Server), typeof(ServerMonitorWindow), new PropertyMetadata(null));
|
||||
|
||||
public Server DraggedItem
|
||||
{
|
||||
get { return (Server)GetValue(DraggedItemProperty); }
|
||||
set { SetValue(DraggedItemProperty, value); }
|
||||
}
|
||||
|
||||
public bool IsDragging { get; set; }
|
||||
|
||||
private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
ResetDragDrop();
|
||||
|
||||
// check fi the column is a template column (no drag-n-drop for those column types)
|
||||
var cell = WindowUtils.TryFindFromPoint<DataGridCell>((UIElement)sender, e.GetPosition(ServersGrid));
|
||||
if (cell != null) return;
|
||||
|
||||
// check if we have a valid row
|
||||
var row = WindowUtils.TryFindFromPoint<DataGridRow>((UIElement)sender, e.GetPosition(ServersGrid));
|
||||
if (row == null) return;
|
||||
|
||||
// set flag that indicates we're capturing mouse movements
|
||||
IsDragging = true;
|
||||
DraggedItem = (Server)row.Item;
|
||||
}
|
||||
|
||||
private void OnMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
if (!IsDragging)
|
||||
{
|
||||
if (popup.IsOpen)
|
||||
popup.IsOpen = false;
|
||||
return;
|
||||
}
|
||||
|
||||
//get the target item
|
||||
var targetItem = (Server)ServersGrid.SelectedItem;
|
||||
|
||||
if (targetItem == null || !ReferenceEquals(DraggedItem, targetItem))
|
||||
{
|
||||
//get target index
|
||||
var targetIndex = ServerManager.Servers.IndexOf(targetItem);
|
||||
|
||||
//move source at the target's location
|
||||
Move(DraggedItem, targetIndex);
|
||||
|
||||
//select the dropped item
|
||||
ServersGrid.SelectedItem = DraggedItem;
|
||||
}
|
||||
|
||||
//reset
|
||||
ResetDragDrop();
|
||||
}
|
||||
|
||||
private void OnMouseMove(object sender, MouseEventArgs e)
|
||||
{
|
||||
if (!IsDragging || e.LeftButton != MouseButtonState.Pressed)
|
||||
{
|
||||
if (popup.IsOpen)
|
||||
popup.IsOpen = false;
|
||||
return;
|
||||
}
|
||||
|
||||
// display the popup if it hasn't been opened yet
|
||||
if (!popup.IsOpen)
|
||||
{
|
||||
// switch to read-only mode
|
||||
ServersGrid.IsReadOnly = true;
|
||||
|
||||
// make sure the popup is visible
|
||||
popup.IsOpen = true;
|
||||
}
|
||||
|
||||
var popupSize = new Size(popup.ActualWidth, popup.ActualHeight);
|
||||
popup.PlacementRectangle = new Rect(e.GetPosition(this), popupSize);
|
||||
|
||||
// make sure the row under the grid is being selected
|
||||
var position = e.GetPosition(ServersGrid);
|
||||
var row = WindowUtils.TryFindFromPoint<DataGridRow>(ServersGrid, position);
|
||||
if (row != null) ServersGrid.SelectedItem = row.Item;
|
||||
}
|
||||
|
||||
public void Move(Server draggedItem, int newIndex)
|
||||
{
|
||||
if (draggedItem == null)
|
||||
return;
|
||||
|
||||
var index = ServerManager.Servers.IndexOf(draggedItem);
|
||||
if (index < 0)
|
||||
return;
|
||||
|
||||
ServerManager.Servers.Move(index, newIndex);
|
||||
UpdateSequence();
|
||||
}
|
||||
|
||||
private void ResetDragDrop()
|
||||
{
|
||||
IsDragging = false;
|
||||
popup.IsOpen = false;
|
||||
ServersGrid.IsReadOnly = false;
|
||||
}
|
||||
|
||||
public void UpdateSequence()
|
||||
{
|
||||
foreach (var server in ServerManager.Servers)
|
||||
{
|
||||
server.Profile.Sequence = ServerManager.Servers.IndexOf(server) + 1;
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue