-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathInMemoryUserProvider.cs
More file actions
345 lines (275 loc) · 13.8 KB
/
InMemoryUserProvider.cs
File metadata and controls
345 lines (275 loc) · 13.8 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.SCIM.WebHostSample.Provider
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Net;
using System.Threading.Tasks;
using System.Web.Http;
using Microsoft.SCIM;
public class InMemoryUserProvider : ProviderBase
{
private readonly InMemoryStorage storage;
public InMemoryUserProvider()
{
this.storage = InMemoryStorage.Instance;
}
public override Task<Resource> CreateAsync(Resource resource, string correlationIdentifier)
{
if (resource.Identifier != null)
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
Core2EnterpriseUser user = resource as Core2EnterpriseUser;
if (string.IsNullOrWhiteSpace(user.UserName))
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
IEnumerable<Core2EnterpriseUser> exisitingUsers = this.storage.Users.Values;
if
(
exisitingUsers.Any(
(Core2EnterpriseUser exisitingUser) =>
string.Equals(exisitingUser.UserName, user.UserName, StringComparison.Ordinal))
)
{
throw new HttpResponseException(HttpStatusCode.Conflict);
}
// Update metadata
DateTime created = DateTime.UtcNow;
user.Metadata.Created = created;
user.Metadata.LastModified = created;
string resourceIdentifier = Guid.NewGuid().ToString();
resource.Identifier = resourceIdentifier;
this.storage.Users.Add(resourceIdentifier, user);
return Task.FromResult(resource);
}
public override Task DeleteAsync(IResourceIdentifier resourceIdentifier, string correlationIdentifier)
{
if (string.IsNullOrWhiteSpace(resourceIdentifier?.Identifier))
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
string identifier = resourceIdentifier.Identifier;
if (this.storage.Users.ContainsKey(identifier))
{
this.storage.Users.Remove(identifier);
}
return Task.CompletedTask;
}
public override Task<Resource[]> QueryAsync(IQueryParameters parameters, string correlationIdentifier)
{
if (parameters == null)
{
throw new ArgumentNullException(nameof(parameters));
}
if (string.IsNullOrWhiteSpace(correlationIdentifier))
{
throw new ArgumentNullException(nameof(correlationIdentifier));
}
if (null == parameters.AlternateFilters)
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidParameters);
}
if (string.IsNullOrWhiteSpace(parameters.SchemaIdentifier))
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidParameters);
}
IEnumerable<Resource> results;
var predicate = PredicateBuilder.False<Core2EnterpriseUser>();
Expression<Func<Core2EnterpriseUser, bool>> predicateAnd;
if (parameters.AlternateFilters.Count <= 0)
{
results = this.storage.Users.Values.Select(
(Core2EnterpriseUser user) => user as Resource);
}
else
{
foreach (IFilter queryFilter in parameters.AlternateFilters)
{
predicateAnd = PredicateBuilder.True<Core2EnterpriseUser>();
IFilter andFilter = queryFilter;
IFilter currentFilter = andFilter;
do
{
if (string.IsNullOrWhiteSpace(andFilter.AttributePath))
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidParameters);
}
else if (string.IsNullOrWhiteSpace(andFilter.ComparisonValue))
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidParameters);
}
// UserName filter
else if (andFilter.AttributePath.Equals(AttributeNames.UserName, StringComparison.OrdinalIgnoreCase))
{
if (andFilter.FilterOperator != ComparisonOperator.Equals)
{
throw new NotSupportedException(
string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionFilterOperatorNotSupportedTemplate, andFilter.FilterOperator));
}
string userName = andFilter.ComparisonValue;
predicateAnd = predicateAnd.And(p => string.Equals(p.UserName, userName, StringComparison.OrdinalIgnoreCase));
}
// ExternalId filter
else if (andFilter.AttributePath.Equals(AttributeNames.ExternalIdentifier, StringComparison.OrdinalIgnoreCase))
{
if (andFilter.FilterOperator != ComparisonOperator.Equals)
{
throw new NotSupportedException(
string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionFilterOperatorNotSupportedTemplate, andFilter.FilterOperator));
}
string externalIdentifier = andFilter.ComparisonValue;
predicateAnd = predicateAnd.And(p => string.Equals(p.ExternalIdentifier, externalIdentifier, StringComparison.OrdinalIgnoreCase));
}
//Active Filter
else if (andFilter.AttributePath.Equals(AttributeNames.Active, StringComparison.OrdinalIgnoreCase))
{
if (andFilter.FilterOperator != ComparisonOperator.Equals)
{
throw new NotSupportedException(
string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionFilterOperatorNotSupportedTemplate, andFilter.FilterOperator));
}
bool active = bool.Parse(andFilter.ComparisonValue);
predicateAnd = predicateAnd.And(p => p.Active == active);
}
//LastModified filter
else if (andFilter.AttributePath.Equals($"{AttributeNames.Metadata}.{AttributeNames.LastModified}", StringComparison.OrdinalIgnoreCase))
{
if (andFilter.FilterOperator == ComparisonOperator.EqualOrGreaterThan)
{
DateTime comparisonValue = DateTime.Parse(andFilter.ComparisonValue).ToUniversalTime();
predicateAnd = predicateAnd.And(p => p.Metadata.LastModified >= comparisonValue);
}
else if (andFilter.FilterOperator == ComparisonOperator.EqualOrLessThan)
{
DateTime comparisonValue = DateTime.Parse(andFilter.ComparisonValue).ToUniversalTime();
predicateAnd = predicateAnd.And(p => p.Metadata.LastModified <= comparisonValue);
}
else
throw new NotSupportedException(
string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionFilterOperatorNotSupportedTemplate, andFilter.FilterOperator));
}
else
throw new NotSupportedException(
string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionFilterAttributePathNotSupportedTemplate, andFilter.AttributePath));
currentFilter = andFilter;
andFilter = andFilter.AdditionalFilter;
} while (currentFilter.AdditionalFilter != null);
predicate = predicate.Or(predicateAnd);
}
results = this.storage.Users.Values.Where(predicate.Compile());
}
if (parameters.PaginationParameters != null)
{
int count = parameters.PaginationParameters.Count.HasValue ? parameters.PaginationParameters.Count.Value : 0;
return Task.FromResult(results.Take(count).ToArray());
}
else
return Task.FromResult(results.ToArray());
}
public override Task<Resource> ReplaceAsync(Resource resource, string correlationIdentifier)
{
if (resource.Identifier == null)
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
Core2EnterpriseUser user = resource as Core2EnterpriseUser;
if (string.IsNullOrWhiteSpace(user.UserName))
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
if
(
this.storage.Users.Values.Any(
(Core2EnterpriseUser exisitingUser) =>
string.Equals(exisitingUser.UserName, user.UserName, StringComparison.Ordinal) &&
!string.Equals(exisitingUser.Identifier, user.Identifier, StringComparison.OrdinalIgnoreCase))
)
{
throw new HttpResponseException(HttpStatusCode.Conflict);
}
Core2EnterpriseUser exisitingUser = this.storage.Users.Values
.FirstOrDefault(
(Core2EnterpriseUser exisitingUser) =>
string.Equals(exisitingUser.Identifier, user.Identifier, StringComparison.OrdinalIgnoreCase)
);
if (exisitingUser == null)
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}
// Update metadata
user.Metadata.Created = exisitingUser.Metadata.Created;
user.Metadata.LastModified = DateTime.UtcNow;
this.storage.Users[user.Identifier] = user;
Resource result = user as Resource;
return Task.FromResult(result);
}
public override Task<Resource> RetrieveAsync(IResourceRetrievalParameters parameters, string correlationIdentifier)
{
if (parameters == null)
{
throw new ArgumentNullException(nameof(parameters));
}
if (string.IsNullOrWhiteSpace(correlationIdentifier))
{
throw new ArgumentNullException(nameof(correlationIdentifier));
}
if (string.IsNullOrEmpty(parameters?.ResourceIdentifier?.Identifier))
{
throw new ArgumentNullException(nameof(parameters));
}
Resource result = null;
string identifier = parameters.ResourceIdentifier.Identifier;
if (this.storage.Users.ContainsKey(identifier))
{
if (this.storage.Users.TryGetValue(identifier, out Core2EnterpriseUser user))
{
result = user as Resource;
return Task.FromResult(result);
}
}
throw new HttpResponseException(HttpStatusCode.NotFound);
}
public override Task UpdateAsync(IPatch patch, string correlationIdentifier)
{
if (null == patch)
{
throw new ArgumentNullException(nameof(patch));
}
if (null == patch.ResourceIdentifier)
{
throw new ArgumentException(string.Format(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidOperation));
}
if (string.IsNullOrWhiteSpace(patch.ResourceIdentifier.Identifier))
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidOperation);
}
if (null == patch.PatchRequest)
{
throw new ArgumentException(SystemForCrossDomainIdentityManagementServiceResources.ExceptionInvalidOperation);
}
PatchRequest2 patchRequest =
patch.PatchRequest as PatchRequest2;
if (null == patchRequest)
{
string unsupportedPatchTypeName = patch.GetType().FullName;
throw new NotSupportedException(unsupportedPatchTypeName);
}
if (this.storage.Users.TryGetValue(patch.ResourceIdentifier.Identifier, out Core2EnterpriseUser user))
{
user.Apply(patchRequest);
// Update metadata
user.Metadata.LastModified = DateTime.UtcNow;
}
else
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}
return Task.CompletedTask;
}
}
}