0

这是我正在尝试使用的代码,但我并没有真正使用它:

public static string GetUserIdFromEmail(string emailAddress)
    {
        string displayName = string.Empty;

        if (emailAddress.Contains("@sub.domain.edu") || emailAddress.Contains("@domain.edu"))
        {
            displayName = emailAddress.Split(new char[] { '@' })[0];
        }
        else
        {
            //no active directory account.
            return string.Empty;
        }


        // set up domain context
        using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain))
        {
            // find user by display name
            try
            {
                UserPrincipal user = UserPrincipal.FindByIdentity(ctx, displayName);
                if (user != null)
                {
                    return user.SamAccountName; // or UserPrincipleName
                }
                else
                {
                    return string.Empty;
                }
            }
            catch (Exception)
            {
                return "Error";
            }
        }
    }

这些是我所知道的关于我们当前系统的事情:

  1. 电子邮件将是独一无二的,并遵循一定的命名约定

  2. 命名约定是名字的第一个字母和整个姓氏 (dstanley)。

  3. Exchange 上的一些旧帐户是 first.last@email.com

  4. 我不知道我在做什么,但我知道我想要什么。

我希望能够获取用户域的电子邮件地址并在活动目录中找到他们的记录。上面的代码是在正确的轨道上还是我可以做一些更简单的事情?

4

1 回答 1

0

为了使用标准活动目录库访问用户电子邮件,您必须首先拥有 samaccount。这意味着该问题的解决方案需要您遍历每个 samaccount 并比较电子邮件地址,直到找到匹配项。

伪代码

foreach(user in activedirectory) 
{
  if (user.email = targeted_email)
  {
      return matched samaccount
  }
}

我不相信有更好的方法来解决这个问题,因此它是一种资源密集型解决方案。

于 2013-12-02T16:49:20.203 回答