-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiveDirectoryRepository.VVS.cs
208 lines (173 loc) · 7.46 KB
/
ActiveDirectoryRepository.VVS.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
using System;
using System.Collections.Generic;
using System.Configuration;
using System.DirectoryServices;
using System.DirectoryServices.AccountManagement;
using Nevda.VVS.Models;
using Nevda.VVS.Models.Authentication;
namespace Nevda.VVS.IdentityServer.DataRepository.Repositories
{
public interface IActiveDirectoryRepository
{
IList<ActiveDirectoryUser> GetAllUsers(bool activeOnly = false);
ActiveDirectoryUser GetActiveDirectoryUser(string userName, string password);
bool UseActiveDirectoryModule { get; }
}
public class ActiveDirectoryRepository : IActiveDirectoryRepository
{
#region Active Directory connection data
public bool UseActiveDirectoryModule
{
get
{
var value = ConfigurationManager.AppSettings["UseActiveDirectoryModule"];
var result = false;
if (!string.IsNullOrEmpty(value))
Boolean.TryParse(value, out result);
return result;
}
}
private string ADDomain
{
get { return ConfigurationManager.AppSettings["ActiveDirectoryDomain"]; }
}
private string ADUserName
{
get { return ConfigurationManager.AppSettings["ActiveDirectoryUserName"]; }
}
private string ADPassword
{
get { return ConfigurationManager.AppSettings["ActiveDirectoryPassword"]; }
}
#endregion
/// <summary>
/// Gets all Active Directory users
/// </summary>
/// <returns></returns>
public IList<ActiveDirectoryUser> GetAllUsers(bool activeOnly = false)
{
var users = new List<ActiveDirectoryUser>();
try
{
using (var context = new PrincipalContext(ContextType.Domain, ADDomain, ADUserName, ADPassword))
{
using (var searcher = new PrincipalSearcher(new UserPrincipal(context)))
{
foreach (var result in searcher.FindAll())
{
DirectoryEntry de = result.GetUnderlyingObject() as DirectoryEntry;
if (de.Properties["samAccountName"].Value == null)
continue;
if (activeOnly && isAccountDisabled(de))
continue;
users.Add(CreateUserFromDirectoryEntry(de));
}
}
}
}
catch
{
throw;
}
return users;
}
private bool isAccountDisabled(DirectoryEntry entry)
{
if (entry.NativeGuid == null) return true;
int flags = (int)entry.Properties["userAccountControl"].Value;
return Convert.ToBoolean(flags & 0x0002); //The second bit of userAccountControl will be 1 if the account is disabled.
}
/// <summary>
/// Gets Active Directory user by username
/// </summary>
/// <param name="userName"></param>
/// <returns></returns>
public ActiveDirectoryUser GetUser(string userName)
{
ActiveDirectoryUser user = null;
try
{
using (var ctx = new PrincipalContext(ContextType.Domain, ADDomain, ADUserName, ADPassword))
{
UserPrincipal qbeUser = new UserPrincipal(ctx);
qbeUser.SamAccountName = userName;
PrincipalSearcher srch = new PrincipalSearcher(qbeUser);
UserPrincipal upr = srch.FindOne() as UserPrincipal;
if (upr != null)
{
DirectoryEntry de = upr.GetUnderlyingObject() as DirectoryEntry;
if (de != null)
user = CreateUserFromDirectoryEntry(de);
}
}
}
catch
{
throw;
}
return user;
}
/// <summary>
/// Validates Active Directory user's credentials
/// </summary>
/// <param name="userName"></param>
/// <param name="password"></param>
/// <returns></returns>
public bool ValidateCredentials(string userName, string password)
{
bool isValid = false;
try
{
using (var ctx = new PrincipalContext(ContextType.Domain, ADDomain, ADUserName, ADPassword))
{
isValid = ctx.ValidateCredentials(userName, password);
}
}
catch
{
throw;
}
return isValid;
}
private ActiveDirectoryUser CreateUserFromDirectoryEntry(DirectoryEntry de)
{
ActiveDirectoryUser user = new ActiveDirectoryUser
{
ObjectGuid = new Guid((byte[])de.Properties["objectGuid"].Value),
Name = de.Properties["givenName"].Value != null ? de.Properties["givenName"].Value.ToString() : null,
Surname = de.Properties["sn"].Value != null ? de.Properties["sn"].Value.ToString() : null,
UserName = de.Properties["samAccountName"].Value != null ? de.Properties["samAccountName"].Value.ToString() : null,
UserPrincipalName = de.Properties["userPrincipalName"].Value != null ? de.Properties["userPrincipalName"].Value.ToString() : null,
Email = de.Properties["mail"].Value != null ? de.Properties["mail"].Value.ToString() : null,
Telephone = de.Properties["mobile"].Value != null ? de.Properties["mobile"].Value.ToString() : null,
WhenCreated = (DateTime)de.Properties["whenCreated"].Value,
WhenChanged = de.Properties["whenChanged"].Value != null ? (DateTime?)de.Properties["whenChanged"].Value : null,
IsDisabled = isAccountDisabled(de),
WWWHomePage = de.Properties["wWWHomePage"].Value != null ? de.Properties["wWWHomePage"].Value.ToString() : null,
Department = de.Properties["department"].Value != null ? de.Properties["department"].Value.ToString() : null,
Company = de.Properties["company"].Value != null ? de.Properties["company"].Value.ToString() : null
};
return user;
}
/// <summary>
/// Gets user by Active Directory user's credentials
/// </summary>
/// <param name="userName"></param>
/// <param name="password"></param>
/// <returns></returns>
public ActiveDirectoryUser GetActiveDirectoryUser(string userName, string password)
{
var activeDirectoryUser = GetUser(userName);
if (activeDirectoryUser == null)
throw new Exception("Naudotojas nerastas");
if (activeDirectoryUser.IsDisabled)
throw new Exception("Prisijungimas uždraustas");
if (!ValidateCredentials(userName, password))
throw new Exception("Neteisingas slaptažodis");
//var naudotojas = _naudotojasRepository.GetByActiveDirectoryUserGuid(activeDirectoryUser.ObjectGuid);
//if (naudotojas == null)
// naudotojas = _naudotojasRepository.CreateNaudotojas(activeDirectoryUser);
return activeDirectoryUser;
}
}
}