You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.6 KiB
84 lines
2.6 KiB
using System.Threading.Tasks;
|
|
using Emby.Server.Implementations.Browser;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Extensions;
|
|
using MediaBrowser.Controller.Plugins;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
|
{
|
|
/// <summary>
|
|
/// Class StartupWizard.
|
|
/// </summary>
|
|
public sealed class StartupWizard : IServerEntryPoint
|
|
{
|
|
private readonly IServerApplicationHost _appHost;
|
|
private readonly IConfiguration _appConfig;
|
|
private readonly IServerConfigurationManager _config;
|
|
private readonly IStartupOptions _startupOptions;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="StartupWizard"/> class.
|
|
/// </summary>
|
|
/// <param name="appHost">The application host.</param>
|
|
/// <param name="appConfig">The application configuration.</param>
|
|
/// <param name="config">The configuration manager.</param>
|
|
/// <param name="startupOptions">The application startup options.</param>
|
|
public StartupWizard(
|
|
IServerApplicationHost appHost,
|
|
IConfiguration appConfig,
|
|
IServerConfigurationManager config,
|
|
IStartupOptions startupOptions)
|
|
{
|
|
_appHost = appHost;
|
|
_appConfig = appConfig;
|
|
_config = config;
|
|
_startupOptions = startupOptions;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public Task RunAsync()
|
|
{
|
|
Run();
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
private void Run()
|
|
{
|
|
if (!_appHost.CanLaunchWebBrowser)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Always launch the startup wizard if possible when it has not been completed
|
|
if (!_config.Configuration.IsStartupWizardCompleted && _appConfig.HostWebClient())
|
|
{
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
|
return;
|
|
}
|
|
|
|
// Do nothing if the web app is configured to not run automatically
|
|
if (!_config.Configuration.AutoRunWebApp || _startupOptions.NoAutoRunWebApp)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Launch the swagger page if the web client is not hosted, otherwise open the web client
|
|
if (_appConfig.HostWebClient())
|
|
{
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
|
}
|
|
else
|
|
{
|
|
BrowserLauncher.OpenSwaggerPage(_appHost);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|