84 lines
2.1 KiB
C#
84 lines
2.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
using Umbraco.Core.Cache;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Web.Cache
|
|
{
|
|
public sealed class MemberGroupCacheRefresher : JsonCacheRefresherBase<MemberGroupCacheRefresher>
|
|
{
|
|
public MemberGroupCacheRefresher(CacheHelper cacheHelper)
|
|
: base(cacheHelper)
|
|
{ }
|
|
|
|
#region Define
|
|
|
|
protected override MemberGroupCacheRefresher This => this;
|
|
|
|
public static readonly Guid UniqueId = Guid.Parse("187F236B-BD21-4C85-8A7C-29FBA3D6C00C");
|
|
|
|
public override Guid RefresherUniqueId => UniqueId;
|
|
|
|
public override string Name => "Member Group Cache Refresher";
|
|
|
|
#endregion
|
|
|
|
#region Refresher
|
|
|
|
public override void Refresh(string json)
|
|
{
|
|
ClearCache();
|
|
base.Refresh(json);
|
|
}
|
|
|
|
public override void Refresh(int id)
|
|
{
|
|
ClearCache();
|
|
base.Refresh(id);
|
|
}
|
|
|
|
public override void Remove(int id)
|
|
{
|
|
ClearCache();
|
|
base.Remove(id);
|
|
}
|
|
|
|
private void ClearCache()
|
|
{
|
|
// Since we cache by group name, it could be problematic when renaming to
|
|
// previously existing names - see http://issues.umbraco.org/issue/U4-10846.
|
|
// To work around this, just clear all the cache items
|
|
CacheHelper.IsolatedRuntimeCache.ClearCache<IMemberGroup>();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Json
|
|
|
|
public class JsonPayload
|
|
{
|
|
public JsonPayload(int id, string name)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
public int Id { get; }
|
|
}
|
|
|
|
private JsonPayload[] Deserialize(string json)
|
|
{
|
|
return JsonConvert.DeserializeObject<JsonPayload[]>(json);
|
|
}
|
|
|
|
internal static string Serialize(params IMemberGroup[] groups)
|
|
{
|
|
return JsonConvert.SerializeObject(groups.Select(x => new JsonPayload(x.Id, x.Name)).ToArray());
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|