60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using umbraco.cms.businesslogic.packager;
|
|
using Umbraco.Core;
|
|
using Umbraco.Web.Install.Models;
|
|
|
|
namespace Umbraco.Web.Install.InstallSteps
|
|
{
|
|
[InstallSetupStep(InstallationType.NewInstall,
|
|
"StarterKitInstall", 31, "",
|
|
PerformsAppRestart = true)]
|
|
internal class StarterKitInstallStep : InstallSetupStep<object>
|
|
{
|
|
private readonly ApplicationContext _applicationContext;
|
|
private readonly HttpContextBase _httContext;
|
|
|
|
public StarterKitInstallStep(ApplicationContext applicationContext, HttpContextBase httContext)
|
|
{
|
|
_applicationContext = applicationContext;
|
|
_httContext = httContext;
|
|
}
|
|
|
|
|
|
public override InstallSetupResult Execute(object model)
|
|
{
|
|
var installSteps = InstallStatusTracker.GetStatus().ToArray();
|
|
var previousStep = installSteps.Single(x => x.Name == "StarterKitDownload");
|
|
var manifestId = Convert.ToInt32(previousStep.AdditionalData["manifestId"]);
|
|
var packageFile = (string)previousStep.AdditionalData["packageFile"];
|
|
|
|
InstallBusinessLogic(manifestId, packageFile);
|
|
|
|
_applicationContext.RestartApplicationPool(_httContext);
|
|
|
|
return null;
|
|
}
|
|
|
|
private void InstallBusinessLogic(int manifestId, string packageFile)
|
|
{
|
|
packageFile = HttpUtility.UrlDecode(packageFile);
|
|
var installer = new Installer();
|
|
installer.LoadConfig(packageFile);
|
|
installer.InstallBusinessLogic(manifestId, packageFile);
|
|
}
|
|
|
|
public override bool RequiresExecution(object model)
|
|
{
|
|
var installSteps = InstallStatusTracker.GetStatus().ToArray();
|
|
//this step relies on the preious one completed - because it has stored some information we need
|
|
if (installSteps.Any(x => x.Name == "StarterKitDownload" && x.AdditionalData.ContainsKey("manifestId")) == false)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
} |