106 lines
3.1 KiB
C#
106 lines
3.1 KiB
C#
using Microsoft.SharePoint;
|
|
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using Taloyhtio.CondoUpdate.Common;
|
|
|
|
namespace CondoUpdate.ResponsiveLayout.CondoMasterPage
|
|
{
|
|
public class UpdaterImpl : ICondoUpdater
|
|
{
|
|
public event EventHandler<LogEventArgs> OnNotify;
|
|
|
|
public void Update(object args)
|
|
{
|
|
string url = args as string;
|
|
|
|
if (string.IsNullOrEmpty(url))
|
|
{
|
|
this.warn("Url is empty");
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
this.updateImpl(url);
|
|
}
|
|
catch (Exception x)
|
|
{
|
|
this.error("Error occured during updating of Condo '{0}':\n{1}\n{2}", url, x.Message, x.StackTrace);
|
|
}
|
|
}
|
|
|
|
private void updateImpl(string url)
|
|
{
|
|
using (var site = new SPSite(url))
|
|
{
|
|
using (var web = site.OpenWeb())
|
|
{
|
|
if (!web.Exists)
|
|
{
|
|
this.warn("Web site '{0}' doesn't exist. It will be ignored", url);
|
|
return;
|
|
}
|
|
|
|
Thread.CurrentThread.CurrentUICulture = new CultureInfo((int)web.Language);
|
|
this.fixWebs(web);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void fixWebs(SPWeb web)
|
|
{
|
|
this.fixWeb(web);
|
|
foreach (SPWeb subWeb in web.Webs)
|
|
{
|
|
this.fixWebs(subWeb);
|
|
}
|
|
}
|
|
|
|
private void fixWeb(SPWeb web)
|
|
{
|
|
bool oldAllowUnsafe = web.AllowUnsafeUpdates;
|
|
web.AllowUnsafeUpdates = true;
|
|
|
|
// first, explicitly set new masterpages
|
|
web.CustomMasterUrl = web.CustomMasterUrl.Replace(Path.GetFileName(web.CustomMasterUrl), "taloyhtio_responsive_layout.master");
|
|
web.MasterUrl = web.MasterUrl.Replace(Path.GetFileName(web.MasterUrl), "taloyhtio_responsive_layout_system.master");
|
|
web.AllProperties["__InheritsMasterUrl"] = "False";
|
|
web.AllProperties["__InheritsCustomMasterUrl"] = "False";
|
|
web.Update();
|
|
|
|
// then force web to inherit masterpages
|
|
web.AllProperties["__InheritsMasterUrl"] = "True";
|
|
web.AllProperties["__InheritsCustomMasterUrl"] = "True";
|
|
web.Update();
|
|
web.AllowUnsafeUpdates = oldAllowUnsafe;
|
|
}
|
|
|
|
#region notifier
|
|
private void warn(string msg, params object[] args)
|
|
{
|
|
this.notify(LogLevel.Warn, msg, args);
|
|
}
|
|
|
|
private void error(string msg, params object[] args)
|
|
{
|
|
this.notify(LogLevel.Error, msg, args);
|
|
}
|
|
|
|
private void notify(LogLevel level, string msg, params object[] args)
|
|
{
|
|
this.notify(level, string.Format(msg, args));
|
|
}
|
|
|
|
private void notify(LogLevel level, string msg)
|
|
{
|
|
if (this.OnNotify != null)
|
|
{
|
|
this.OnNotify(this, new LogEventArgs { LogLevel = level, Message = msg });
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|