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