-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathQuick.Core.Extensions.Authentication.ApiKey.pas
370 lines (315 loc) · 11.5 KB
/
Quick.Core.Extensions.Authentication.ApiKey.pas
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
{ ***************************************************************************
Copyright (c) 2016-2021 Kike Pérez
Unit : Quick.Core.Extensions.Authentication.Apikey
Description : Core Extensions Authentication ApiKey
Author : Kike Pérez
Version : 1.0
Created : 10/03/2020
Modified : 20/05/2021
This file is part of QuickCore: https://github.com/exilon/QuickCore
***************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*************************************************************************** }
unit Quick.Core.Extensions.Authentication.ApiKey;
{$i QuickCore.inc}
interface
uses
System.SysUtils,
System.Generics.Collections,
Quick.Core.DependencyInjection,
Quick.Options,
Quick.Core.Mvc.Context,
Quick.HttpServer.Request,
Quick.HttpServer.Response,
Quick.Core.Entity,
Quick.Core.Identity.Store.Abstractions,
Quick.Core.Identity,
Quick.Core.Identity.Store.Entity,
Quick.Core.Security.Claims,
Quick.Core.Security.Authentication;
type
{$M+}
TApiKey = class;
{$M-}
IApiKeyStore = interface
['{246E56E1-4E74-4980-A6D9-7F0764F4D462}']
function IsValidKey(const aApiKey : string; out aValue : TApiKey) : Boolean;
end;
TApiKeyOptions = class(TOptions)
private
fUnAuthorizedErrorCode : Integer;
fUnAuthorizedErrorMessage : string;
fApiKeyStore : IApiKeyStore;
public
constructor Create; override;
property ApiKeyStore : IApiKeyStore read fApiKeyStore write fApiKeyStore;
published
property UnAuthorizedErrorCode : Integer read fUnAuthorizedErrorCode write fUnAuthorizedErrorCode;
property UnAuthorizedErrorMessage : string read fUnAuthorizedErrorMessage write fUnAuthorizedErrorMessage;
end;
TApiKey = class
private
fName : string;
fRole : string;
fKey : string;
fExpiration : TDateTime;
fActive : Boolean;
public
constructor Create(const aName, aRole, aKey: string; aExpiration: TDateTime = 0.0);
destructor Destroy; override;
published
property Name : string read fName write fName;
property Role : string read fRole write fRole;
property Key : string read fKey write fKey;
property Expiration : TDateTime read fExpiration write fExpiration;
property Active : Boolean read fActive write fActive;
end;
TApiKeyMemoryStoreOptions = class(TApiKeyOptions)
private
fApiKeys : TObjectList<TApiKey>;
public
constructor Create; override;
destructor Destroy; override;
function AddApiKey(const aName, aKey : string; aExpiration : TDateTime = 0.0) : TApiKeyMemoryStoreOptions; overload;
function AddApiKey(const aName, aRole, aKey : string; aExpiration : TDateTime = 0.0) : TApiKeyMemoryStoreOptions; overload;
published
property ApiKeys : TObjectList<TApiKey> read fApiKeys write fApiKeys;
end;
TMemoryApiKeyStore = class(TInterfacedObject,IApiKeyStore)
private
fOptions : TApiKeyMemoryStoreOptions;
fApiKeys : TDictionary<string,TApiKey>;
procedure GetKeysFromOptions;
public
constructor Create(aOptions : TApiKeyMemoryStoreOptions);
destructor Destroy; override;
function IsValidKey(const aApiKey : string; out aValue : TApiKey) : Boolean;
end;
TIdentityApiKeyStore<TUser,TRole : class, constructor> = class(TInterfacedObject,IApiKeyStore)
private
fApiKeyPropertyName : string;
fIdentityStore : IIdentityStore<TUser,TRole>;
public
constructor Create(const aApiKeyPropertyName: string; aIdentityStore : IIdentityStore<TUser,TRole>);
function IsValidKey(const aApiKey : string; out aValue : TApiKey) : Boolean;
end;
TApiKeyAuthenticationHandler = class(TAuthenticationHandler<TApiKeyOptions>)
private
fApiKeyStore : IApiKeyStore;
protected
procedure DoInitialize; override;
public
function Authenticate : TAuthenticateResult; override;
end;
TSetApiKeyStore = record
private
fServiceCollection : TServiceCollection;
public
constructor Create(aServiceCollection : TServiceCollection);
procedure UseMemoryStore(aConfigureOptions : TConfigureOptionsProc<TApiKeyMemoryStoreOptions>);
procedure UseIdentityStore<TUser, TRole : class, constructor>(const aApiKeyPropertyName: string; aConfigureOptions : TConfigureOptionsProc<TApiKeyOptions> = nil);
end;
TApiKeyAuthenticationServiceExtension = class(TServiceCollectionExtension)
class function AddApikey : TSetApiKeyStore;
end;
EApiKeyStore = class(Exception);
implementation
{ TApiKeyServiceExtension }
class function TApiKeyAuthenticationServiceExtension.AddApikey : TSetApiKeyStore;
var
authOptions : TAuthenticationOptions;
begin
//get AuthenticationOptions
authOptions := ServiceCollection.Resolve<IOptions<TAuthenticationOptions>>.Value;
ServiceCollection.AddTransient<TApiKeyAuthenticationHandler>;
authOptions.AddScheme('ApiKey',TypeInfo(TApiKeyAuthenticationHandler));
authOptions.DefaultAuthenticateScheme := 'ApiKey';
Result.Create(ServiceCollection);
end;
{ TSetApiKeyStore }
constructor TSetApiKeyStore.Create(aServiceCollection: TServiceCollection);
begin
fServiceCollection := aServiceCollection;
end;
procedure TSetApiKeyStore.UseIdentityStore<TUser, TRole>(const aApiKeyPropertyName: string; aConfigureOptions : TConfigureOptionsProc<TApiKeyOptions> = nil);
var
options : TApiKeyOptions;
apikeyStore : IApiKeyStore;
identityStore : IIdentityStore<TUser,TRole>;
begin
identityStore := Self.fServiceCollection.Resolve<IIdentityStore<TUser,TRole>>;
apikeyStore := TIdentityApiKeyStore<TUser,TRole>.Create(aApiKeyPropertyName,identityStore);
options := TApiKeyOptions.Create;
if Assigned(aConfigureOptions) then aConfigureOptions(options);
options.Name := 'ApiKey';
options.ApiKeyStore := apikeyStore;
fServiceCollection.Configure<TApiKeyOptions>(options);
fServiceCollection.AddTransient<IAuthenticationHandler,TApiKeyAuthenticationHandler>;
end;
procedure TSetApiKeyStore.UseMemoryStore(aConfigureOptions : TConfigureOptionsProc<TApiKeyMemoryStoreOptions>);
var
options : TApiKeyMemoryStoreOptions;
memoryStore : IApiKeyStore;
begin
options := TApiKeyMemoryStoreOptions.Create;
aConfigureOptions(options);
options.Name := 'ApiKey';
fServiceCollection.Configure<TApiKeyOptions>(options);
memoryStore := TMemoryApiKeyStore.Create(TApiKeyMemoryStoreOptions(options));
options.ApiKeyStore := memoryStore;
fServiceCollection.AddTransient<IAuthenticationHandler,TApiKeyAuthenticationHandler>;
end;
{ TMemoryApiKeyStore }
constructor TMemoryApiKeyStore.Create(aOptions : TApiKeyMemoryStoreOptions);
begin
inherited Create;
fOptions := aOptions;
fApiKeys := TDictionary<string,TApiKey>.Create;
GetKeysFromOptions;
end;
destructor TMemoryApiKeyStore.Destroy;
begin
fApiKeys.Free;
inherited;
end;
procedure TMemoryApiKeyStore.GetKeysFromOptions;
var
apikey : TApiKey;
begin
for apikey in fOptions.ApiKeys do
begin
if apikey.Active then fApiKeys.Add(apikey.Key,apikey);
end;
end;
function TMemoryApiKeyStore.IsValidKey(const aApiKey : string; out aValue : TApiKey) : Boolean;
begin
Result := fApiKeys.TryGetValue(aApiKey,aValue);
end;
{ TApiKeyAuthenticationHandler }
function TApiKeyAuthenticationHandler.Authenticate: TAuthenticateResult;
var
reqApikey : string;
apikey : TApiKey;
begin
//try to get apikey from headers
reqApikey := fRequest.Headers.GetValue('X-Api-Key');
//try to get apikey from query
if reqApikey.IsEmpty then reqApikey := fRequest.Query['ApiKey'].AsString;
if reqApikey.IsEmpty then
begin
Result.NoResult;
Exit;
end;
//check if valid
if fApiKeyStore.IsValidKey(reqApikey,apikey) then
begin
var claimsidentity : TClaimsIdentity := TClaimsIdentity.Create;
claimsidentity.AddClaim(TClaim.Create(TClaimTypes.NameIdentifier,Scheme.Name));
claimsidentity.AddClaim(TClaim.Create(TClaimTypes.Name,apikey.Name));
claimsidentity.AuthenticationType := Scheme.Name;
if not apikey.Role.IsEmpty then claimsidentity.AddClaim(TClaim.Create(TClaimTypes.Role,apikey.Role));
var claimPrincipal : TClaimsPrincipal := TClaimsPrincipal.Create;
claimPrincipal.AddIdentity(claimsidentity);
Result.Success(TAuthenticationTicket.Create(claimPrincipal,Scheme.Name));
end
else Result.Fail(nil);
end;
procedure TApiKeyAuthenticationHandler.DoInitialize;
begin
if fOptions.ApiKeyStore = nil then raise EApiKeyStore.Create('Not defined Apikey store!');
fApiKeyStore := fOptions.ApiKeyStore;
end;
{ TApiKeyMemoryStoreOptions }
constructor TApiKeyMemoryStoreOptions.Create;
begin
inherited Create;
fApiKeys := TObjectList<TApiKey>.Create(True);
end;
destructor TApiKeyMemoryStoreOptions.Destroy;
begin
fApiKeys.Free;
inherited;
end;
function TApiKeyMemoryStoreOptions.AddApiKey(const aName, aKey: string; aExpiration: TDateTime = 0.0): TApiKeyMemoryStoreOptions;
begin
Result := Self;
fApiKeys.Add(TApiKey.Create(aName,aKey,'',aExpiration));
end;
function TApiKeyMemoryStoreOptions.AddApiKey(const aName, aRole,aKey: string; aExpiration: TDateTime): TApiKeyMemoryStoreOptions;
begin
Result := Self;
fApiKeys.Add(TApiKey.Create(aName,aRole,aKey,aExpiration));
end;
{ TApiKey }
constructor TApiKey.Create(const aName, aRole, aKey: string; aExpiration: TDateTime = 0.0);
begin
fName := aName;
fRole := aRole;
fKey := aKey;
fExpiration := aExpiration;
fActive := True;
end;
destructor TApiKey.Destroy;
begin
inherited;
end;
{ TIdentityApiKeyStore }
constructor TIdentityApiKeyStore<TUser,TRole>.Create(const aApiKeyPropertyName: string; aIdentityStore : IIdentityStore<TUser,TRole>);
begin
fApiKeyPropertyName := aApiKeyPropertyName;
fIdentityStore := aIdentityStore;
end;
function TIdentityApiKeyStore<TUser,TRole>.IsValidKey(const aApiKey : string; out aValue : TApiKey) : Boolean;
var
user : TUser;
role : TRole;
begin
user := fIdentityStore.Users.Where(Format('%s = ?',[fApiKeyPropertyName]),[aApiKey]).SelectFirst;
try
if user = nil then Exit(False);
if TObject(user).ClassParent = TIdentityUser<TGUID> then
begin
aValue := TApiKey.Create(TIdentityUser<TGUID>(user).UserName,'',aApiKey);
role := fIdentityStore.GetRolebyId(TIdentityUser<TGUID>(user).RoleId.ToString);
end
else if TObject(user).ClassParent = TIdentityUser<Int64> then
begin
aValue := TApiKey.Create(TIdentityUser<Int64>(user).UserName,'',aApiKey);
role := fIdentityStore.GetRolebyId(TIdentityUser<Int64>(user).RoleId);
end
else
begin
aValue := TApiKey.Create(TIdentityUser<string>(user).UserName,'',aApiKey);
role := fIdentityStore.GetRolebyId(TIdentityUser<string>(user).RoleId);
end;
try
if role <> nil then
begin
if TObject(role).ClassParent = TIdentityRole<TGUID> then aValue.Role := TIdentityRole<TGUID>(role).Name
else if TObject(role).ClassParent = TIdentityRole<Int64> then aValue.Role := TIdentityRole<Int64>(role).Name
else aValue.Role := TIdentityRole<string>(role).Name;
end;
finally
role.Free;
end;
Result := True;
finally
user.Free;
end;
end;
{ TApiKeyOptions }
constructor TApiKeyOptions.Create;
begin
inherited;
fUnAuthorizedErrorCode := 401;
fUnAuthorizedErrorMessage := 'Not authenticated';
end;
end.