/* Copyright (c) Citrix Systems Inc. * All rights reserved. * * 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 System.Collections.Generic; using System.Text; using XenAPI; using XenAdmin.Dialogs; using XenAdmin.Network; using XenAdmin.Properties; using System.Drawing; using System.Collections.ObjectModel; using XenAdmin.Model; namespace XenAdmin.Commands { /// /// Shows the properties dialog for the selected XenObject. /// internal class PropertiesCommand : Command { /// /// 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. /// protected PropertiesCommand() { } public PropertiesCommand(IMainWindow mainWindow, IEnumerable selection) : base(mainWindow, selection) { } public PropertiesCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected virtual void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.EditName(); dialog.ShowDialog(Parent); } } protected override void ExecuteCore(SelectedItemCollection selection) { Execute(selection[0].XenObject); } protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.ContainsOneItemOfType()) { IXenObject xenObject = selection[0].XenObject; return !(xenObject is Folder) && xenObject.Connection != null && xenObject.Connection.IsConnected; } return false; } public override string ContextMenuText { get { return Messages.EDIT; } } public override Image MenuImage { get { return Resources.edit_16; } } } internal class DescriptionPropertiesCommand : PropertiesCommand { public DescriptionPropertiesCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.EditDescription(); dialog.ShowDialog(Parent); } } } internal class IqnPropertiesCommand : PropertiesCommand { public IqnPropertiesCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.EditIqn(); dialog.ShowDialog(Parent); } } } /// /// Shows the properties dialog for the selected VM. /// internal class VMPropertiesCommand : PropertiesCommand { protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.Count == 1) { VM vm = selection[0].XenObject as VM; return vm != null && !vm.is_a_template && !vm.Locked; } return false; } } /// /// Shows the properties dialog for the selected SR. /// internal class SRPropertiesCommand : PropertiesCommand { protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.Count == 1) { SR sr = selection[0].XenObject as SR; return sr != null && !sr.Locked; } return false; } } /// /// Shows the properties dialog for the selected Pool. /// internal class PoolPropertiesCommand : PropertiesCommand { /// /// 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. /// public PoolPropertiesCommand() { } public PoolPropertiesCommand(IMainWindow mainWindow, IEnumerable selection) : base(mainWindow, selection) { } protected override void ExecuteCore(SelectedItemCollection selection) { Execute(selection[0].PoolAncestor); } protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.Count == 1) { IXenConnection connection = selection[0].Connection; bool connected = connection != null && connection.IsConnected; bool inPool = selection[0].PoolAncestor != null && !selection[0].PoolAncestor.Locked; return connected && inPool; } return false; } } /// /// Shows the properties dialog for the selected Host. /// internal class HostPropertiesCommand : PropertiesCommand { /// /// 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. /// public HostPropertiesCommand() { } public HostPropertiesCommand(IMainWindow mainWindow, IEnumerable selection) : base(mainWindow, selection) { } protected override void ExecuteCore(SelectedItemCollection selection) { Execute(selection[0].HostAncestor); } protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.Count == 1) { IXenConnection connection = selection[0].Connection; bool connected = connection != null && connection.IsConnected; bool inHost = selection[0].HostAncestor != null && !selection[0].HostAncestor.Locked; return connected && inHost; } return false; } } /// /// Shows the properties dialog for the selected Template. /// internal class TemplatePropertiesCommand : PropertiesCommand { protected override bool CanExecuteCore(SelectedItemCollection selection) { if (selection.Count == 1) { VM vm = selection[0].XenObject as VM; return vm != null && vm.is_a_template && !vm.is_a_snapshot && !vm.Locked; } return false; } } internal class VmEditStartupOptionsCommand : PropertiesCommand { public VmEditStartupOptionsCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.SelectStartupOptionsEditPage(); dialog.ShowDialog(Parent); } } } internal class VmEditHomeServerCommand : PropertiesCommand { public VmEditHomeServerCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.SelectHomeServerEditPage(); dialog.ShowDialog(Parent); } } } internal class VmEditHaCommand : PropertiesCommand { public VmEditHaCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.SelectVMHAEditPage(); dialog.ShowDialog(Parent); } } } internal class HostEditLogDestinationCommand : PropertiesCommand { public HostEditLogDestinationCommand(IMainWindow mainWindow, IXenObject xenObject) : base(mainWindow, xenObject) { } protected override void Execute(IXenObject xenObject) { using (PropertiesDialog dialog = new PropertiesDialog(xenObject)) { dialog.SelectLogDestinationEditPage(); dialog.ShowDialog(Parent); } } } }