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.
61 lines
1.8 KiB
61 lines
1.8 KiB
using System;
|
|
using Emby.Server.Implementations.Browser;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Plugins;
|
|
using MediaBrowser.Model.Logging;
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
namespace Emby.Server.Implementations.EntryPoints
|
|
{
|
|
/// <summary>
|
|
/// Class StartupWizard
|
|
/// </summary>
|
|
public class StartupWizard : IServerEntryPoint
|
|
{
|
|
/// <summary>
|
|
/// The _app host
|
|
/// </summary>
|
|
private readonly IServerApplicationHost _appHost;
|
|
/// <summary>
|
|
/// The _user manager
|
|
/// </summary>
|
|
private readonly ILogger _logger;
|
|
|
|
private IServerConfigurationManager _config;
|
|
|
|
public StartupWizard(IServerApplicationHost appHost, ILogger logger, IServerConfigurationManager config)
|
|
{
|
|
_appHost = appHost;
|
|
_logger = logger;
|
|
_config = config;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Runs this instance.
|
|
/// </summary>
|
|
public void Run()
|
|
{
|
|
if (_appHost.IsFirstRun)
|
|
{
|
|
BrowserLauncher.OpenDashboardPage("wizardstart.html", _appHost);
|
|
}
|
|
else if (_config.Configuration.IsStartupWizardCompleted)
|
|
{
|
|
var options = ((ApplicationHost)_appHost).StartupOptions;
|
|
|
|
if (!options.ContainsOption("-service") && !options.ContainsOption("-nobrowser"))
|
|
{
|
|
BrowserLauncher.OpenDashboardPage("index.html", _appHost);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
} |