2019-01-27 15:40:37 +01:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 20:54:44 +01:00
|
|
|
using Emby.Server.Implementations.Browser;
|
2016-11-19 00:52:49 -05:00
|
|
|
using MediaBrowser.Controller;
|
2019-01-13 20:20:41 +01:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-03-03 00:20:14 -05:00
|
|
|
using MediaBrowser.Controller.Plugins;
|
2018-12-13 14:18:25 +01:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-03-03 00:20:14 -05:00
|
|
|
|
2016-11-19 00:52:49 -05:00
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
2013-03-03 00:20:14 -05:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-11-01 18:38:54 +01:00
|
|
|
/// Class StartupWizard.
|
2013-03-03 00:20:14 -05:00
|
|
|
/// </summary>
|
|
|
|
|
public class StartupWizard : IServerEntryPoint
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-11-01 18:38:54 +01:00
|
|
|
/// The _app host.
|
2013-03-03 00:20:14 -05:00
|
|
|
/// </summary>
|
2013-06-03 14:15:35 -04:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2019-11-01 18:38:54 +01:00
|
|
|
|
2013-03-03 00:20:14 -05:00
|
|
|
/// <summary>
|
2019-11-01 18:38:54 +01:00
|
|
|
/// The _user manager.
|
2013-03-03 00:20:14 -05:00
|
|
|
/// </summary>
|
2013-05-29 10:23:27 -04:00
|
|
|
private readonly ILogger _logger;
|
2013-03-03 00:20:14 -05:00
|
|
|
|
2017-11-21 17:14:56 -05:00
|
|
|
private IServerConfigurationManager _config;
|
|
|
|
|
|
2019-11-01 18:38:54 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="StartupWizard"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="appHost">The application host.</param>
|
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
|
/// <param name="config">The configuration manager.</param>
|
2017-11-21 17:14:56 -05:00
|
|
|
public StartupWizard(IServerApplicationHost appHost, ILogger logger, IServerConfigurationManager config)
|
2013-03-03 00:20:14 -05:00
|
|
|
{
|
|
|
|
|
_appHost = appHost;
|
2013-09-24 20:54:51 -04:00
|
|
|
_logger = logger;
|
2017-11-21 17:14:56 -05:00
|
|
|
_config = config;
|
2013-03-03 00:20:14 -05:00
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:38:54 +01:00
|
|
|
/// <inheritdoc />
|
2019-01-27 15:40:37 +01:00
|
|
|
public Task RunAsync()
|
2013-03-03 00:20:14 -05:00
|
|
|
{
|
2017-12-03 17:14:35 -05:00
|
|
|
if (!_appHost.CanLaunchWebBrowser)
|
|
|
|
|
{
|
2019-01-27 15:40:37 +01:00
|
|
|
return Task.CompletedTask;
|
2017-12-03 17:14:35 -05:00
|
|
|
}
|
|
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
if (!_config.Configuration.IsStartupWizardCompleted)
|
2013-03-03 00:20:14 -05:00
|
|
|
{
|
2018-09-12 19:26:21 +02:00
|
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
2017-11-21 17:14:56 -05:00
|
|
|
}
|
2018-09-12 19:26:21 +02:00
|
|
|
else if (_config.Configuration.AutoRunWebApp)
|
2017-11-21 17:14:56 -05:00
|
|
|
{
|
2017-12-01 12:03:40 -05:00
|
|
|
var options = ((ApplicationHost)_appHost).StartupOptions;
|
|
|
|
|
|
2019-01-28 21:45:00 +00:00
|
|
|
if (!options.NoAutoRunWebApp)
|
2017-12-01 12:03:40 -05:00
|
|
|
{
|
2018-09-12 19:26:21 +02:00
|
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
2017-12-01 12:03:40 -05:00
|
|
|
}
|
2013-03-03 00:20:14 -05:00
|
|
|
}
|
2019-01-27 15:40:37 +01:00
|
|
|
|
|
|
|
|
return Task.CompletedTask;
|
2013-03-03 00:20:14 -05:00
|
|
|
}
|
|
|
|
|
|
2019-11-01 18:38:54 +01:00
|
|
|
/// <inheritdoc />
|
2013-03-03 00:20:14 -05:00
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-13 14:18:25 +01:00
|
|
|
}
|