获取 Sitecore 自定义配置文件属性

本文关键字:置文件属性 自定义 Sitecore 获取 | 更新日期: 2024-11-06 14:05:32

所以我已经在 Sitecore 工作了一段时间,为了通过电子邮件活动管理器发送电子邮件,我设置了一个模块,该模块应该根据自定义配置文件属性中的字段(用户填充的兴趣)加载某些项目。

Sitecore.Context.User.Profile获取属性效果很好(所以当我以用户身份登录时,它可以工作),但是当我尝试像var currentUser = Sitecore.Security.Accounts.User.FromName(Request["ec_recipient"], true);一样获取它(或用现有用户名替换 Request["ec_recipient"])时,我所有的自定义属性都没有价值。我已经尝试了currentUser.Profile.Reload()currentUser.Profile.Initialize("username", true)但似乎都不起作用。

更新

我忘了提到我已经为用户配置文件添加了重载,如下所示:

public class UserProfile : Sitecore.Security.UserProfile
{
   /// <summary>
    /// Gets or sets the interests.
    /// </summary>
    /// <value>
    /// The interests.
    /// </value>
    public IList<ID> Interests
    {
        get
        {
            return string.IsNullOrWhiteSpace(this.interests)
                ? new List<ID>()
                : this.interests
                    .Split(',')
                    .Where(ID.IsID)
                    .Select(g => new ID(g))
                    .ToList();
        }
        set
        {
            this.interests= string.Join(",", value.Select(g => g.ToString()));
        }
    }
    /// <summary>
    /// Gets or sets backingfield for the interests.
    /// </summary>
    /// <value>
    /// The sectors.
    /// </value>
    private string interests
    {
        get
        {
            return this.GetCustomProperty("Interests");
        }
        set
        {
            this.SetCustomProperty("Interests", value);
        }
    }
}

另外,我已经尝试了以下内容(如评论中所述,结果仍然是一个空字符串)

var interests = new List<ID>();
        using (new SecurityEnabler())
        {
            var currentUser = Sitecore.Security.Accounts.User.FromName(username, true);
            using (new Sitecore.Security.Accounts.UserSwitcher(currentUser))
            {
                var userprofile = Sitecore.Context.User.Profile as UserProfile;
                interests.AddRange(userprofile.Interests);
            }
        }

自定义用户配置文件在核心数据库中定义:/sitecore/templates/System/Security/Custom User关于这个主题的任何想法/帮助将不胜感激。

获取 Sitecore 自定义配置文件属性

我试过了,它对我有用:

 string domainUser = @"domain'user"; 
 if (Sitecore.Security.Accounts.User.Exists(domainUser)) 
  { 
     Sitecore.Security.Accounts.User user = 
     Sitecore.Security.Accounts.User.FromName(domainUser,false); 
       using (new Sitecore.Security.Accounts.UserSwitcher(user)) 
     { 
       var property=user.Profile.GetCustomProperty("propertyname);
     } 
} 

如果在调度新闻稿管道期间执行代码,它将不起作用,因为"安全性已禁用"。我遇到了同样的问题并在这里进行了解释

您需要再次启用安全性才能进行检查。可能是这样的:

 string testName = @"Emailcampaign'example_at_gmail_dot_com";
            //Request["ec_recipient"]
            var currentUser = Sitecore.Security.Accounts.User.FromName(testName, true);
            var interests = new List<ID>();
            using (new SecurityEnabler())
            {
                using (new Sitecore.Security.Accounts.UserSwitcher(currentUser))
                {
                    var w = currentUser.Profile.GetCustomProperty("Sectors");
                    var currentUserCustomProfile = currentUser.Profile as UserProfile;
                    currentUserCustomProfile.Initialize(testName, true);
                    currentUserCustomProfile.Reload();
                    interests.AddRange(currentUserCustomProfile.Interests);
                }
            }

因此,即使用户管理器中的用户域是"电子邮件活动管理器",我也需要使用"Extranet''"域。

string testName = @"Emailcampaign'example_at_gmail_dot_com";

应该是

string testName = @"extranet'example_at_gmail_dot_com";