2012-10-31 11:36:22 +06:00
|
|
|
using System;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Caching;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using System.Web.Mvc.Html;
|
|
|
|
|
using Umbraco.Core;
|
2013-02-06 09:53:13 +06:00
|
|
|
using Umbraco.Core.Configuration;
|
2013-02-07 03:29:47 +06:00
|
|
|
using Umbraco.Web.Cache;
|
2012-10-31 11:36:22 +06:00
|
|
|
using umbraco.cms.businesslogic;
|
|
|
|
|
using umbraco.cms.businesslogic.web;
|
2013-02-06 09:53:13 +06:00
|
|
|
using umbraco.presentation.cache;
|
2012-10-31 11:36:22 +06:00
|
|
|
|
|
|
|
|
namespace Umbraco.Web
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Extension methods for the cache helper
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal static class CacheHelperExtensions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Application event handler to bind to events to clear the cache for the cache helper extensions
|
2013-02-06 09:53:13 +06:00
|
|
|
/// </summary>
|
|
|
|
|
internal sealed class CacheHelperApplicationEventListener : ApplicationEventHandler
|
2012-10-31 11:36:22 +06:00
|
|
|
{
|
2013-02-02 02:43:02 +06:00
|
|
|
protected override void ApplicationInitialized(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
|
2012-10-31 11:36:22 +06:00
|
|
|
{
|
2013-01-29 09:45:12 +06:00
|
|
|
if (applicationContext != null)
|
2012-10-31 11:36:22 +06:00
|
|
|
{
|
|
|
|
|
//bind to events to clear the cache, after publish, after media save and after member save
|
|
|
|
|
|
|
|
|
|
Document.AfterPublish
|
|
|
|
|
+= (sender, args) =>
|
2013-01-29 09:45:12 +06:00
|
|
|
applicationContext.ApplicationCache.ClearPartialViewCache();
|
2012-10-31 11:36:22 +06:00
|
|
|
|
|
|
|
|
global::umbraco.cms.businesslogic.media.Media.AfterSave
|
|
|
|
|
+= (sender, args) =>
|
2013-01-29 09:45:12 +06:00
|
|
|
applicationContext.ApplicationCache.ClearPartialViewCache();
|
2012-10-31 11:36:22 +06:00
|
|
|
|
|
|
|
|
global::umbraco.cms.businesslogic.member.Member.AfterSave
|
|
|
|
|
+= (sender, args) =>
|
2013-01-29 09:45:12 +06:00
|
|
|
applicationContext.ApplicationCache.ClearPartialViewCache();
|
2012-10-31 11:36:22 +06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public const string PartialViewCacheKey = "Umbraco.Web.PartialViewCacheKey";
|
2013-02-06 09:53:13 +06:00
|
|
|
private const string TemplateCacheKey = "template";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clears the cache for a template
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cacheHelper"></param>
|
|
|
|
|
/// <param name="templateId"></param>
|
|
|
|
|
public static void ClearCacheForTemplate(this CacheHelper cacheHelper, int templateId)
|
|
|
|
|
{
|
|
|
|
|
cacheHelper.ClearCacheByKeySearch(
|
|
|
|
|
string.Format("{0}{1}", TemplateCacheKey, templateId));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clears the library cache for media
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cacheHelper"></param>
|
|
|
|
|
/// <param name="mediaId"></param>
|
|
|
|
|
/// <param name="allServers">
|
|
|
|
|
/// If set to false, this will only clear the library cache for the current server, not all servers registered in the
|
|
|
|
|
/// server farm. In most cases if you are clearing cache you would probably clear it on all servers.
|
|
|
|
|
/// </param>
|
|
|
|
|
public static void ClearLibraryCacheForMedia(this CacheHelper cacheHelper, int mediaId, bool allServers = true)
|
|
|
|
|
{
|
|
|
|
|
const string getmediaCacheKey = "GetMedia";
|
|
|
|
|
|
|
|
|
|
if (allServers && UmbracoSettings.UseDistributedCalls)
|
|
|
|
|
{
|
2013-02-07 03:29:47 +06:00
|
|
|
DistributedCache.Instance.Refresh(
|
2013-02-06 09:53:13 +06:00
|
|
|
new Guid("B29286DD-2D40-4DDB-B325-681226589FEC"),
|
|
|
|
|
mediaId);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var m = new global::umbraco.cms.businesslogic.media.Media(mediaId);
|
|
|
|
|
if (m.nodeObjectType == global::umbraco.cms.businesslogic.media.Media._objectType)
|
|
|
|
|
{
|
|
|
|
|
foreach (string id in m.Path.Split(','))
|
|
|
|
|
{
|
|
|
|
|
cacheHelper.ClearCacheByKeySearch(
|
|
|
|
|
string.Format("UL_{0}_{1}_True", getmediaCacheKey, id));
|
|
|
|
|
|
|
|
|
|
// Also clear calls that only query this specific item!
|
|
|
|
|
if (id == m.Id.ToString())
|
|
|
|
|
cacheHelper.ClearCacheByKeySearch(
|
|
|
|
|
string.Format("UL_{0}_{1}", getmediaCacheKey, id));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clears the library cache for members
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cacheHelper"></param>
|
|
|
|
|
/// <param name="memberId"></param>
|
|
|
|
|
/// <param name="allServers">
|
|
|
|
|
/// If set to false, this will only clear the library cache for the current server, not all servers registered in the
|
|
|
|
|
/// server farm. In most cases if you are clearing cache you would probably clear it on all servers.
|
|
|
|
|
/// </param>
|
|
|
|
|
public static void ClearLibraryCacheForMember(this CacheHelper cacheHelper, int memberId, bool allServers = true)
|
|
|
|
|
{
|
|
|
|
|
const string getmemberCacheKey = "GetMember";
|
|
|
|
|
|
|
|
|
|
if (allServers && UmbracoSettings.UseDistributedCalls)
|
|
|
|
|
{
|
2013-02-07 03:58:47 +06:00
|
|
|
DistributedCache.Instance.RefreshMemberCache(memberId);
|
2013-02-06 09:53:13 +06:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cacheHelper.ClearCacheByKeySearch(
|
|
|
|
|
string.Format("UL_{0}_{1}", getmemberCacheKey, memberId));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2012-10-31 11:36:22 +06:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Outputs and caches a partial view in MVC
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cacheHelper"></param>
|
|
|
|
|
/// <param name="htmlHelper"></param>
|
|
|
|
|
/// <param name="partialViewName"></param>
|
|
|
|
|
/// <param name="model"></param>
|
2012-10-31 11:43:14 +06:00
|
|
|
/// <param name="cachedSeconds"></param>
|
2012-10-31 11:36:22 +06:00
|
|
|
/// <param name="cacheKey">used to cache the partial view, this key could change if it is cached by page or by member</param>
|
|
|
|
|
/// <param name="viewData"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public static IHtmlString CachedPartialView(
|
|
|
|
|
this CacheHelper cacheHelper,
|
|
|
|
|
HtmlHelper htmlHelper,
|
|
|
|
|
string partialViewName,
|
|
|
|
|
object model,
|
2012-10-31 11:43:14 +06:00
|
|
|
int cachedSeconds,
|
2012-10-31 11:36:22 +06:00
|
|
|
string cacheKey,
|
|
|
|
|
ViewDataDictionary viewData = null)
|
|
|
|
|
{
|
|
|
|
|
return cacheHelper.GetCacheItem(
|
|
|
|
|
PartialViewCacheKey + cacheKey,
|
|
|
|
|
CacheItemPriority.NotRemovable, //not removable, the same as macros (apparently issue #27610)
|
|
|
|
|
null,
|
2012-10-31 11:43:14 +06:00
|
|
|
new TimeSpan(0, 0, 0, cachedSeconds),
|
2012-10-31 11:36:22 +06:00
|
|
|
() => htmlHelper.Partial(partialViewName, model, viewData));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clears the cache for partial views
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cacheHelper"></param>
|
|
|
|
|
public static void ClearPartialViewCache(this CacheHelper cacheHelper)
|
|
|
|
|
{
|
|
|
|
|
cacheHelper.ClearCacheByKeySearch(PartialViewCacheKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|