mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
30291cc3bd
Also add check to non-relevant actions Signed-off-by: Danilo Del Busso <danilo.delbusso@cloud.com>
161 lines
6.4 KiB
C#
161 lines
6.4 KiB
C#
/* Copyright (c) Cloud Software Group, Inc.
|
|
*
|
|
* Redistribution and use in source and binary forms,
|
|
* with or without modification, are permitted provided
|
|
* that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer in the documentation and/or other
|
|
* materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
using System;
|
|
using XenAPI;
|
|
using System.Windows.Forms;
|
|
using XenAdmin.Dialogs;
|
|
using XenAdmin.Network;
|
|
using XenAdmin.Actions;
|
|
using XenAdmin.Core;
|
|
using System.IO;
|
|
|
|
namespace XenAdmin.Commands
|
|
{
|
|
/// <summary>
|
|
/// Shows an open-file dialog for restoring the selected host.
|
|
/// </summary>
|
|
internal class RestoreHostFromBackupCommand : Command
|
|
{
|
|
private readonly string _filePath = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of this Command. The parameter-less constructor is required if
|
|
/// this Command is to be attached to a ToolStrip menu item or button. It should not be used in any other scenario.
|
|
/// </summary>
|
|
public RestoreHostFromBackupCommand()
|
|
{
|
|
}
|
|
|
|
public RestoreHostFromBackupCommand(IMainWindow mainWindow, Host host, string filePath)
|
|
: base(mainWindow, host)
|
|
{
|
|
_filePath = filePath;
|
|
}
|
|
|
|
protected override void RunCore(SelectedItemCollection selection)
|
|
{
|
|
Run(selection[0].XenObject as Host, _filePath);
|
|
}
|
|
|
|
protected override bool CanRunCore(SelectedItemCollection selection)
|
|
{
|
|
if (selection.Count == 1)
|
|
{
|
|
IXenConnection connection = selection[0].Connection;
|
|
Host host = selection[0].XenObject as Host;
|
|
return host != null && host.IsLive();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void Run(Host host, string filepath)
|
|
{
|
|
HelpersGUI.BringFormToFront(MainWindowCommandInterface.Form);
|
|
|
|
if (filepath == "")
|
|
{
|
|
// Showing this dialog has the (undocumented) side effect of changing the working directory
|
|
// to that of the file selected. This means a handle to the directory persists, making
|
|
// it undeletable until the program exits, or the working dir moves on. So, save and
|
|
// restore the working dir...
|
|
String oldDir = "";
|
|
try
|
|
{
|
|
oldDir = Directory.GetCurrentDirectory();
|
|
OpenFileDialog dialog = new OpenFileDialog();
|
|
dialog.AddExtension = true;
|
|
dialog.Filter = string.Format("{0} (*.{1})|*.{1}|{2} (*.*)|*.*",
|
|
string.Format(Messages.XS_BACKUP_FILES, BrandManager.ProductBrand),
|
|
BrandManager.ExtensionBackup, Messages.ALL_FILES);
|
|
dialog.FilterIndex = 0;
|
|
dialog.RestoreDirectory = true;
|
|
dialog.DefaultExt = BrandManager.ExtensionBackup;
|
|
dialog.CheckPathExists = false;
|
|
if (dialog.ShowDialog(Parent) == DialogResult.Cancel)
|
|
return;
|
|
filepath = dialog.FileName;
|
|
}
|
|
finally
|
|
{
|
|
Directory.SetCurrentDirectory(oldDir);
|
|
}
|
|
}
|
|
|
|
if (host == null)
|
|
{
|
|
SelectHostDialog hostdialog = new SelectHostDialog
|
|
{
|
|
TheHost = host,
|
|
TopBlurb = Messages.BACKUP_SELECT_HOST,
|
|
TopPicture = Images.StaticImages.backup_restore_32,
|
|
HelpString = "Backup", // don't i18n
|
|
Text = Messages.BACKUP_SELECT_HOST_TITLE,
|
|
OkButtonText = Messages.BACKUP_SELECT_HOST_BUTTON
|
|
};
|
|
|
|
hostdialog.FormClosed += delegate
|
|
{
|
|
if (hostdialog.DialogResult != DialogResult.OK)
|
|
return;
|
|
host = hostdialog.TheHost;
|
|
HostBackupRestoreAction action = new HostBackupRestoreAction(host, HostBackupRestoreAction.HostBackupRestoreType.restore, filepath);
|
|
action.Completed += RestoreAction_Completed;
|
|
action.RunAsync();
|
|
};
|
|
hostdialog.Show(Parent);
|
|
}
|
|
else
|
|
{
|
|
HostBackupRestoreAction action = new HostBackupRestoreAction(host, HostBackupRestoreAction.HostBackupRestoreType.restore, filepath);
|
|
action.Completed += RestoreAction_Completed;
|
|
action.RunAsync();
|
|
}
|
|
}
|
|
|
|
private void RestoreAction_Completed(ActionBase sender)
|
|
{
|
|
if (!(sender is HostBackupRestoreAction action) || !action.Succeeded)
|
|
{
|
|
return;
|
|
}
|
|
|
|
MainWindowCommandInterface.Invoke(delegate
|
|
{
|
|
using (var dlg = new InformationDialog(string.Format(Messages.RESTORE_FROM_BACKUP_FINALIZE,
|
|
Helpers.GetName(action.Host), BrandManager.ProductBrand)))
|
|
{
|
|
dlg.ShowDialog(Parent);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|