/* 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.Diagnostics; using System.Drawing; using System.IO; using System.Linq; using XenAdmin.Commands; using XenAdmin.Controls.CheckableDataGridView; using XenAdmin.Controls.SummaryPanel; using XenAdmin.Core; using XenAdmin.Dialogs.LicenseManagerSelectionVerifiers; using XenAdmin.Network; using XenAPI; namespace XenAdmin.Dialogs { public class LicenseManagerController { public ILicenseManagerView View { private get; set; } public LicenseManagerController() { ActivationRequest = new LicenseActivationRequest(); VerifierFactory = new LicenseSelectionVerifierFactory(); } public LicenseManagerController(ILicenseManagerView view) { View = view; } public ILicenseActivationRequest ActivationRequest { private get; set; } public SelectionVerifierFactory VerifierFactory { private get; set; } private void AddToGrid(List dataToDraw) { View.DrawRowsInGrid(ConvertXenObjects(dataToDraw)); } public void PopulateGrid(List itemsToShow, List selectedItems) { if(itemsToShow.Count < 1) { DisableAllButtons(); return; } // show pool members as individual hosts if needed (i.e. can activate free license) var allItemsToShow = new List(); foreach (var xenObject in itemsToShow) { if (LicenseDataGridViewRow.RowShouldBeExpanded(xenObject)) { allItemsToShow.AddRange(xenObject.Connection.Cache.Hosts); } else allItemsToShow.Add(xenObject); } AddToGrid(allItemsToShow); foreach (LicenseDataGridViewRow row in ConvertXenObjects(allItemsToShow).ConvertAll(r => r as LicenseDataGridViewRow)) { UpdateButtonEnablement(new List{row}); } CheckPreSelectedRows(selectedItems); SelectAndSummariseSelectedRow(allItemsToShow, selectedItems); } public void Repopulate(List itemsToShow, List selectedItems) { View.ClearAllGridRows(); PopulateGrid(itemsToShow, selectedItems); } private void CheckPreSelectedRows(List dataToCheck) { if(dataToCheck.Count < 1) { DisableAllButtons(); return; } View.DrawSelectedRowsAsChecked(ConvertXenObjects(dataToCheck).Where(r=>!r.Disabled).ToList()); UpdateButtonEnablement(); } private void SetSummaryInformation(string information) { if(String.IsNullOrEmpty(information)) View.DrawSummaryInformation(String.Empty, false); View.DrawSummaryInformation(information, true); } public void SummariseSelectedRow(CheckableDataGridViewRow dataToSummarise) { if(!dataToSummarise.XenObject.Connection.IsConnected) { View.DrawSummaryForHighlightedRow(dataToSummarise, new LicenseManagerSummaryComponent(), LaunchUrl(InvisibleMessages.UPSELL_SA)); SetSummaryInformation(Messages.POOL_OR_HOST_IS_NOT_CONNECTED); return; } SummaryTextComponent component = BuildSummaryComponent(dataToSummarise); View.DrawSummaryForHighlightedRow(dataToSummarise, component, LaunchUrl(InvisibleMessages.UPSELL_SA)); if(dataToSummarise.Disabled) SetSummaryInformation(dataToSummarise.DisabledReason); } private void SelectAndSummariseSelectedRow(List allData, List selectedFromTree) { IXenObject xo = selectedFromTree.Count > 0 ? selectedFromTree.FirstOrDefault() : allData.FirstOrDefault(); View.DrawHighlightedRow(new LicenseDataGridViewRow(xo)); SummariseSelectedRow(new LicenseDataGridViewRow(xo)); } public void SetStatusIcon(int rowIndex, LicenseDataGridViewRow.Status rowStatus) { View.DrawRowStatusIcon(rowIndex, rowStatus); } private void ShowPoolHostNotConnectedError() { new ThreeButtonDialog( new ThreeButtonDialog.Details( SystemIcons.Error, Messages.SELECTED_HOST_POOL_NOT_CONNECTED, Messages.XENCENTER)).ShowDialog(View.Parent); } private void SummariseDisconnectedRows(List rowsChecked) { //Refresh current row's details if the pool/host is no longer connected CheckableDataGridViewRow row = rowsChecked.Find(r => r.Highlighted && !r.XenObject.Connection.IsConnected); if (row != null) SummariseSelectedRow(row); } public void AssignLicense(List rowsChecked) { if (rowsChecked.Any(r => !r.XenObject.Connection.IsConnected)) { ShowPoolHostNotConnectedError(); SummariseDisconnectedRows(rowsChecked); ResetButtonEnablement(); return; } List licenseRows = rowsChecked.ConvertAll(r => r as LicenseDataGridViewRow). Where(lr => lr.CanUseLicenseServer).ToList(); if(licenseRows.Count > 0) { AssignLicenseDialog ald = new AssignLicenseDialog(licenseRows.ConvertAll(r=>r.XenObject), licenseRows.First().LicenseServerAddress, licenseRows.First().LicenseServerPort, licenseRows.First().LicenseEdition); ald.ShowDialog(View.Parent); } else { Debug.Assert(rowsChecked.Count == 1, "rowsChecked.Count == 1"); List validRows = rowsChecked.ConvertAll(r => r as LicenseDataGridViewRow); Debug.Assert(!validRows[0].CanUseLicenseServer, "Should not be able to use the license server"); new OpenLicenseFileDialog(View.Parent, RowsToHosts(validRows)[0], Messages.INSTALL_LICENSE_KEY, false).ShowDialogAndRunAction(); } SummariseDisconnectedRows(rowsChecked); ResetButtonEnablement(); } public void ReleaseLicenses(List rowsChecked) { Debug.Assert(rowsChecked.Count > 0, "There must be one license selected to perform this operation"); List rowsUsingLicenseServer = rowsChecked.ConvertAll(r => r as LicenseDataGridViewRow).Where( r => r.XenObject.Connection.IsConnected && r.HasLicenseServer).ToList(); if (rowsUsingLicenseServer.Count > 0) { ApplyLicenseEditionCommand command = new ApplyLicenseEditionCommand(CommandInterface, rowsUsingLicenseServer.ConvertAll(r=>r.XenObject), Host.Edition.Free, null, null, View.Parent); command.Execute(); } else { ShowPoolHostNotConnectedError(); } SummariseDisconnectedRows(rowsChecked); ResetButtonEnablement(); } public void RequestActivationKey(List rowsChecked) { List checkedHosts = RowsToHosts(rowsChecked.ConvertAll(r => r as LicenseDataGridViewRow)); ActivationRequest.Hosts = checkedHosts; using (MemoryStream ms = ActivationRequest.CreateRequestBestEffort()) { ActivationRequestCommand activationRequestCommand = new ActivationRequestCommand(CommandInterface, ActivationRequest.RequestEncoding.GetString(ms.ToArray())); activationRequestCommand.Execute(); } } public void ApplyActivationKey(List rowsChecked) { List checkedHosts = RowsToHosts(rowsChecked.ConvertAll(r => r as LicenseDataGridViewRow)); ActivationRequest.Hosts = checkedHosts; Debug.Assert(ActivationRequest.HostsThatCanBeActivated.Count == 1, "There must be one host that can be activated selected"); new OpenLicenseFileDialog(View.Parent, ActivationRequest.HostsThatCanBeActivated[0], Messages.APPLY_ACTIVATION_KEY, true).ShowDialogAndRunAction(); } public void DownloadLicenseManager() { LaunchUrl(InvisibleMessages.LICENSE_SERVER_DOWNLOAD_LINK).Invoke(); } private Action LaunchUrl(string url) { return delegate { try { Process.Start(url); } catch (Exception) { new ThreeButtonDialog( new ThreeButtonDialog.Details( SystemIcons.Error, string.Format(Messages.LICENSE_SERVER_COULD_NOT_OPEN_LINK, url), Messages.XENCENTER)).ShowDialog(View.Parent); } }; } protected virtual IMainWindow CommandInterface { get { return Program.MainWindow; } } private void SetRowInformation(List rows, string information) { foreach (LicenseDataGridViewRow row in rows) { if(row.Disabled) continue; View.DrawSelectedRowsAsChecked(rows.ConvertAll(r=>r as CheckableDataGridViewRow)); View.SetRowDisabledRowInfo(row.Index, information, !string.IsNullOrEmpty(information)); } } public void UpdateButtonEnablement() { List lRows = View.GetCheckedRows.ConvertAll(r => r as LicenseDataGridViewRow); UpdateButtonEnablement(lRows); } public void UpdateButtonEnablement(List lRows) { //All buttons disabled? if(lRows.Count < 1) { DisableAllButtons(); return; } LicenseSelectionVerifier verifier; verifier = VerifierFactory.Verifier(SelectionVerifierFactory.Option.NotLive, lRows); if (verifier.Status == LicenseSelectionVerifier.VerificationStatus.Error) { DisableAllButtons(); SetRowInformation(lRows, verifier.VerificationDetails()); return; } verifier = VerifierFactory.Verifier(SelectionVerifierFactory.Option.HaOn, lRows); if (verifier.Status == LicenseSelectionVerifier.VerificationStatus.Error) { DisableAllButtons(); SetRowInformation(lRows, verifier.VerificationDetails()); return; } //Assign Button verifier = VerifierFactory.Verifier(SelectionVerifierFactory.Option.OldServer, lRows); View.DrawAssignButtonAsDisabled(verifier.Status == LicenseSelectionVerifier.VerificationStatus.Error); //Release Button View.DrawReleaseButtonAsDisabled(!lRows.Any(r=>r.IsUsingLicenseServer || r.CurrentLicenseState == LicenseStatus.HostState.PartiallyLicensed)); List representedHosts = new List(); lRows.ForEach(r => representedHosts.AddRange(r.RepresentedHosts)); ActivationRequest.Hosts = representedHosts; //Apply Button if (ActivationRequest.HostsThatCanBeActivated.Count > 1) View.DrawApplyButtonAsDisabled(true, Messages.LICENSE_TOO_MANY_SERVERS_SELECTED_CAPTION); else View.DrawApplyButtonAsDisabled(!ActivationRequest.AllHostsCanBeActivated, null); //Request Button View.DrawRequestButtonAsDisabled(!ActivationRequest.AllHostsCanBeActivated); //Activate Button View.DrawActivateButtonAsDisabled(!ActivationRequest.AllHostsCanBeActivated); View.DrawActivateButtonAsHidden(representedHosts.Any(Helpers.ClearwaterOrGreater)); } private void DisableAllButtons() { View.DrawAssignButtonAsDisabled(true); View.DrawReleaseButtonAsDisabled(true); View.DrawActivateButtonAsDisabled(true); View.DrawActivateButtonAsHidden(false); } private void ResetButtonEnablement() { DisableAllButtons(); View.DrawSelectedRowsAsChecked(View.GetCheckedRows); } private SummaryTextComponent BuildSummaryComponent(CheckableDataGridViewRow row) { LicenseManagerSummaryComponent component = new LicenseManagerSummaryComponent(); LicenseManagerSummaryDecorator licenseTypeDecorator = new LicenseManagerSummaryLicenseTypeDecorator(component, row); LicenseManagerSummaryDecorator licenseSocketsDecorator = new LicenseManagerSummaryLicenseSocketsDecorator(licenseTypeDecorator, row); LicenseManagerSummaryDecorator licenseExpiresDecorator = new LicenseManagerSummaryLicenseExpiresDecorator(licenseSocketsDecorator, row); LicenseManagerSummaryDecorator licenseServerDecorator = new LicenseManagerSummaryLicenseServerDecorator(licenseExpiresDecorator, row); return licenseServerDecorator; } private List ConvertXenObjects(IEnumerable xenObjects) { List rows = new List(); foreach (IXenObject xenObject in xenObjects) { rows.Add(new LicenseDataGridViewRow(xenObject)); } return rows; } private List RowsToHosts(IEnumerable rows) { List hosts = new List(); if (rows == null) return hosts; foreach (LicenseDataGridViewRow row in rows) { if(row.XenObject is Host) hosts.Add(row.XenObject as Host); if(row.XenObject is Pool) { Pool pool = row.XenObject as Pool; hosts.AddRange(pool.Connection.Cache.Hosts); } } return hosts; } public void Repopulate() { Repopulate(GetAllObjects(), new List()); } private List GetAllObjects() { List allObjects = new List(); foreach (IXenConnection conn in ConnectionsManager.XenConnections) { if (conn == null || !conn.IsConnected) continue; Pool pool = Helpers.GetPool(conn); if (pool == null) allObjects.AddRange(conn.Cache.Hosts); else allObjects.Add(pool); } return allObjects; } } }