Я использую проверку подлинности Windows в приложении ASP.NET. Мне интересно, как лучше всего получить objectGuid от текущего пользователя, вошедшего в систему?
С уважением, Эгиль.





Вы можете сделать это с помощью пространства имен System.DirectoryServices.
Dim entry As DirectoryServices.DirectoryEntry
Dim mySearcher As System.DirectoryServices.DirectorySearcher
Dim result As System.DirectoryServices.SearchResult
Dim myEntry As DirectoryEntry
Dim domainName As String
Dim userId As String
Dim objectGuid As Guid
'Split the username into domain and userid parts
domainName = Page.User.Identity.Name.Substring(0, Page.User.Identity.Name.IndexOf("\"))
userId = Page.User.Identity.Name.Substring(Page.User.Identity.Name.IndexOf("\") + 1)
'Start at the top level domain
entry = New DirectoryEntry(domainName)
mySearcher = New DirectorySearcher(entry)
'Build a filter for just the user
mySearcher.Filter = ("(&(anr = " & userId & ")(objectClass=user))")
'Get the search result ...
result = mySearcher.FindOne
'... and then get the AD entry that goes with it
myEntry = result.GetDirectoryEntry
'The Guid property is the objectGuid
objectGuid = myEntry.Guid
Возможно, есть лучший способ сделать это, но это работает!
Вам нужно использовать свойство NativeGuid. Код C#:
string login = HttpContext.Current.User.Identity.Name;
string domain = login.Substring(0, login.IndexOf('\\'));
string userName = login.Substring(login.IndexOf('\\') + 1);
DirectoryEntry domainEntry = new DirectoryEntry("LDAP://" + domain);
DirectorySearcher searcher = new DirectorySearcher(domainEntry);
searcher.Filter = string.Format(
"(&(objectCategory=person)(objectClass=user)(sAMAccountName = {0}))",
userName);
SearchResult searchResult = searcher.FindOne();
DirectoryEntry entry = searchResult.GetDirectoryEntry();
Guid objectGuid = new Guid(entry.NativeGuid);
Предлагаемые решения довольно дороги. Вместо поиска по домену и имени пользователя лучшим решением будет использование SID для поиска учетной записи:
// using System.Security.Principal;
IPrincipal userPrincipal = HttpContext.Current.User;
WindowsIdentity windowsId = userPrincipal.Identity as WindowsIdentity;
if (windowsId != null)
{
SecurityIdentifier sid = windowsId.User;
using(DirectoryEntry userDe = new DirectoryEntry("LDAP://<SID = " + sid.Value + ">"))
{
Guid objectGuid = new Guid(userDe.NativeGuid);
}
}
Что делать, если windowsId имеет значение null?
Тогда, вероятно, вы имеете дело с анонимным пользователем или кем-то, кто не доверяет веб-сайту разрешить аутентификацию Kerberos. Вы можете работать с администраторами в своей компании, чтобы продвинуть групповую политику, чтобы доверять сайту внутренний. Или вы можете предоставить форму входа https или какой-либо другой метод аутентификации.
Спасибо. Чтобы получить правильный objectGuid, я вместо этого использовал этот код: objectGuid = System.Guid.Parse (myEntry.NativeGuid)