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;
|
2013-03-02 22:20:14 -07:00
|
|
|
using MediaBrowser.Controller.Plugins;
|
2018-12-13 06:18:25 -07:00
|
|
|
using Microsoft.Extensions.Logging;
|
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>
|
|
|
|
/// Class StartupWizard
|
|
|
|
/// </summary>
|
|
|
|
public class StartupWizard : IServerEntryPoint
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The _app host
|
|
|
|
/// </summary>
|
2013-06-03 11:15:35 -07:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
2013-03-02 22:20:14 -07:00
|
|
|
/// <summary>
|
|
|
|
/// The _user manager
|
|
|
|
/// </summary>
|
2013-05-29 07:23:27 -07:00
|
|
|
private readonly ILogger _logger;
|
2013-03-02 22:20:14 -07:00
|
|
|
|
2017-11-21 15:14:56 -07:00
|
|
|
private IServerConfigurationManager _config;
|
|
|
|
|
|
|
|
public StartupWizard(IServerApplicationHost appHost, ILogger logger, IServerConfigurationManager config)
|
2013-03-02 22:20:14 -07:00
|
|
|
{
|
|
|
|
_appHost = appHost;
|
2013-09-24 17:54:51 -07:00
|
|
|
_logger = logger;
|
2017-11-21 15:14:56 -07:00
|
|
|
_config = config;
|
2013-03-02 22:20:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Runs this instance.
|
|
|
|
/// </summary>
|
|
|
|
public void Run()
|
|
|
|
{
|
2017-12-03 15:14:35 -07:00
|
|
|
if (!_appHost.CanLaunchWebBrowser)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (!_config.Configuration.IsStartupWizardCompleted)
|
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
|
|
|
}
|
2018-09-12 10:26:21 -07:00
|
|
|
else if (_config.Configuration.AutoRunWebApp)
|
2017-11-21 15:14:56 -07:00
|
|
|
{
|
2017-12-01 10:03:40 -07:00
|
|
|
var options = ((ApplicationHost)_appHost).StartupOptions;
|
|
|
|
|
2017-12-03 15:14:35 -07:00
|
|
|
if (!options.ContainsOption("-noautorunwebapp"))
|
2017-12-01 10:03:40 -07:00
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
BrowserLauncher.OpenWebApp(_appHost);
|
2017-12-01 10:03:40 -07:00
|
|
|
}
|
2013-03-02 22:20:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
|
|
/// </summary>
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 06:18:25 -07:00
|
|
|
}
|