forked from adoprog/Sitecore-Deployment-Helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstallPackages.aspx
85 lines (80 loc) · 2.51 KB
/
InstallPackages.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Text.RegularExpressions" %>
<%@ Import Namespace="System.Configuration" %>
<%@ Import Namespace="log4net" %>
<%@ Import Namespace="Sitecore.Data.Engines" %>
<%@ Import Namespace="Sitecore.Data.Proxies" %>
<%@ Import Namespace="Sitecore.SecurityModel" %>
<%@ Import Namespace="Sitecore.Update" %>
<%@ Import Namespace="Sitecore.Update.Installer" %>
<%@ Import Namespace="Sitecore.Update.Installer.Exceptions" %>
<%@ Import Namespace="Sitecore.Update.Installer.Installer.Utils" %>
<%@ Import Namespace="Sitecore.Update.Installer.Utils" %>
<%@ Import Namespace="Sitecore.Update.Utils" %>
<%@ Language=C# %>
<HTML>
<script runat="server" language="C#">
public void Page_Load(object sender, EventArgs e)
{
var files = Directory.GetFiles(Server.MapPath("/sitecore/admin/Packages"), "*.update", SearchOption.AllDirectories);
Sitecore.Context.SetActiveSite("shell");
using (new SecurityDisabler())
{
using (new ProxyDisabler())
{
using (new SyncOperationContext())
{
foreach (var file in files)
{
Install(file);
Response.Write("Installed Package: " + file + "<br>");
}
}
}
}
}
protected static string Install(string package)
{
var log = LogManager.GetLogger("LogFileAppender");
string result;
using (new ShutdownGuard())
{
var installationInfo = new PackageInstallationInfo
{
Action = UpgradeAction.Upgrade,
Mode = InstallMode.Install,
Path = package
};
string text = null;
List<ContingencyEntry> entries = null;
try
{
entries = UpdateHelper.Install(installationInfo, log, out text);
}
catch (PostStepInstallerException ex)
{
entries = ex.Entries;
text = ex.HistoryPath;
throw;
}
finally
{
UpdateHelper.SaveInstallationMessages(entries, text);
}
result = text;
}
return result;
}
protected String GetTime()
{
return DateTime.Now.ToString("t");
}
</script>
<body>
<form id="MyForm" runat="server">
<div>This page installs packages from \sitecore\admin\Packages folder.</div>
Current server time is <% =GetTime()%>
</form>
</body>
</HTML>