2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
using System;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using System.Resources;
|
2019-09-12 14:32:30 +02:00
|
|
|
|
using XenAdmin.Core;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Help
|
|
|
|
|
{
|
|
|
|
|
class HelpManager
|
|
|
|
|
{
|
|
|
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
private static readonly ResourceManager resources;
|
2019-09-25 10:40:03 +02:00
|
|
|
|
private static readonly string HelpUrl = Registry.CustomHelpUrl;
|
|
|
|
|
private static readonly string HelpQuery = string.Empty;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
static HelpManager()
|
|
|
|
|
{
|
|
|
|
|
resources = new ResourceManager("XenAdmin.Help.HelpManager", typeof(HelpManager).Assembly);
|
2019-09-25 10:40:03 +02:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(HelpUrl))
|
|
|
|
|
{
|
2021-06-02 03:09:06 +02:00
|
|
|
|
HelpUrl = InvisibleMessages.DOCS_URL + BrandManager.HelpPath;
|
2019-09-25 10:40:03 +02:00
|
|
|
|
|
2023-01-14 05:29:04 +01:00
|
|
|
|
HelpQuery = string.Format(InvisibleMessages.HELP_URL_QUERY,
|
|
|
|
|
$"{Program.Version}".Replace('.', '_'), BrandManager.BrandConsole);
|
2019-09-25 10:40:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
internal static bool TryGetTopicId(string pageRef, out string topicId)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2019-09-13 18:47:27 +02:00
|
|
|
|
topicId = null;
|
|
|
|
|
if (pageRef == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
topicId = resources.GetString(pageRef);
|
|
|
|
|
return topicId != null;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
public static void Launch(string pageRef)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2019-09-13 18:47:27 +02:00
|
|
|
|
TryGetTopicId(pageRef, out string topicId);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2019-09-13 18:47:27 +02:00
|
|
|
|
if (pageRef == null)
|
|
|
|
|
log.WarnFormat("Attempted to launch help window with null help pageRef");
|
|
|
|
|
else if (topicId == null)
|
|
|
|
|
log.WarnFormat("Failed to find help topic ID for {0}", pageRef);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
else
|
2019-09-13 18:47:27 +02:00
|
|
|
|
log.DebugFormat("Found help topic ID {0} for {1}", topicId, pageRef);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2021-06-02 03:09:06 +02:00
|
|
|
|
var helpTopicUrl = HelpUrl + $"{topicId ?? "index"}.html" + HelpQuery;
|
2019-09-25 10:40:03 +02:00
|
|
|
|
Program.OpenURL(helpTopicUrl.ToLowerInvariant());
|
2019-09-13 18:47:27 +02:00
|
|
|
|
|
|
|
|
|
// record help usage
|
|
|
|
|
Properties.Settings.Default.HelpLastUsed = DateTime.UtcNow.ToString("u");
|
|
|
|
|
Settings.TrySaveSettings();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-13 18:47:27 +02:00
|
|
|
|
|
|
|
|
|
internal interface IFormWithHelp
|
|
|
|
|
{
|
|
|
|
|
bool HasHelp();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal interface IControlWithHelp
|
|
|
|
|
{
|
|
|
|
|
string HelpID { get; }
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|