web-dev-qa-db-ja.com

c#グループのユーザーメンバーかどうかを確認しますか?

ユーザーがADのメンバーであるかどうかを確認するために使用するコードがあり、完全に機能しました。

ここで、ユーザーがグループのメンバーでもあるかどうかをチェックする可能性を追加したいと思います!

それを達成するために何を変更する必要がありますか、私はいくつかの作業を行いましたが、失敗しました!

これが私のコードです:

        //Authenticate a User Against the Directory
        private bool Authenticate(string userName,string password, string domain)
        {

            if (userName == "" || password == "")
            {
                return false;
            }

            bool authentic = false;
            try
            {
                DirectoryEntry entry = new DirectoryEntry("LDAP://" + domain,userName, password);
                object nativeObject = entry.NativeObject;
                authentic = true;
            }
            catch (DirectoryServicesCOMException) { }
            return authentic;
        }

このようにしたい:

private bool Authenticate(string userName,string password, string domain, string group)
14
Data-Base

私はこのコードでそれを解決します

public bool AuthenticateGroup(string userName, string password, string domain, string group)
    {


        if (userName == "" || password == "")
        {
            return false;
        }

        try
        {
            DirectoryEntry entry = new DirectoryEntry("LDAP://" + domain, userName, password);
            DirectorySearcher mySearcher = new DirectorySearcher(entry);
            mySearcher.Filter = "(&(objectClass=user)(|(cn=" + userName + ")(sAMAccountName=" + userName + ")))";
            SearchResult result = mySearcher.FindOne();

            foreach (string GroupPath in result.Properties["memberOf"])
            {
                if (GroupPath.Contains(group))
                {
                    return true;
                }
            }
        }
        catch (DirectoryServicesCOMException)
        {
        }
        return false;
    }

私にとっては問題なく動作し、ドメインコントローラ/ Active Directoryの一部ではないマシンでも使用できます

助けてくれてありがとう

6
Data-Base

これはWindowsでは使用できませんXP以前。

とにかく、グループメンバーシップを確認するには、次のコードを使用できます。

bool IsInGroup(string user, string group)
{
    using (var identity = new WindowsIdentity(user))
    {
        var principal = new WindowsPrincipal(identity);
        return principal.IsInRole(group);
    }
}
24
Ran

ASP.NetではPage.User.IsInRole("RoleName")を使用します。WindowsではSystem.Threading.Thread.CurrentPrincipal.IsInRole("RoleName")を使用できます

7
jvanrhyn