Files
Umbraco-CMS/src/Umbraco.Web/Install/InstallSteps/SetUmbracoVersionStep.cs
emma burstow c5ddba47a8 Update SetUmbracoVersionStep.cs
Punctuation fix
2020-02-10 20:21:35 +01:00

78 lines
3.0 KiB
C#

using System.Threading.Tasks;
using System.Web;
using Umbraco.Core;
using Umbraco.Core.Configuration;
using Umbraco.Core.Logging;
using Umbraco.Core.Services;
using Umbraco.Web.Cache;
using Umbraco.Web.Composing;
using Umbraco.Web.Install.Models;
using Umbraco.Web.Security;
namespace Umbraco.Web.Install.InstallSteps
{
[InstallSetupStep(InstallationType.NewInstall | InstallationType.Upgrade,
"UmbracoVersion", 50, "Installation is complete! Get ready to be redirected to your new CMS.",
PerformsAppRestart = true)]
internal class SetUmbracoVersionStep : InstallSetupStep<object>
{
private readonly HttpContextBase _httpContext;
private readonly InstallHelper _installHelper;
private readonly IGlobalSettings _globalSettings;
private readonly IUserService _userService;
private readonly DistributedCache _distributedCache;
public SetUmbracoVersionStep(HttpContextBase httpContext, InstallHelper installHelper, IGlobalSettings globalSettings, IUserService userService, DistributedCache distributedCache)
{
_httpContext = httpContext;
_installHelper = installHelper;
_globalSettings = globalSettings;
_userService = userService;
_distributedCache = distributedCache;
}
public override Task<InstallSetupResult> ExecuteAsync(object model)
{
var security = new WebSecurity(_httpContext, _userService, _globalSettings);
if (security.IsAuthenticated() == false && _globalSettings.ConfigurationStatus.IsNullOrWhiteSpace())
{
security.PerformLogin(-1);
}
if (security.IsAuthenticated())
{
// when a user is already logged in, we need to check whether it's user 'zero'
// which is the legacy super user from v7 - and then we need to actually log the
// true super user in - but before that we need to log off, else audit events
// will try to reference user zero and fail
var userIdAttempt = security.GetUserId();
if (userIdAttempt && userIdAttempt.Result == 0)
{
security.ClearCurrentLogin();
security.PerformLogin(Constants.Security.SuperUserId);
}
}
else if (_globalSettings.ConfigurationStatus.IsNullOrWhiteSpace())
{
// for installs, we need to log the super user in
security.PerformLogin(Constants.Security.SuperUserId);
}
// Update configurationStatus
_globalSettings.ConfigurationStatus = UmbracoVersion.SemanticVersion.ToSemanticString();
//reports the ended install
_installHelper.InstallStatus(true, "");
return Task.FromResult<InstallSetupResult>(null);
}
public override bool RequiresExecution(object model)
{
return true;
}
}
}