2017-01-16 20:59:50 +01:00
|
|
|
|
/* Copyright (c) Citrix Systems, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
* 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.Windows.Forms;
|
|
|
|
|
using XenAdmin.Controls;
|
|
|
|
|
using XenAdmin.Commands;
|
2019-09-13 18:47:27 +02:00
|
|
|
|
using XenAdmin.Help;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.TabPages
|
|
|
|
|
{
|
2019-09-13 18:47:27 +02:00
|
|
|
|
public partial class HomePage : DoubleBufferedPanel, IControlWithHelp
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2016-02-15 15:01:37 +01:00
|
|
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-02-15 15:01:37 +01:00
|
|
|
|
private const string XCNS = "XenCenter://";
|
2022-12-07 22:58:02 +01:00
|
|
|
|
private readonly bool _initializing = true;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-02-15 15:01:37 +01:00
|
|
|
|
public HomePage()
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2016-02-15 15:01:37 +01:00
|
|
|
|
InitializeComponent();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2022-12-07 22:58:02 +01:00
|
|
|
|
string path = string.Empty;
|
2016-02-15 15:01:37 +01:00
|
|
|
|
try
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2022-12-07 22:58:02 +01:00
|
|
|
|
path = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), InvisibleMessages.HOMEPAGE_FILENAME);
|
|
|
|
|
webBrowser.Navigate(path);
|
2016-02-15 15:01:37 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2022-12-07 22:58:02 +01:00
|
|
|
|
log.Error($"Failed to load the HomePage. Url = {path}", ex);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-07 22:58:02 +01:00
|
|
|
|
_initializing = false;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-15 15:01:37 +01:00
|
|
|
|
private void webBrowser_Navigating(object sender, WebBrowserNavigatingEventArgs e)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2022-12-07 22:58:02 +01:00
|
|
|
|
if (_initializing)
|
2016-02-15 15:01:37 +01:00
|
|
|
|
return;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-02-15 15:01:37 +01:00
|
|
|
|
e.Cancel = true;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2016-02-15 15:01:37 +01:00
|
|
|
|
string url = e.Url.OriginalString;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2022-12-07 22:58:02 +01:00
|
|
|
|
if (url.StartsWith(XCNS, StringComparison.InvariantCultureIgnoreCase))
|
2016-02-15 15:01:37 +01:00
|
|
|
|
{
|
|
|
|
|
if (url.Contains("HelpContents"))
|
|
|
|
|
{
|
2022-12-07 22:58:02 +01:00
|
|
|
|
HelpManager.Launch(null);
|
2016-02-15 15:01:37 +01:00
|
|
|
|
}
|
|
|
|
|
else if (url.Contains("AddServer"))
|
|
|
|
|
{
|
2021-08-31 12:31:16 +02:00
|
|
|
|
new AddHostCommand(Program.MainWindow, this).Run();
|
2016-02-15 15:01:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
else
|
2016-02-15 15:01:37 +01:00
|
|
|
|
{
|
|
|
|
|
Program.OpenURL(url);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
public string HelpID => "TabPageHome";
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|