2019-01-27 14:40:37 +00:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:54:44 +00:00
|
|
|
using Emby.Server.Implementations.Browser;
|
2016-11-19 05:52:49 +00:00
|
|
|
using MediaBrowser.Controller;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2020-02-28 19:49:04 +00:00
|
|
|
using MediaBrowser.Controller.Extensions;
|
2013-03-03 05:20:14 +00:00
|
|
|
using MediaBrowser.Controller.Plugins;
|
2020-02-28 19:49:04 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2013-03-03 05:20:14 +00:00
|
|
|
|
2016-11-19 05:52:49 +00:00
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
2013-03-03 05:20:14 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-11-01 17:38:54 +00:00
|
|
|
/// Class StartupWizard.
|
2013-03-03 05:20:14 +00:00
|
|
|
/// </summary>
|
2020-02-06 14:20:23 +00:00
|
|
|
public sealed class StartupWizard : IServerEntryPoint
|
2013-03-03 05:20:14 +00:00
|
|
|
{
|
2013-06-03 18:15:35 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2020-03-20 12:13:20 +00:00
|
|
|
private readonly IConfiguration _appConfig;
|
2020-02-06 14:20:23 +00:00
|
|
|
private readonly IServerConfigurationManager _config;
|
2020-04-05 03:14:35 +00:00
|
|
|
private readonly IStartupOptions _startupOptions;
|
2017-11-21 22:14:56 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="StartupWizard"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="appHost">The application host.</param>
|
2020-04-05 03:14:35 +00:00
|
|
|
/// <param name="appConfig">The application configuration.</param>
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <param name="config">The configuration manager.</param>
|
2020-04-05 03:14:35 +00:00
|
|
|
/// <param name="startupOptions">The application startup options.</param>
|
|
|
|
public StartupWizard(
|
|
|
|
IServerApplicationHost appHost,
|
|
|
|
IConfiguration appConfig,
|
|
|
|
IServerConfigurationManager config,
|
|
|
|
IStartupOptions startupOptions)
|
2013-03-03 05:20:14 +00:00
|
|
|
{
|
|
|
|
_appHost = appHost;
|
2020-03-20 12:13:20 +00:00
|
|
|
_appConfig = appConfig;
|
2017-11-21 22:14:56 +00:00
|
|
|
_config = config;
|
2020-04-05 03:14:35 +00:00
|
|
|
_startupOptions = startupOptions;
|
2013-03-03 05:20:14 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-27 14:40:37 +00:00
|
|
|
public Task RunAsync()
|
2020-04-20 18:48:12 +00:00
|
|
|
{
|
|
|
|
Run();
|
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void Run()
|
2013-03-03 05:20:14 +00:00
|
|
|
{
|
2017-12-03 22:14:35 +00:00
|
|
|
if (!_appHost.CanLaunchWebBrowser)
|
|
|
|
{
|
2020-04-20 18:48:12 +00:00
|
|
|
return;
|
2017-12-03 22:14:35 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 18:48:12 +00:00
|
|
|
// Always launch the startup wizard if possible when it has not been completed
|
|
|
|
if (!_config.Configuration.IsStartupWizardCompleted && _appConfig.HostWebClient())
|
2020-02-25 16:01:57 +00:00
|
|
|
{
|
2020-04-20 18:48:12 +00:00
|
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
|
|
|
return;
|
2020-02-25 16:01:57 +00:00
|
|
|
}
|
2020-04-20 18:48:12 +00:00
|
|
|
|
|
|
|
// Do nothing if the web app is configured to not run automatically
|
2020-04-22 12:25:31 +00:00
|
|
|
if (!_config.Configuration.AutoRunWebApp || _startupOptions.NoAutoRunWebApp)
|
2020-04-20 18:48:12 +00:00
|
|
|
{
|
|
|
|
return;
|
2020-02-25 16:01:57 +00:00
|
|
|
}
|
2020-04-20 18:48:12 +00:00
|
|
|
|
|
|
|
// Launch the swagger page if the web client is not hosted, otherwise open the web client
|
|
|
|
if (_appConfig.HostWebClient())
|
2013-03-03 05:20:14 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
2017-11-21 22:14:56 +00:00
|
|
|
}
|
2020-04-20 18:48:12 +00:00
|
|
|
else
|
2017-11-21 22:14:56 +00:00
|
|
|
{
|
2020-04-20 18:48:12 +00:00
|
|
|
BrowserLauncher.OpenSwaggerPage(_appHost);
|
2013-03-03 05:20:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2013-03-03 05:20:14 +00:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 13:18:25 +00:00
|
|
|
}
|