-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathOrmLiteAuthRepository.cs
839 lines (704 loc) · 29.1 KB
/
OrmLiteAuthRepository.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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using ServiceStack.Data;
using ServiceStack.OrmLite;
namespace ServiceStack.Auth
{
public class OrmLiteAuthRepository : OrmLiteAuthRepository<UserAuth, UserAuthDetails>, IUserAuthRepository
{
public OrmLiteAuthRepository(IDbConnectionFactory dbFactory) : base(dbFactory) { }
public OrmLiteAuthRepository(IDbConnectionFactory dbFactory, string namedConnection = null)
: base(dbFactory, namedConnection) {}
}
public partial class OrmLiteAuthRepository<TUserAuth, TUserAuthDetails> : OrmLiteAuthRepositoryBase<TUserAuth, TUserAuthDetails>
where TUserAuth : class, IUserAuth
where TUserAuthDetails : class, IUserAuthDetails
{
private readonly IDbConnectionFactory dbFactory;
public string NamedConnection { get; private set; }
public OrmLiteAuthRepository(IDbConnectionFactory dbFactory, string namedConnection = null)
{
this.dbFactory = dbFactory;
this.NamedConnection = namedConnection;
}
protected IDbConnection OpenDbConnection()
{
return this.NamedConnection != null
? dbFactory.OpenDbConnection(NamedConnection)
: dbFactory.OpenDbConnection();
}
public override void Exec(Action<IDbConnection> fn)
{
using var db = OpenDbConnection();
fn(db);
}
public override T Exec<T>(Func<IDbConnection, T> fn)
{
using var db = OpenDbConnection();
return fn(db);
}
}
public class OrmLiteAuthRepositoryMultitenancy : OrmLiteAuthRepositoryMultitenancy<UserAuth, UserAuthDetails>, IUserAuthRepository
{
public OrmLiteAuthRepositoryMultitenancy(IDbConnection db) : base(db) { }
public OrmLiteAuthRepositoryMultitenancy(IDbConnectionFactory dbFactory, params string[] connectionStrings)
: base(dbFactory, connectionStrings) { }
}
public partial class OrmLiteAuthRepositoryMultitenancy<TUserAuth, TUserAuthDetails> : OrmLiteAuthRepositoryBase<TUserAuth, TUserAuthDetails>, IDisposable
where TUserAuth : class, IUserAuth
where TUserAuthDetails : class, IUserAuthDetails
{
private readonly IDbConnection db;
public OrmLiteAuthRepositoryMultitenancy(IDbConnection db)
{
this.db = db;
}
private readonly IDbConnectionFactory dbFactory;
private readonly string[] connectionStrings;
public OrmLiteAuthRepositoryMultitenancy(IDbConnectionFactory dbFactory, params string[] connectionStrings)
{
this.dbFactory = dbFactory;
this.connectionStrings = connectionStrings;
}
public override void Exec(Action<IDbConnection> fn)
{
if (db == null)
throw new NotSupportedException("This operation can only be called within context of a Request");
fn(db);
}
public override T Exec<T>(Func<IDbConnection, T> fn)
{
if (db == null)
throw new NotSupportedException("This operation can only be called within context of a Request");
return fn(db);
}
public void EachDb(Action<IDbConnection> fn)
{
if (dbFactory == null)
throw new NotSupportedException("This operation can only be called on Startup");
var ormLiteDbFactory = (OrmLiteConnectionFactory)dbFactory;
foreach (var connStr in connectionStrings)
{
//Required by In Memory Sqlite
var db = connStr == ormLiteDbFactory.ConnectionString
? dbFactory.OpenDbConnection()
: dbFactory.OpenDbConnectionString(connStr);
using (db)
{
fn(db);
}
}
}
public override void InitSchema()
{
hasInitSchema = true;
EachDb(db =>
{
db.CreateTableIfNotExists<TUserAuth>();
db.CreateTableIfNotExists<TUserAuthDetails>();
if (UseDistinctRoleTables)
db.CreateTableIfNotExists<UserAuthRole>();
});
}
public override void DropAndReCreateTables()
{
hasInitSchema = true;
EachDb(db =>
{
db.DropAndCreateTable<TUserAuth>();
db.DropAndCreateTable<TUserAuthDetails>();
if (UseDistinctRoleTables)
db.DropAndCreateTable<UserAuthRole>();
});
}
public override void InitApiKeySchema()
{
EachDb(db =>
{
db.CreateTableIfNotExists<ApiKey>();
});
}
public void Dispose()
{
db?.Dispose();
}
}
public abstract partial class OrmLiteAuthRepositoryBase<TUserAuth, TUserAuthDetails> : IUserAuthRepository, IRequiresSchema, IClearable, IManageRoles, IManageApiKeys, ICustomUserAuth, IQueryUserAuth
where TUserAuth : class, IUserAuth
where TUserAuthDetails : class, IUserAuthDetails
{
public bool hasInitSchema;
public bool UseDistinctRoleTables { get; set; }
public bool ForceCaseInsensitiveUserNameSearch { get; set; } = true;
public abstract void Exec(Action<IDbConnection> fn);
public abstract T Exec<T>(Func<IDbConnection, T> fn);
public virtual void InitSchema()
{
hasInitSchema = true;
Exec(db =>
{
db.CreateTableIfNotExists<TUserAuth>();
db.CreateTableIfNotExists<TUserAuthDetails>();
db.CreateTableIfNotExists<UserAuthRole>();
});
}
public virtual void DropAndReCreateTables()
{
hasInitSchema = true;
Exec(db =>
{
db.DropAndCreateTable<TUserAuth>();
db.DropAndCreateTable<TUserAuthDetails>();
db.DropAndCreateTable<UserAuthRole>();
});
}
public virtual IUserAuth CreateUserAuth(IUserAuth newUser, string password)
{
newUser.ValidateNewUser(password);
return Exec(db =>
{
AssertNoExistingUser(db, newUser);
newUser.PopulatePasswordHashes(password);
newUser.CreatedDate = DateTime.UtcNow;
newUser.ModifiedDate = newUser.CreatedDate;
db.Save((TUserAuth)newUser);
newUser = db.SingleById<TUserAuth>(newUser.Id);
return newUser;
});
}
protected virtual void AssertNoExistingUser(IDbConnection db, IUserAuth newUser, IUserAuth exceptForExistingUser = null)
{
if (newUser.UserName != null)
{
var existingUser = GetUserAuthByUserName(db, newUser.UserName);
if (existingUser != null
&& (exceptForExistingUser == null || existingUser.Id != exceptForExistingUser.Id))
throw new ArgumentException(ErrorMessages.UserAlreadyExistsFmt.LocalizeFmt(newUser.UserName.SafeInput()));
}
if (newUser.Email != null)
{
var existingUser = GetUserAuthByUserName(db, newUser.Email);
if (existingUser != null
&& (exceptForExistingUser == null || existingUser.Id != exceptForExistingUser.Id))
throw new ArgumentException(ErrorMessages.EmailAlreadyExistsFmt.LocalizeFmt(newUser.Email.SafeInput()));
}
}
public virtual IUserAuth UpdateUserAuth(IUserAuth existingUser, IUserAuth newUser, string password)
{
newUser.ValidateNewUser(password);
return Exec(db =>
{
AssertNoExistingUser(db, newUser, existingUser);
newUser.Id = existingUser.Id;
newUser.PopulatePasswordHashes(password, existingUser);
newUser.CreatedDate = existingUser.CreatedDate;
newUser.ModifiedDate = DateTime.UtcNow;
db.Save((TUserAuth)newUser);
return newUser;
});
}
public virtual IUserAuth UpdateUserAuth(IUserAuth existingUser, IUserAuth newUser)
{
newUser.ValidateNewUser();
return Exec(db =>
{
AssertNoExistingUser(db, newUser, existingUser);
newUser.Id = existingUser.Id;
newUser.PasswordHash = existingUser.PasswordHash;
newUser.Salt = existingUser.Salt;
newUser.DigestHa1Hash = existingUser.DigestHa1Hash;
newUser.CreatedDate = existingUser.CreatedDate;
newUser.ModifiedDate = DateTime.UtcNow;
db.Save((TUserAuth)newUser);
return newUser;
});
}
public virtual IUserAuth GetUserAuthByUserName(string userNameOrEmail)
{
if (userNameOrEmail == null)
return null;
return Exec(db =>
{
if (!hasInitSchema)
{
hasInitSchema = db.TableExists<TUserAuth>();
if (!hasInitSchema)
throw new Exception("OrmLiteAuthRepository Db tables have not been initialized. Try calling 'InitSchema()' in your AppHost Configure method.");
}
return GetUserAuthByUserName(db, userNameOrEmail);
});
}
private TUserAuth GetUserAuthByUserName(IDbConnection db, string userNameOrEmail)
{
var isEmail = userNameOrEmail.Contains("@");
var lowerUserName = userNameOrEmail.ToLower();
TUserAuth userAuth = null;
// Usernames/Emails are saved in Lower Case so we can do an exact search using lowerUserName
if (HostContext.GetPlugin<AuthFeature>()?.SaveUserNamesInLowerCase == true)
{
return isEmail
? db.Select<TUserAuth>(q => q.Email == lowerUserName).FirstOrDefault()
: db.Select<TUserAuth>(q => q.UserName == lowerUserName).FirstOrDefault();
}
// Try an exact search using index first
userAuth = isEmail
? db.Select<TUserAuth>(q => q.Email == userNameOrEmail).FirstOrDefault()
: db.Select<TUserAuth>(q => q.UserName == userNameOrEmail).FirstOrDefault();
if (userAuth != null)
return userAuth;
// Fallback to a non-index search if no exact match is found
if (ForceCaseInsensitiveUserNameSearch)
{
userAuth = isEmail
? db.Select<TUserAuth>(q => q.Email.ToLower() == lowerUserName).FirstOrDefault()
: db.Select<TUserAuth>(q => q.UserName.ToLower() == lowerUserName).FirstOrDefault();
}
return userAuth;
}
private void SetOrderBy(SqlExpression<TUserAuth> q, string orderBy)
{
if (string.IsNullOrEmpty(orderBy))
return;
var orderByField = AuthRepositoryUtils.ParseOrderBy(orderBy, out var desc);
if (!desc)
q.OrderBy(orderByField);
else
q.OrderByDescending(orderByField);
}
public List<IUserAuth> GetUserAuths(string orderBy = null, int? skip = null, int? take = null)
{
return Exec(db => {
var q = db.From<TUserAuth>();
SetOrderBy(q, orderBy);
if (skip != null || take != null)
q.Limit(skip, take);
return db.Select(q).ConvertAll(x => (IUserAuth)x);
});
}
public List<IUserAuth> SearchUserAuths(string query, string orderBy = null, int? skip = null, int? take = null)
{
return Exec(db => {
var q = db.From<TUserAuth>();
if (!string.IsNullOrEmpty(query))
{
q.Where(x => x.UserName.Contains(query) ||
x.PrimaryEmail.Contains(query) ||
x.Email.Contains(query) ||
x.DisplayName.Contains(query) ||
x.Company.Contains(query));
}
SetOrderBy(q, orderBy);
if (skip != null || take != null)
q.Limit(skip, take);
return db.Select(q).ConvertAll(x => (IUserAuth)x);
});
}
public virtual bool TryAuthenticate(string userName, string password, out IUserAuth userAuth)
{
userAuth = GetUserAuthByUserName(userName);
if (userAuth == null)
return false;
if (userAuth.VerifyPassword(password, out var needsRehash))
{
this.RecordSuccessfulLogin(userAuth, needsRehash, password);
return true;
}
this.RecordInvalidLoginAttempt(userAuth);
userAuth = null;
return false;
}
public virtual bool TryAuthenticate(Dictionary<string, string> digestHeaders, string privateKey, int nonceTimeOut, string sequence, out IUserAuth userAuth)
{
userAuth = GetUserAuthByUserName(digestHeaders["username"]);
if (userAuth == null)
return false;
if (userAuth.VerifyDigestAuth(digestHeaders, privateKey, nonceTimeOut, sequence))
{
this.RecordSuccessfulLogin(userAuth);
return true;
}
this.RecordInvalidLoginAttempt(userAuth);
userAuth = null;
return false;
}
public virtual void DeleteUserAuth(string userAuthId)
{
Exec(db => {
using var trans = db.OpenTransaction();
var userId = int.Parse(userAuthId);
db.Delete<TUserAuth>(x => x.Id == userId);
db.Delete<TUserAuthDetails>(x => x.UserAuthId == userId);
if (UseDistinctRoleTables)
db.Delete<UserAuthRole>(x => x.UserAuthId == userId);
trans.Commit();
});
}
public virtual void LoadUserAuth(IAuthSession session, IAuthTokens tokens)
{
if (session == null)
throw new ArgumentNullException(nameof(session));
var userAuth = GetUserAuth(session, tokens);
LoadUserAuth(session, userAuth);
}
private void LoadUserAuth(IAuthSession session, IUserAuth userAuth)
{
session.PopulateSession(userAuth, this);
}
public virtual IUserAuth GetUserAuth(string userAuthId)
{
if (string.IsNullOrEmpty(userAuthId))
throw new ArgumentNullException(nameof(userAuthId));
return Exec(db => db.SingleById<TUserAuth>(int.Parse(userAuthId)));
}
public virtual void SaveUserAuth(IAuthSession authSession)
{
if (authSession == null)
throw new ArgumentNullException(nameof(authSession));
Exec(db =>
{
var userAuth = !authSession.UserAuthId.IsNullOrEmpty()
? db.SingleById<TUserAuth>(int.Parse(authSession.UserAuthId))
: authSession.ConvertTo<TUserAuth>();
if (userAuth.Id == default(int) && !authSession.UserAuthId.IsNullOrEmpty())
userAuth.Id = int.Parse(authSession.UserAuthId);
userAuth.ModifiedDate = DateTime.UtcNow;
if (userAuth.CreatedDate == default(DateTime))
userAuth.CreatedDate = userAuth.ModifiedDate;
db.Save(userAuth);
});
}
public virtual void SaveUserAuth(IUserAuth userAuth)
{
if (userAuth == null)
throw new ArgumentNullException(nameof(userAuth));
userAuth.ModifiedDate = DateTime.UtcNow;
if (userAuth.CreatedDate == default(DateTime))
userAuth.CreatedDate = userAuth.ModifiedDate;
Exec(db =>
{
db.Save((TUserAuth) userAuth);
});
}
public virtual List<IUserAuthDetails> GetUserAuthDetails(string userAuthId)
{
var id = int.Parse(userAuthId);
return Exec(db =>
{
return db.Select<TUserAuthDetails>(q => q.UserAuthId == id).OrderBy(x => x.ModifiedDate).Cast<IUserAuthDetails>().ToList();
});
}
public virtual IUserAuth GetUserAuth(IAuthSession authSession, IAuthTokens tokens)
{
if (!authSession.UserAuthId.IsNullOrEmpty())
{
var userAuth = GetUserAuth(authSession.UserAuthId);
if (userAuth != null)
return userAuth;
}
if (!authSession.UserAuthName.IsNullOrEmpty())
{
var userAuth = GetUserAuthByUserName(authSession.UserAuthName);
if (userAuth != null)
return userAuth;
}
if (tokens == null || tokens.Provider.IsNullOrEmpty() || tokens.UserId.IsNullOrEmpty())
return null;
return Exec(db =>
{
var oAuthProvider = db.Select<TUserAuthDetails>(q =>
q.Provider == tokens.Provider && q.UserId == tokens.UserId).FirstOrDefault();
if (oAuthProvider != null)
{
var userAuth = db.SingleById<TUserAuth>(oAuthProvider.UserAuthId);
return userAuth;
}
return null;
});
}
public virtual IUserAuthDetails CreateOrMergeAuthSession(IAuthSession authSession, IAuthTokens tokens)
{
TUserAuth userAuth = (TUserAuth)GetUserAuth(authSession, tokens)
?? typeof(TUserAuth).CreateInstance<TUserAuth>();
return Exec(db =>
{
var authDetails = db.Select<TUserAuthDetails>(
q => q.Provider == tokens.Provider && q.UserId == tokens.UserId).FirstOrDefault();
if (authDetails == null)
{
authDetails = typeof(TUserAuthDetails).CreateInstance<TUserAuthDetails>();
authDetails.Provider = tokens.Provider;
authDetails.UserId = tokens.UserId;
}
authDetails.PopulateMissing(tokens, overwriteReserved: true);
userAuth.PopulateMissingExtended(authDetails);
userAuth.ModifiedDate = DateTime.UtcNow;
if (userAuth.CreatedDate == default(DateTime))
userAuth.CreatedDate = userAuth.ModifiedDate;
db.Save(userAuth);
authDetails.UserAuthId = userAuth.Id;
authDetails.ModifiedDate = userAuth.ModifiedDate;
if (authDetails.CreatedDate == default(DateTime))
authDetails.CreatedDate = userAuth.ModifiedDate;
db.Save(authDetails);
return authDetails;
});
}
public virtual void Clear()
{
Exec(db =>
{
db.DeleteAll<TUserAuth>();
db.DeleteAll<TUserAuthDetails>();
if (UseDistinctRoleTables)
db.DeleteAll<UserAuthRole>();
});
}
string AssertUserAuthId(string userAuthId)
{
if (userAuthId == null)
throw new ArgumentNullException(nameof(userAuthId));
return userAuthId;
}
public virtual ICollection<string> GetRoles(string userAuthId)
{
AssertUserAuthId(userAuthId);
if (!UseDistinctRoleTables)
{
var userAuth = GetUserAuth(userAuthId);
return userAuth?.Roles ?? TypeConstants.EmptyStringList;;
}
else
{
return Exec(db =>
{
return db.Select<UserAuthRole>(q => q.UserAuthId == int.Parse(userAuthId) && q.Role != null).ConvertAll(x => x.Role);
});
}
}
public virtual ICollection<string> GetPermissions(string userAuthId)
{
AssertUserAuthId(userAuthId);
if (!UseDistinctRoleTables)
{
var userAuth = GetUserAuth(userAuthId);
return userAuth?.Permissions ?? TypeConstants.EmptyStringList;;
}
else
{
return Exec(db =>
{
return db.Select<UserAuthRole>(q => q.UserAuthId == int.Parse(userAuthId) && q.Permission != null).ConvertAll(x => x.Permission);
});
}
}
public virtual void GetRolesAndPermissions(string userAuthId, out ICollection<string> roles, out ICollection<string> permissions)
{
AssertUserAuthId(userAuthId);
if (!UseDistinctRoleTables)
{
var userAuth = GetUserAuth(userAuthId);
if (userAuth == null)
{
roles = permissions = TypeConstants.EmptyStringArray;
return;
}
roles = userAuth.Roles;
permissions = userAuth.Permissions;
}
else
{
roles = new List<string>();
permissions = new List<string>();
var rolesAndPerms = Exec(db =>
{
return db.KeyValuePairs<string,string>(db.From<UserAuthRole>()
.Where(x => x.UserAuthId == int.Parse(userAuthId))
.Select(x => new { x.Role, x.Permission }));
});
foreach (var kvp in rolesAndPerms)
{
if (kvp.Key != null)
roles.Add(kvp.Key);
if (kvp.Value != null)
permissions.Add(kvp.Value);
}
}
}
public virtual bool HasRole(string userAuthId, string role)
{
if (role == null)
throw new ArgumentNullException(nameof(role));
if (userAuthId == null)
return false;
if (!UseDistinctRoleTables)
{
var userAuth = GetUserAuth(userAuthId);
return userAuth.Roles != null && userAuth.Roles.Contains(role);
}
else
{
return Exec(db =>
{
return db.Count<UserAuthRole>(q =>
q.UserAuthId == int.Parse(userAuthId) && q.Role == role) > 0;
});
}
}
public virtual bool HasPermission(string userAuthId, string permission)
{
if (permission == null)
throw new ArgumentNullException(nameof(permission));
if (userAuthId == null)
return false;
if (!UseDistinctRoleTables)
{
var userAuth = GetUserAuth(userAuthId);
return userAuth.Permissions != null && userAuth.Permissions.Contains(permission);
}
else
{
return Exec(db =>
{
return db.Count<UserAuthRole>(q =>
q.UserAuthId == int.Parse(userAuthId) && q.Permission == permission) > 0;
});
}
}
public virtual void AssignRoles(string userAuthId, ICollection<string> roles = null, ICollection<string> permissions = null)
{
var userAuth = GetUserAuth(userAuthId);
if (!UseDistinctRoleTables)
{
if (!roles.IsEmpty())
{
foreach (var missingRole in roles.Where(x => userAuth.Roles == null || !userAuth.Roles.Contains(x)))
{
if (userAuth.Roles == null)
userAuth.Roles = new List<string>();
userAuth.Roles.Add(missingRole);
}
}
if (!permissions.IsEmpty())
{
foreach (var missingPermission in permissions.Where(x => userAuth.Permissions == null || !userAuth.Permissions.Contains(x)))
{
if (userAuth.Permissions == null)
userAuth.Permissions = new List<string>();
userAuth.Permissions.Add(missingPermission);
}
}
SaveUserAuth(userAuth);
}
else
{
Exec(db =>
{
var now = DateTime.UtcNow;
var userRoles = db.Select<UserAuthRole>(q => q.UserAuthId == userAuth.Id);
if (!roles.IsEmpty())
{
var roleSet = userRoles.Where(x => x.Role != null).Select(x => x.Role).ToSet();
foreach (var role in roles)
{
if (!roleSet.Contains(role))
{
db.Insert(new UserAuthRole
{
UserAuthId = userAuth.Id,
Role = role,
CreatedDate = now,
ModifiedDate = now,
});
}
}
}
if (!permissions.IsEmpty())
{
var permissionSet = userRoles.Where(x => x.Permission != null).Select(x => x.Permission).ToSet();
foreach (var permission in permissions)
{
if (!permissionSet.Contains(permission))
{
db.Insert(new UserAuthRole
{
UserAuthId = userAuth.Id,
Permission = permission,
CreatedDate = now,
ModifiedDate = now,
});
}
}
}
});
}
}
public virtual void UnAssignRoles(string userAuthId, ICollection<string> roles = null, ICollection<string> permissions = null)
{
var userAuth = GetUserAuth(userAuthId);
if (!UseDistinctRoleTables)
{
roles.Each(x => userAuth.Roles.Remove(x));
permissions.Each(x => userAuth.Permissions.Remove(x));
if (roles != null || permissions != null)
{
SaveUserAuth(userAuth);
}
}
else
{
Exec(db =>
{
if (!roles.IsEmpty())
{
db.Delete<UserAuthRole>(q => q.UserAuthId == userAuth.Id && roles.Contains(q.Role));
}
if (!permissions.IsEmpty())
{
db.Delete<UserAuthRole>(q => q.UserAuthId == userAuth.Id && permissions.Contains(q.Permission));
}
});
}
}
public virtual void InitApiKeySchema()
{
Exec(db =>
{
db.CreateTableIfNotExists<ApiKey>();
});
}
public bool ApiKeyExists(string apiKey)
{
return Exec(db =>
{
return db.Exists<ApiKey>(x => x.Id == apiKey);
});
}
public ApiKey GetApiKey(string apiKey)
{
return Exec(db => db.SingleById<ApiKey>(apiKey));
}
public List<ApiKey> GetUserApiKeys(string userId)
{
return Exec(db =>
{
var q = db.From<ApiKey>()
.Where(x => x.UserAuthId == userId)
.And(x => x.CancelledDate == null)
.And(x => x.ExpiryDate == null || x.ExpiryDate >= DateTime.UtcNow)
.OrderByDescending(x => x.CreatedDate);
return db.Select(q);
});
}
public void StoreAll(IEnumerable<ApiKey> apiKeys)
{
Exec(db =>
{
db.SaveAll(apiKeys);
});
}
public IUserAuth CreateUserAuth() => (IUserAuth) typeof(TUserAuth).CreateInstance();
public IUserAuthDetails CreateUserAuthDetails() => (IUserAuthDetails)typeof(TUserAuthDetails).CreateInstance();
}
}