176 lines
6.8 KiB
C#
176 lines
6.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Models;
|
|
using Umbraco.Core.Models.Membership;
|
|
using Umbraco.Core.Models.PublishedContent;
|
|
using Umbraco.Web.Models;
|
|
|
|
namespace Umbraco.Web.PublishedCache
|
|
{
|
|
/// <summary>
|
|
/// Exposes a member object as IPublishedContent
|
|
/// </summary>
|
|
public sealed class PublishedMember : PublishedContentBase
|
|
{
|
|
private readonly IMember _member;
|
|
private readonly IMembershipUser _membershipUser;
|
|
private readonly IPublishedProperty[] _properties;
|
|
private readonly PublishedContentType _publishedMemberType;
|
|
|
|
public PublishedMember(IMember member, PublishedContentType publishedMemberType)
|
|
{
|
|
_member = member ?? throw new ArgumentNullException(nameof(member));
|
|
_membershipUser = member;
|
|
_publishedMemberType = publishedMemberType ?? throw new ArgumentNullException(nameof(publishedMemberType));
|
|
|
|
// fixme
|
|
// RawValueProperty is used for two things here
|
|
// - for the 'map properties' thing that we should really get rid of
|
|
// - for populating properties that every member should always have, and that we force-create
|
|
// if they are not part of the member type properties - in which case they are created as
|
|
// simple raw properties - which are completely invariant
|
|
|
|
var _properties = PublishedProperty.MapProperties(_publishedMemberType.PropertyTypes, _member.Properties,
|
|
(t, v) => new RawValueProperty(t, this, v ?? string.Empty));
|
|
|
|
var properties = new List<IPublishedProperty>();
|
|
foreach (var propertyType in _publishedMemberType.PropertyTypes)
|
|
{
|
|
var property = _member.Properties[propertyType.Alias];
|
|
if (property == null) continue;
|
|
|
|
//properties.Add(new FooProperty(propertyType, this, property.Values));
|
|
}
|
|
EnsureMemberProperties(properties);
|
|
_properties = properties.ToArray();
|
|
}
|
|
|
|
#region Membership provider member properties
|
|
|
|
// fixme why this?
|
|
|
|
public string Email => _membershipUser.Email;
|
|
|
|
public string UserName => _membershipUser.Username;
|
|
|
|
public string PasswordQuestion => _membershipUser.PasswordQuestion;
|
|
|
|
public string Comments => _membershipUser.Comments;
|
|
|
|
public bool IsApproved => _membershipUser.IsApproved;
|
|
|
|
public bool IsLockedOut => _membershipUser.IsLockedOut;
|
|
|
|
public DateTime LastLockoutDate => _membershipUser.LastLockoutDate;
|
|
|
|
public DateTime CreationDate => _membershipUser.CreateDate;
|
|
|
|
public DateTime LastLoginDate => _membershipUser.LastLoginDate;
|
|
|
|
public DateTime LastActivityDate => _membershipUser.LastLoginDate;
|
|
|
|
public DateTime LastPasswordChangeDate => _membershipUser.LastPasswordChangeDate;
|
|
|
|
#endregion
|
|
|
|
#region IPublishedContent
|
|
|
|
public override PublishedItemType ItemType => PublishedItemType.Member;
|
|
|
|
public override bool IsDraft => false;
|
|
|
|
public override IPublishedContent Parent => null;
|
|
|
|
public override IEnumerable<IPublishedContent> Children => Enumerable.Empty<IPublishedContent>();
|
|
|
|
public override IEnumerable<IPublishedProperty> Properties => _properties;
|
|
|
|
public override IPublishedProperty GetProperty(string alias, bool recurse)
|
|
{
|
|
if (recurse)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
return GetProperty(alias);
|
|
}
|
|
|
|
public override IPublishedProperty GetProperty(string alias)
|
|
{
|
|
return _properties.FirstOrDefault(x => x.Alias.InvariantEquals(alias));
|
|
}
|
|
|
|
private void EnsureMemberProperties(List<IPublishedProperty> properties)
|
|
{
|
|
var aliases = properties.Select(x => x.Alias).ToList();
|
|
|
|
EnsureMemberProperty(properties, aliases, "Email", Email);
|
|
EnsureMemberProperty(properties, aliases, "UserName", UserName);
|
|
EnsureMemberProperty(properties, aliases, "PasswordQuestion", PasswordQuestion);
|
|
EnsureMemberProperty(properties, aliases, "Comments", Comments);
|
|
EnsureMemberProperty(properties, aliases, "IsApproved", IsApproved);
|
|
EnsureMemberProperty(properties, aliases, "IsLockedOut", IsLockedOut);
|
|
EnsureMemberProperty(properties, aliases, "LastLockoutDate", LastLockoutDate);
|
|
EnsureMemberProperty(properties, aliases, "CreateDate", CreateDate);
|
|
EnsureMemberProperty(properties, aliases, "LastLoginDate", LastLoginDate);
|
|
EnsureMemberProperty(properties, aliases, "LastPasswordChangeDate", LastPasswordChangeDate);
|
|
}
|
|
|
|
private void EnsureMemberProperty(List<IPublishedProperty> properties, List<string> aliases, string alias, object value)
|
|
{
|
|
// if the property already has a value, nothing to do
|
|
if (aliases.Contains(alias)) return;
|
|
|
|
// if not a property type, ignore
|
|
var propertyType = ContentType.GetPropertyType(alias);
|
|
if (propertyType == null) return;
|
|
|
|
// create a raw-value property
|
|
// note: throws if propertyType variations is not InvariantNeutral
|
|
var property = new RawValueProperty(propertyType, this, value);
|
|
properties.Add(property);
|
|
}
|
|
|
|
public override PublishedContentType ContentType => _publishedMemberType;
|
|
|
|
public override int Id => _member.Id;
|
|
|
|
public override Guid Key => _member.Key;
|
|
|
|
public override int TemplateId => throw new NotSupportedException();
|
|
|
|
public override int SortOrder => 0;
|
|
|
|
public override string Name => _member.Name;
|
|
|
|
public override IReadOnlyDictionary<string, PublishedCultureName> CultureNames => throw new NotSupportedException();
|
|
|
|
public override string UrlName => throw new NotSupportedException();
|
|
|
|
public override string DocumentTypeAlias => _member.ContentTypeAlias;
|
|
|
|
public override int DocumentTypeId => _member.ContentType.Id;
|
|
|
|
//TODO: ARGH! need to fix this - this is not good because it uses ApplicationContext.Current
|
|
public override string WriterName => _member.GetCreatorProfile().Name;
|
|
|
|
//TODO: ARGH! need to fix this - this is not good because it uses ApplicationContext.Current
|
|
public override string CreatorName => _member.GetCreatorProfile().Name;
|
|
|
|
public override int WriterId => _member.CreatorId;
|
|
|
|
public override int CreatorId => _member.CreatorId;
|
|
|
|
public override string Path => _member.Path;
|
|
|
|
public override DateTime CreateDate => _member.CreateDate;
|
|
|
|
public override DateTime UpdateDate => _member.UpdateDate;
|
|
|
|
public override int Level => _member.Level;
|
|
|
|
#endregion
|
|
}
|
|
}
|