4

我正在尝试通过 WSS 3.0 对象模型检索 Sharepoint 用户照片上的用户。我一直在网上浏览解决方案,但到目前为止我一直无法找到解决方法。有可能吗,如果可以,怎么办?

4

3 回答 3

5

这是一个可以帮助您完成工作的代码片段。您可能需要进行一些额外的验证以避免任何异常(确保配置文件实际存在,确保图像 URL 实际存在等...):

    //get current profile manager
    UserProfileManager objUserProfileManager = new UserProfileManager(PortalContext.Current);
    //get current users profile
    UserProfile profile = objUserProfileManager.GetUserProfile(true);
    //get user image URL
    string imageUrl = (string)profile[PropertyConstants.PictureUrl];

    //do something here with imageUrl
于 2008-09-14T17:06:42.707 回答
3

如果您严格地谈论 WSS 3.0(而不是 MOSS),那么您实际上并没有全局用户配置文件本身,而是每个站点集中的隐藏用户信息列表。这意味着您无法使用 Microsoft.Office.Server 命名空间中的任何内容。

但是,只要您知道用户图片的 URL,就可以通过编程方式更新用户信息列表。只要您以某种提升的权限运行,您就应该能够像处理任何其他 SharePoint 列表一样操作此列表。请记住,此列表仅适用于网站集的范围,因此用户必须在整个地方进行相同的更新才能真正拥有照片 URL。另外,在有人向他们分配某种权限之前,用户不会进入用户信息列表,因此并非您域中的每个用户都会在那里。

处理这个问题的干净方法绝对是用户配置文件机制是 MOSS,但如果这是一个选项,那么问题应该真正更新以询问 MOSS 与 WSS。

于 2008-09-17T04:17:59.503 回答
2

啊,你必须使用 UserProfileManager 类。更多信息在这里:http: //msdn.microsoft.com/en-us/library/microsoft.office.server.userprofiles.userprofilemanager.aspx

示例使用:

public override void ItemAdded(SPItemEventProperties properties)
{
    // Get list item on which the event occurred.
    SPListItem item = properties.ListItem;

    // Set the Author Image field to the user's PictureURL if it exists.
    using (SPWeb web = properties.OpenWeb())
    {
        // Author: {C32DB804-FF2D-4656-A38A-B0394BA5C931}
        SPFieldUserValue authorValue = new SPFieldUserValue(properties.OpenWeb(), item[new Guid("{C32DB804-FF2D-4656-A38A-B0394BA5C931}")].ToString());

        UserProfileManager profileManager = new UserProfileManager(ServerContext.GetContext(web.Site));
        UserProfile profile = profileManager.GetUserProfile(authorValue.LookupId);
        UserProfileValueCollection values = profile[PropertyConstants.PictureUrl];

        if (values.Count > 0)
        {
            // Author Image: {37A5CA4C-7621-44d7-BF3B-583F742CE52F}
            SPFieldUrlValue urlValue = new SPFieldUrlValue(values.Value.ToString());
            item[new Guid("{37A5CA4C-7621-44d7-BF3B-583F742CE52F}")] = urlValue.Url;
        }
    }

    item.Update();

    // News Text: {7F55A8F0-4555-46BC-B24C-222240B862AF}
    //

    // Author Image: {37A5CA4C-7621-44d7-BF3B-583F742CE52F}
    // 

    // Publish Date: {45E84B8B-E161-46C6-AD51-27A42E4992B5}
    //
}
于 2008-09-14T16:38:24.240 回答