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

52 lines
1.3 KiB
C#
Raw Normal View History

using System;
using MediaBrowser.Controller;
2013-09-25 02:54:51 +02:00
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>
2018-09-12 19:26:21 +02:00
private 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 web client.
/// </summary>
/// <param name="appHost">The app host.</param>
2018-09-12 19:26:21 +02:00
public static void OpenWebApp(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
}
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);
}
2017-11-21 23:14:56 +01:00
catch (NotSupportedException)
2016-04-24 05:03:49 +02:00
{
2019-01-08 00:27:46 +01:00
2013-09-25 02:54:51 +02:00
}
catch (Exception)
2013-09-25 02:54:51 +02:00
{
}
}
}
}