jellyfin/Emby.Server.Implementations/Browser/BrowserLauncher.cs

74 lines
2 KiB
C#
Raw Normal View History

2013-09-25 02:54:51 +02:00
using MediaBrowser.Controller;
using System;
namespace Emby.Server.Implementations.Browser
2013-09-25 02:54:51 +02:00
{
2013-09-27 19:04:35 +02:00
/// <summary>
/// Class BrowserLauncher
/// </summary>
2013-09-25 02:54:51 +02:00
public static class BrowserLauncher
{
/// <summary>
/// Opens the dashboard page.
/// </summary>
/// <param name="page">The page.</param>
/// <param name="appHost">The app host.</param>
2016-04-24 05:03:49 +02:00
public static void OpenDashboardPage(string page, IServerApplicationHost appHost)
2013-09-25 02:54:51 +02:00
{
2015-02-10 06:54:58 +01:00
var url = appHost.GetLocalApiUrl("localhost") + "/web/" + page;
2013-09-25 02:54:51 +02:00
2016-04-24 05:03:49 +02:00
OpenUrl(appHost, url);
2013-09-25 02:54:51 +02:00
}
2013-09-27 19:04:35 +02:00
/// <summary>
/// Opens the community.
/// </summary>
2016-04-24 05:03:49 +02:00
public static void OpenCommunity(IServerApplicationHost appHost)
2013-09-27 19:04:35 +02:00
{
2016-04-24 05:03:49 +02:00
OpenUrl(appHost, "http://emby.media/community");
2013-09-27 19:04:35 +02:00
}
2016-08-31 21:17:11 +02:00
public static void OpenEmbyPremiere(IServerApplicationHost appHost)
{
OpenDashboardPage("supporterkey.html", appHost);
}
2013-09-27 19:04:35 +02:00
/// <summary>
/// Opens the web client.
/// </summary>
/// <param name="appHost">The app host.</param>
2016-04-24 05:03:49 +02:00
public static void OpenWebClient(IServerApplicationHost appHost)
2013-09-27 19:04:35 +02:00
{
2016-04-24 05:03:49 +02:00
OpenDashboardPage("index.html", appHost);
2013-09-27 19:04:35 +02:00
}
/// <summary>
/// Opens the dashboard.
/// </summary>
/// <param name="appHost">The app host.</param>
2016-04-24 05:03:49 +02:00
public static void OpenDashboard(IServerApplicationHost appHost)
2013-09-27 19:04:35 +02:00
{
2016-04-24 05:03:49 +02:00
OpenDashboardPage("dashboard.html", appHost);
2013-09-27 19:04:35 +02:00
}
2013-09-25 02:54:51 +02:00
/// <summary>
/// Opens the URL.
/// </summary>
/// <param name="url">The URL.</param>
2016-04-24 05:03:49 +02:00
private static void OpenUrl(IServerApplicationHost appHost, string url)
2013-09-25 02:54:51 +02:00
{
try
{
2016-04-24 05:03:49 +02:00
appHost.LaunchUrl(url);
}
catch (NotImplementedException)
{
2013-09-25 02:54:51 +02:00
}
catch (Exception)
2013-09-25 02:54:51 +02:00
{
}
}
}
}