forked from LittleBigRefresh/Refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameDatabaseContext.Registration.cs
More file actions
361 lines (293 loc) · 12.6 KB
/
Copy pathGameDatabaseContext.Registration.cs
File metadata and controls
361 lines (293 loc) · 12.6 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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
using MongoDB.Bson;
using Refresh.Common.Verification;
using Refresh.Database.Models.Authentication;
using Refresh.Database.Models.Statistics;
using Refresh.Database.Models.Users;
namespace Refresh.Database;
public partial class GameDatabaseContext // Registration
{
public GameUser CreateUser(string username, string emailAddress, bool skipChecks = false)
{
if (!skipChecks)
{
if (!this.IsUsernameValid(username))
throw new FormatException(
"Username must be valid (3 to 16 alphanumeric characters, plus hyphens and underscores)");
if (this.IsUsernameTaken(username))
throw new InvalidOperationException("Cannot create a user with an existing username");
if (this.IsEmailTaken(emailAddress))
throw new InvalidOperationException("Cannot create a user with an existing email address");
}
emailAddress = emailAddress.ToLowerInvariant();
GameUser user = new()
{
Username = username,
EmailAddress = emailAddress,
EmailAddressVerified = false,
JoinDate = this._time.Now,
};
this.Write(() =>
{
this.GameUsers.Add(user);
});
this.Write(() =>
{
user.Statistics = new GameUserStatistics
{
UserId = user.UserId,
};
this.GameUserStatistics.Add(user.Statistics);
});
return user;
}
public GameUser CreateUserFromQueuedRegistration(QueuedRegistration registration, TokenPlatform? platform = null)
{
this.Write(() =>
{
this.QueuedRegistrations.Remove(registration);
});
GameUser user = this.CreateUser(registration.Username, registration.EmailAddress);
this.SetUserPassword(user, registration.PasswordBcrypt);
if (platform != null)
{
this.Write(() =>
{
// ReSharper disable once SwitchStatementHandlesSomeKnownEnumValuesWithDefault
switch (platform)
{
case TokenPlatform.PS3:
case TokenPlatform.Vita:
case TokenPlatform.PSP:
user.PsnAuthenticationAllowed = true;
break;
case TokenPlatform.RPCS3:
user.RpcnAuthenticationAllowed = true;
break;
}
});
}
return user;
}
public bool IsUsernameValid(string username)
{
return CommonPatterns.UsernameRegex().IsMatch(username);
}
public bool IsUsernameQueued(string username)
{
return this.QueuedRegistrations.Any(r => r.Username == username);
}
public bool IsEmailQueued(string emailAddress)
{
return this.QueuedRegistrations.Any(r => r.EmailAddress == emailAddress);
}
public bool IsUsernameTaken(string username, GameUser? userToName = null)
{
if (this.GameUsers.Any(u => u.Username == username)) return true;
if (this.QueuedRegistrations.Any(r => r.Username == username)) return true;
if (this.IsUserDisallowed(username)) return true;
PreviousUsername? previous = this.PreviousUsernames.FirstOrDefault(p => p.Username == username);
// no one has ever had this name before
if (previous == null) return false;
// this is not the initial owner of the name (only previous owners may be renamed back)
if (userToName == null || userToName.UserId != previous.UserId) return true;
return false;
}
public bool IsEmailTaken(string emailAddress)
{
return this.GameUsers.Any(u => u.EmailAddress == emailAddress) ||
this.QueuedRegistrations.Any(r => r.EmailAddress == emailAddress) ||
this.IsEmailAddressDisallowed(emailAddress);
}
public void AddRegistrationToQueue(string username, string emailAddress, string passwordBcrypt)
{
if (this.IsUsernameTaken(username))
throw new InvalidOperationException("Cannot create a registration with an existing username");
if (this.IsEmailTaken(emailAddress))
throw new InvalidOperationException("Cannot create a user with an existing email address");
QueuedRegistration registration = new()
{
Username = username,
UsernameLower = username.ToLower(),
EmailAddress = emailAddress,
PasswordBcrypt = passwordBcrypt,
ExpiryDate = this._time.Now + TimeSpan.FromHours(1),
};
this.Write(() =>
{
this.QueuedRegistrations.Add(registration);
});
}
public void RemoveRegistrationFromQueue(QueuedRegistration registration)
{
this.Write(() =>
{
this.QueuedRegistrations.Remove(registration);
});
}
public void RemoveAllRegistrationsFromQueue() => this.Write(this.RemoveAll<QueuedRegistration>);
public bool IsRegistrationExpired(QueuedRegistration registration) => registration.ExpiryDate < this._time.Now;
public QueuedRegistration? GetQueuedRegistrationByUsername(string username, bool setToCorrectUsernameCasing = true)
{
#pragma warning disable CA1862
QueuedRegistration? registration = this.QueuedRegistrations.FirstOrDefault(q => q.UsernameLower == username.ToLower());
#pragma warning restore CA1862
// Correct the username's casing so we don't end up using this registration to create an account with a potentially
// wrongly cased username, leading to it not exactly matching to the ticket's username and preventing future logins.
if (registration != null && setToCorrectUsernameCasing)
{
registration.Username = username;
}
return registration;
}
public QueuedRegistration? GetQueuedRegistrationByObjectId(ObjectId id)
=> this.QueuedRegistrations.FirstOrDefault(q => q.RegistrationId == id);
public DatabaseList<QueuedRegistration> GetAllQueuedRegistrations()
=> new(this.QueuedRegistrations);
public DatabaseList<EmailVerificationCode> GetAllVerificationCodes()
=> new(this.EmailVerificationCodes);
public void VerifyUserEmail(GameUser user)
{
this.Write(() =>
{
user.EmailAddressVerified = true;
this.EmailVerificationCodes.RemoveRange(c => c.User == user);
});
}
public bool VerificationCodeMatches(GameUser user, string code) =>
this.EmailVerificationCodes.Any(c => c.User == user && c.Code == code);
public bool IsVerificationCodeExpired(EmailVerificationCode code) => code.ExpiryDate < this._time.Now;
public EmailVerificationCode CreateEmailVerificationCode(GameUser user)
{
EmailVerificationCode verificationCode = new()
{
User = user,
Code = CodeHelper.GenerateDigitCode(),
ExpiryDate = this._time.Now + TimeSpan.FromDays(1),
};
this.Write(() =>
{
this.EmailVerificationCodes.Add(verificationCode);
});
return verificationCode;
}
public void RemoveEmailVerificationCode(EmailVerificationCode code)
{
this.Write(() =>
{
this.EmailVerificationCodes.Remove(code);
});
}
public bool IsUserDisallowed(string username)
{
string lowercaseUsername = username.ToLower();
return this.DisallowedUsers.Any(u => u.UsernameLower == lowercaseUsername);
}
public DisallowedUser? GetDisallowedUserInfo(string username)
{
string lowercaseUsername = username.ToLower();
return this.DisallowedUsers.FirstOrDefault(d => d.UsernameLower == lowercaseUsername);
}
public DatabaseList<DisallowedUser> GetDisallowedUsers(int skip, int count)
=> new(this.DisallowedUsers.OrderByDescending(d => d.DisallowedAt), skip, count);
public (DisallowedUser, bool) DisallowUser(string username, string reason)
{
string lowercaseUsername = username.ToLower();
DisallowedUser? existing = this.GetDisallowedUserInfo(lowercaseUsername);
if (existing != null) return (existing, false);
DisallowedUser disallowed = new()
{
UsernameLower = lowercaseUsername,
Reason = reason,
DisallowedAt = this._time.Now,
};
this.DisallowedUsers.Add(disallowed);
this.SaveChanges();
return (disallowed, true);
}
public bool ReallowUser(string username)
{
string lowercaseUsername = username.ToLower();
DisallowedUser? disallowedUser = this.GetDisallowedUserInfo(lowercaseUsername);
if (disallowedUser == null)
return false;
this.DisallowedUsers.Remove(disallowedUser);
this.SaveChanges();
return true;
}
public bool IsEmailAddressDisallowed(string emailAddress)
{
string emailAddressLower = emailAddress.ToLowerInvariant();
return this.DisallowedEmailAddresses.Any(u => u.AddressLower == emailAddressLower);
}
public DisallowedEmailAddress? GetDisallowedEmailAddressInfo(string emailAddress)
{
string emailAddressLower = emailAddress.ToLowerInvariant();
return this.DisallowedEmailAddresses.FirstOrDefault(d => d.AddressLower == emailAddressLower);
}
public DatabaseList<DisallowedEmailAddress> GetDisallowedEmailAddresses(int skip, int count)
=> new(this.DisallowedEmailAddresses.OrderByDescending(d => d.DisallowedAt), skip, count);
public (DisallowedEmailAddress, bool) DisallowEmailAddress(string emailAddress, string reason)
{
string emailAddressLower = emailAddress.ToLowerInvariant();
DisallowedEmailAddress? existing = this.GetDisallowedEmailAddressInfo(emailAddressLower);
if (existing != null) return (existing, false);
DisallowedEmailAddress disallowed = new()
{
AddressLower = emailAddressLower,
Reason = reason,
DisallowedAt = this._time.Now,
};
this.DisallowedEmailAddresses.Add(disallowed);
this.SaveChanges();
return (disallowed, true);
}
public bool ReallowEmailAddress(string emailAddress)
{
string emailAddressLower = emailAddress.ToLowerInvariant();
DisallowedEmailAddress? disallowed = this.GetDisallowedEmailAddressInfo(emailAddressLower);
if (disallowed == null)
return false;
this.DisallowedEmailAddresses.Remove(disallowed);
this.SaveChanges();
return true;
}
private string GetLowercaseEmailDomainFromAddress(string emailAddress)
=> emailAddress.Split('@').Last().ToLowerInvariant();
public bool IsEmailDomainDisallowed(string emailAddress)
{
string emailDomainLower = this.GetLowercaseEmailDomainFromAddress(emailAddress);
return this.DisallowedEmailDomains.Any(u => u.DomainLower == emailDomainLower);
}
public DisallowedEmailDomain? GetDisallowedEmailDomainInfo(string emailAddress)
{
string emailDomainLower = this.GetLowercaseEmailDomainFromAddress(emailAddress);
return this.DisallowedEmailDomains.FirstOrDefault(d => d.DomainLower == emailDomainLower);
}
public DatabaseList<DisallowedEmailDomain> GetDisallowedEmailDomains(int skip, int count)
=> new(this.DisallowedEmailDomains.OrderByDescending(d => d.DisallowedAt), skip, count);
public (DisallowedEmailDomain, bool) DisallowEmailDomain(string emailAddress, string reason)
{
string emailDomainLower = this.GetLowercaseEmailDomainFromAddress(emailAddress);
DisallowedEmailDomain? existing = this.GetDisallowedEmailDomainInfo(emailDomainLower);
if (existing != null) return (existing, false);
DisallowedEmailDomain disallowed = new()
{
DomainLower = emailDomainLower,
Reason = reason,
DisallowedAt = this._time.Now,
};
this.DisallowedEmailDomains.Add(disallowed);
this.SaveChanges();
return (disallowed, true);
}
public bool ReallowEmailDomain(string emailAddress)
{
string emailDomainLower = this.GetLowercaseEmailDomainFromAddress(emailAddress);
DisallowedEmailDomain? disallowedDomain = this.GetDisallowedEmailDomainInfo(emailDomainLower);
if (disallowedDomain == null)
return false;
this.DisallowedEmailDomains.Remove(disallowedDomain);
this.SaveChanges();
return true;
}
}