2013-09-25 00:54:51 +00:00
|
|
|
|
using MediaBrowser.Controller;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Browser
|
2013-09-25 00:54:51 +00:00
|
|
|
|
{
|
2013-09-27 17:04:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BrowserLauncher
|
|
|
|
|
/// </summary>
|
2013-09-25 00:54:51 +00: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 03:03:49 +00:00
|
|
|
|
public static void OpenDashboardPage(string page, IServerApplicationHost appHost)
|
2013-09-25 00:54:51 +00:00
|
|
|
|
{
|
2015-02-10 05:54:58 +00:00
|
|
|
|
var url = appHost.GetLocalApiUrl("localhost") + "/web/" + page;
|
2013-09-25 00:54:51 +00:00
|
|
|
|
|
2016-04-24 03:03:49 +00:00
|
|
|
|
OpenUrl(appHost, url);
|
2013-09-25 00:54:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-27 17:04:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Opens the community.
|
|
|
|
|
/// </summary>
|
2016-04-24 03:03:49 +00:00
|
|
|
|
public static void OpenCommunity(IServerApplicationHost appHost)
|
2013-09-27 17:04:35 +00:00
|
|
|
|
{
|
2016-04-24 03:03:49 +00:00
|
|
|
|
OpenUrl(appHost, "http://emby.media/community");
|
2013-09-27 17:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Opens the web client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appHost">The app host.</param>
|
2016-04-24 03:03:49 +00:00
|
|
|
|
public static void OpenWebClient(IServerApplicationHost appHost)
|
2013-09-27 17:04:35 +00:00
|
|
|
|
{
|
2016-04-24 03:03:49 +00:00
|
|
|
|
OpenDashboardPage("index.html", appHost);
|
2013-09-27 17:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Opens the dashboard.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appHost">The app host.</param>
|
2016-04-24 03:03:49 +00:00
|
|
|
|
public static void OpenDashboard(IServerApplicationHost appHost)
|
2013-09-27 17:04:35 +00:00
|
|
|
|
{
|
2016-04-24 03:03:49 +00:00
|
|
|
|
OpenDashboardPage("dashboard.html", appHost);
|
2013-09-27 17:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-25 00:54:51 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Opens the URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="url">The URL.</param>
|
2016-04-24 03:03:49 +00:00
|
|
|
|
private static void OpenUrl(IServerApplicationHost appHost, string url)
|
2013-09-25 00:54:51 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-04-24 03:03:49 +00:00
|
|
|
|
appHost.LaunchUrl(url);
|
|
|
|
|
}
|
|
|
|
|
catch (NotImplementedException)
|
|
|
|
|
{
|
|
|
|
|
|
2013-09-25 00:54:51 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2016-04-24 03:03:49 +00:00
|
|
|
|
Console.WriteLine("Error launching url: " + url);
|
2013-12-05 16:50:21 +00:00
|
|
|
|
Console.WriteLine(ex.Message);
|
2013-09-25 00:54:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|