using System; using System.Globalization; using System.Linq; using System.Threading; using Microsoft.SharePoint; using Microsoft.SharePoint.Utilities; using Taloyhtio.CondoUpdate.Common; namespace CondoUpdate.AddReimariConsumptionsPage { public class UpdaterImpl:ICondoUpdater { private readonly Guid FEATURE_ID = new Guid("d661952e-911f-4f4f-86ca-b017fe93262d"); public event EventHandler OnNotify; public void Update(object args) { string url = args as string; if (string.IsNullOrEmpty(url)) { this.warn("Url is empty"); return; } try { this.updateImpl(SPUrlUtility.CombineUrl(url, "hallitukselle")); } 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) { try { using (var site = new SPSite(url)) { using (var web = site.OpenWeb()) { if (!web.Exists) { return; } Thread.CurrentThread.CurrentUICulture = new CultureInfo((int)web.Language); if (!web.Features.Any(f => f.DefinitionId == FEATURE_ID)) { web.Features.Add(FEATURE_ID); } } } } catch (Exception ex) { this.error("Error occured when update '{0}' site:\n{1}\n{2}", url, ex.Message, ex.StackTrace); } } private void info(string msg, params object[] args) { this.notify(LogLevel.Info, msg, args); } 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 }); } } } }