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.
69 lines
2.1 KiB
69 lines
2.1 KiB
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Plugins;
|
|
using MediaBrowser.Model.Logging;
|
|
using MediaBrowser.ServerApplication.Native;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.ServerApplication.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 IUserManager _userManager;
|
|
private readonly ILogger _logger;
|
|
|
|
private readonly IServerConfigurationManager _configurationManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="StartupWizard" /> class.
|
|
/// </summary>
|
|
/// <param name="appHost">The app host.</param>
|
|
/// <param name="userManager">The user manager.</param>
|
|
public StartupWizard(IServerApplicationHost appHost, IUserManager userManager, IServerConfigurationManager configurationManager, ILogger logger)
|
|
{
|
|
_appHost = appHost;
|
|
_logger = logger;
|
|
_userManager = userManager;
|
|
_configurationManager = configurationManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Runs this instance.
|
|
/// </summary>
|
|
public void Run()
|
|
{
|
|
if (_appHost.IsFirstRun)
|
|
{
|
|
LaunchStartupWizard();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Launches the startup wizard.
|
|
/// </summary>
|
|
private void LaunchStartupWizard()
|
|
{
|
|
var user = _userManager.Users.FirstOrDefault(u => u.Configuration.IsAdministrator);
|
|
|
|
BrowserLauncher.OpenDashboardPage("wizardstart.html", user, _configurationManager, _appHost, _logger);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
}
|
|
}
|
|
} |