jellyfin/MediaBrowser.Server.Startup.Common/Browser/BrowserLauncher.cs

102 lines
3.1 KiB
C#
Raw Normal View History

2013-09-25 02:54:51 +02:00
using MediaBrowser.Controller;
using MediaBrowser.Model.Logging;
using System;
using System.Diagnostics;
namespace MediaBrowser.Server.Startup.Common.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>
2013-09-27 19:04:35 +02:00
/// <param name="logger">The logger.</param>
2014-11-03 04:38:43 +01:00
public static void OpenDashboardPage(string page, IServerApplicationHost appHost, ILogger logger)
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
OpenUrl(url, logger);
}
2013-09-27 19:04:35 +02:00
/// <summary>
/// Opens the community.
/// </summary>
/// <param name="logger">The logger.</param>
public static void OpenCommunity(ILogger logger)
{
2015-03-21 19:12:12 +01:00
OpenUrl("http://emby.media/community", logger);
2013-09-27 19:04:35 +02:00
}
/// <summary>
/// Opens the web client.
/// </summary>
/// <param name="appHost">The app host.</param>
/// <param name="logger">The logger.</param>
2014-11-03 04:38:43 +01:00
public static void OpenWebClient(IServerApplicationHost appHost, ILogger logger)
2013-09-27 19:04:35 +02:00
{
2014-11-03 04:38:43 +01:00
OpenDashboardPage("index.html", appHost, logger);
2013-09-27 19:04:35 +02:00
}
/// <summary>
/// Opens the dashboard.
/// </summary>
/// <param name="appHost">The app host.</param>
/// <param name="logger">The logger.</param>
2014-11-03 04:38:43 +01:00
public static void OpenDashboard(IServerApplicationHost appHost, ILogger logger)
2013-09-27 19:04:35 +02:00
{
2016-03-16 19:09:58 +01:00
OpenDashboardPage("dashboard.html", appHost, logger);
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>
2013-09-27 19:04:35 +02:00
/// <param name="logger">The logger.</param>
private static void OpenUrl(string url, ILogger logger)
2013-09-25 02:54:51 +02:00
{
var process = new Process
{
StartInfo = new ProcessStartInfo
2013-09-25 02:54:51 +02:00
{
FileName = url
},
2013-09-25 02:54:51 +02:00
EnableRaisingEvents = true,
};
2013-09-25 02:54:51 +02:00
process.Exited += ProcessExited;
try
{
process.Start();
}
catch (Exception ex)
{
logger.ErrorException("Error launching url: {0}", ex, url);
2015-02-10 06:54:58 +01:00
Console.WriteLine("Error launching url: {0}", ex.Message);
Console.WriteLine(ex.Message);
2014-10-07 01:58:46 +02:00
//#if !__MonoCS__
// System.Windows.Forms.MessageBox.Show("There was an error launching your web browser. Please check your default browser settings.");
//#endif
2013-09-25 02:54:51 +02:00
}
}
/// <summary>
/// Processes the exited.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
private static void ProcessExited(object sender, EventArgs e)
{
((Process)sender).Dispose();
}
}
}