-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathInMemoryUserProvider.cs
More file actions
263 lines (217 loc) · 9.41 KB
/
InMemoryUserProvider.cs
File metadata and controls
263 lines (217 loc) · 9.41 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
// 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.Net;
using System.Threading.Tasks;
using System.Web.Http;
using Microsoft.SCIM;
using Microsoft.SCIM.WebHostSample.Resources;
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> existingUsers = this.storage.Users.Values;
if
(
existingUsers.Any(
(Core2EnterpriseUser existingUser) =>
string.Equals(existingUser.UserName, user.UserName, StringComparison.Ordinal))
)
{
throw new HttpResponseException(HttpStatusCode.Conflict);
}
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(SampleServiceResources.ExceptionInvalidParameters);
}
if (string.IsNullOrWhiteSpace(parameters.SchemaIdentifier))
{
throw new ArgumentException(SampleServiceResources.ExceptionInvalidParameters);
}
Resource[] results;
IFilter queryFilter = parameters.AlternateFilters.SingleOrDefault();
if (queryFilter == null)
{
IEnumerable<Core2EnterpriseUser> allUsers = this.storage.Users.Values;
results =
allUsers.Select((Core2EnterpriseUser user) => user as Resource).ToArray();
return Task.FromResult(results);
}
if (string.IsNullOrWhiteSpace(queryFilter.AttributePath))
{
throw new ArgumentException(SampleServiceResources.ExceptionInvalidParameters);
}
if (string.IsNullOrWhiteSpace(queryFilter.ComparisonValue))
{
throw new ArgumentException(SampleServiceResources.ExceptionInvalidParameters);
}
if (queryFilter.FilterOperator != ComparisonOperator.Equals)
{
throw new NotSupportedException(SampleServiceResources.UnsupportedComparisonOperator);
}
if (queryFilter.AttributePath.Equals(AttributeNames.UserName))
{
IEnumerable<Core2EnterpriseUser> allUsers = this.storage.Users.Values;
results =
allUsers.Where(
(Core2EnterpriseUser item) =>
string.Equals(
item.UserName,
parameters.AlternateFilters.Single().ComparisonValue,
StringComparison.OrdinalIgnoreCase))
.Select((Core2EnterpriseUser user) => user as Resource).ToArray();
return Task.FromResult(results);
}
if (queryFilter.AttributePath.Equals(AttributeNames.ExternalIdentifier))
{
IEnumerable<Core2EnterpriseUser> allUsers = this.storage.Users.Values;
results =
allUsers.Where(
(Core2EnterpriseUser item) =>
string.Equals(
item.ExternalIdentifier,
parameters.AlternateFilters.Single().ComparisonValue,
StringComparison.OrdinalIgnoreCase))
.Select((Core2EnterpriseUser user) => user as Resource).ToArray();
return Task.FromResult(results);
}
throw new NotSupportedException(SampleServiceResources.UnsupportedFilterAttributeUser);
}
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);
}
IEnumerable<Core2EnterpriseUser> existingUsers = this.storage.Users.Values;
if
(
existingUsers.Any(
(Core2EnterpriseUser existingUser) =>
string.Equals(existingUser.UserName, user.UserName, StringComparison.Ordinal) &&
!string.Equals(existingUser.Identifier, user.Identifier, StringComparison.OrdinalIgnoreCase))
)
{
throw new HttpResponseException(HttpStatusCode.Conflict);
}
if (!this.storage.Users.TryGetValue(user.Identifier, out Core2EnterpriseUser _))
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}
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(SampleServiceResources.ExceptionInvalidPatch);
}
if (string.IsNullOrWhiteSpace(patch.ResourceIdentifier.Identifier))
{
throw new ArgumentException(SampleServiceResources.ExceptionInvalidPatch);
}
if (null == patch.PatchRequest)
{
throw new ArgumentException(SampleServiceResources.ExceptionInvalidPatch);
}
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);
}
else
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}
return Task.CompletedTask;
}
}
}