-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.service.ts
501 lines (453 loc) · 15.1 KB
/
auth.service.ts
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
/*
Auth Service
Send a Hug Service
---------------------------------------------------
MIT License
Copyright (c) 2020-2024 Send A Hug
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
The provided Software is separate from the idea behind its website. The Send A Hug
website and its underlying design and ideas are owned by Send A Hug group and
may not be sold, sub-licensed or distributed in any way. The Software itself may
be adapted for any purpose and used freely under the given conditions.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
// Angular imports
import { computed, Injectable, signal } from "@angular/core";
import { HttpClient, HttpErrorResponse, HttpHeaders } from "@angular/common/http";
// Other essential imports
import {
BehaviorSubject,
catchError,
EMPTY,
from,
map,
Observable,
of,
switchMap,
tap,
throwError,
} from "rxjs";
import {
signInWithEmailAndPassword,
signInWithPopup,
GoogleAuthProvider,
OAuthProvider,
signOut,
AuthProvider,
getIdToken,
createUserWithEmailAndPassword,
Auth,
authState,
sendPasswordResetEmail,
sendEmailVerification,
ActionCodeSettings,
} from "@angular/fire/auth";
// App-related imports
import { User } from "@app/interfaces/user.interface";
import { AlertsService } from "@app/services/alerts.service";
import { SWManager } from "@app/services/sWManager.service";
interface UserUpdateResponse {
success: boolean;
updated: User;
}
interface GetUserResponse {
success: boolean;
user: User;
}
export type ToggleButtonOption = "Enable" | "Disable";
@Injectable({
providedIn: "root",
})
export class AuthService {
readonly serverUrl = import.meta.env["VITE_BACKEND_URL"];
// authentication information
authenticated = signal<boolean>(false);
// user data
userData = signal<User | undefined>(undefined);
// shortcuts
pushEnabled = computed<boolean>(() => this.userData()?.pushEnabled || false);
toggleBtn = computed<ToggleButtonOption>(() => (this.pushEnabled() ? "Disable" : "Enable"));
autoRefresh = computed<boolean>(() => this.userData()?.autoRefresh || false);
refreshBtn = computed<ToggleButtonOption>(() => (this.autoRefresh() ? "Disable" : "Enable"));
refreshRate = computed(() => this.userData()?.refreshRate || 20);
// documents whether the user just logged in or they're still logged in following
// their previous login
loggedIn = false;
tokenExpired = false;
// Whether the user is in the process of registering
isRegistering = signal(false);
isUserDataResolved = new BehaviorSubject(false);
// firebase stuff
actionCodeSettings = signal<ActionCodeSettings>({
// TODO: Hardcode the base URL once we deploy to live
url: `${import.meta.env["VITE_BASE_URL"]}/verify`,
});
// CTOR
constructor(
private Http: HttpClient,
private alertsService: AlertsService,
private serviceWorkerM: SWManager,
private auth: Auth,
) {}
/**
* Firebase Methods
* =====================================
*/
/**
* Checks whether there's a user currently logged in. If there is,
* fetches the user's details. Otherwise, logs the previous user out.
* @returns an observable that resolves to an internal user.
*/
checkForLoggedInUser(): Observable<User | undefined> {
return authState(this.auth)
.pipe(
tap((currentUser) => {
if (!currentUser) {
this.logout();
}
}),
)
.pipe(
switchMap((currentUser) => {
if (!currentUser || this.isRegistering()) return EMPTY;
return this.fetchUser();
}),
);
}
/**
* Gets the currently-logged in user from firebase.
* @returns the currently-logged in user from firebase if there is one.
*/
getCurrentFirebaseUser() {
return this.auth.currentUser;
}
/**
* Creates a new user with email and password.
* @param email - the email to use for sign up.
* @param password - the password to use.
* @returns a observable of a user credentials.
*/
signUpWithEmail(email: string, password: string) {
return from(createUserWithEmailAndPassword(this.auth, email, password));
}
/**
* Logs a user in with username and password.
* @param email - the email to use for sign up.
* @param password - the password to use.
* @returns a observable of a user credentials.
*/
loginWithEmail(email: string, password: string) {
return from(signInWithEmailAndPassword(this.auth, email, password));
}
/**
* Logs in/signs up using an OAuth provider.
* @param provider whether to use apple or google for oauth.
*/
loginWithPopup(provider: "google" | "apple") {
let authProvider: AuthProvider;
switch (provider) {
case "google":
authProvider = new GoogleAuthProvider();
break;
case "apple":
authProvider = new OAuthProvider("apple.com");
break;
}
return from(signInWithPopup(this.auth, authProvider));
}
/**
* Makes the request to Firebase to send a password reset link.
*/
resetPassword(email: string) {
return sendPasswordResetEmail(this.auth, email);
}
/**
* Fetches an ID token for the currently logged in user.
* @returns an observable of a user's JWT.
*/
getIdTokenForCurrentUser() {
if (!this.auth.currentUser) return of("");
return from(getIdToken(this.auth.currentUser));
}
/**
* Sends a verification email via Firebase.
* @returns a promise that resolves to undefined.
*/
sendVerificationEmail(): Promise<void> {
if (!this.auth.currentUser) return new Promise((resolve) => resolve(undefined));
return sendEmailVerification(this.auth.currentUser, this.actionCodeSettings())
.then(() => {
this.alertsService.createAlert({
type: "Success",
message:
"Email sent successfully. Check your email and follow the instructions to verify your email.",
});
})
.catch((error) => {
this.alertsService.createAlert({
type: "Error",
message: `An error occurred. ${error}`,
});
});
}
/**
* Signs the user out in Firebase.
* @returns an empty observable.
*/
signOut() {
return from(signOut(this.auth));
}
/**
* Internal Auth Methods
* =====================================
*/
/**
* Gets a JWT and adds it to the user credential object.
* @returns an observable of a user credentials + jwt.
*/
getUserToken() {
const currentUser = this.getCurrentFirebaseUser();
if (!currentUser) return of();
return this.getIdTokenForCurrentUser().pipe(
map((token) => ({
...currentUser,
jwt: token,
})),
);
}
/**
* Fetches the logged in user's details.
* @param loggedIn - whether the user just logged in.
* @returns an observable with the user's details from the back-end.
*/
fetchUser(loggedIn: boolean = false): Observable<User> {
return this.getUserToken()
.pipe(
tap((firebaseUser: any) => {
this.loggedIn = loggedIn;
// turn the BehaviorSubject dealing with whether user data was resolved to
// false only if there's no user data or if the JWTs don't match (shouldn't happen, but just in case), change the BehaviorSubject
// and reset the user's data
if (
this.userData()?.id == 0 ||
!this.userData()?.id ||
this.userData()?.firebaseId != firebaseUser.uid
) {
this.isUserDataResolved.next(false);
this.userData.set(undefined);
}
}),
)
.pipe(
switchMap((firebaseUser) => {
return this.Http.get<GetUserResponse>(`${this.serverUrl}/users/all/${firebaseUser.uid}`, {
headers: new HttpHeaders({ Authorization: `Bearer ${firebaseUser.jwt}` }),
}).pipe(
map((response) => {
return {
...response.user,
jwt: firebaseUser.jwt,
firebaseId: firebaseUser.uid,
};
}),
);
}),
)
.pipe(tap((userData) => this.setCurrentUser(userData)))
.pipe(
catchError((err: HttpErrorResponse, _caught) => {
const statusCode = err.status;
// if a user with that ID doens't exist, try to create it
// because of the way we check permissions in that endpoint vs
// the create users endpoint
if (statusCode == 401 && err.error.message.description.includes("User not found")) {
return throwError(() => Error("User doesn't exist yet"));
} else {
// if the user is offline, show the offline header message
if (!navigator.onLine) {
this.alertsService.toggleOfflineAlert();
}
// otherwise just create an error alert
else {
this.alertsService.createErrorAlert(err);
}
this.isUserDataResolved.next(true);
}
return throwError(() => err);
}),
);
}
/**
* Creates the new user in the Send A Hug backend.
* @returns an observable with the user's details from the back-end.
*/
createUser(displayName: string | null) {
return this.getUserToken()
.pipe(tap((_firebaseUser) => this.isUserDataResolved.next(false)))
.pipe(
switchMap((firebaseUser) => {
// post request to create the user
return this.Http.post<GetUserResponse>(
`${this.serverUrl}/users`,
{
firebaseId: firebaseUser.uid,
displayName: displayName || "user" + Math.round(Math.random() * 100),
},
{
headers: new HttpHeaders({ Authorization: `Bearer ${firebaseUser.jwt}` }),
//if the request succeeds, get the user's data
},
).pipe(
map((newUser) => {
return {
...newUser.user,
jwt: firebaseUser.jwt,
firebaseId: firebaseUser.uid as string,
};
}),
);
}),
)
.pipe(tap((userData) => this.setCurrentUser(userData)))
.pipe(
catchError((err: HttpErrorResponse, _caught) => {
this.isUserDataResolved.next(true);
// if the user is offline, show the offline header message
if (!navigator.onLine) {
this.alertsService.toggleOfflineAlert();
}
// otherwise just create an error alert
else {
this.alertsService.createErrorAlert(err);
}
return throwError(() => err);
}),
);
}
/**
* Updates the AuthService's user-related attributes with the logged in user.
* @param userData the user data returned by the back-end.
*/
setCurrentUser(userData: User) {
this.userData.set(userData);
// set the authentication-variables accordingly
this.authenticated.set(true);
this.isUserDataResolved.next(true);
this.tokenExpired = false;
// if the user just logged in, update the login count
if (this.loggedIn) {
this.updateUserData({ loginCount: userData.loginCount + 1 });
this.loggedIn = false;
}
// adds the user's data to the users store
let user = {
id: userData.id,
displayName: userData.displayName,
receivedH: userData.receivedH,
givenH: userData.givenH,
posts: userData.posts,
role: userData.role,
selectedIcon: userData.selectedIcon,
iconColours: {
character: userData.iconColours?.character,
lbg: userData.iconColours?.lbg,
rbg: userData.iconColours?.rbg,
item: userData.iconColours?.item,
},
};
this.serviceWorkerM.addItem("users", user);
}
/**
* Signs the user out and then deletes the user's data locally.
*/
logout() {
return this.signOut().subscribe({
next: () => {
//clears the user's data
this.authenticated.set(false);
this.userData.set(undefined);
// clears all the messages data (as that's private per user)
this.serviceWorkerM.clearStore("messages");
this.serviceWorkerM.clearStore("threads");
// if the user has been logged out through their token expiring
if (this.tokenExpired) {
this.alertsService.createAlert(
{
type: "Notification",
message: `Your session had become inactive and you have been safely logged out. Log back in to continue.`,
},
{
navigate: true,
navTarget: "/user",
navText: "User Page",
},
);
}
},
});
}
/**
* Updates the user's data locally and sends a request to the server
* to update the user's data with the provided details.
* @param user - the details to update.
* @returns a subscription that runs after the update is done.
*/
updateUserData(user: Partial<User>) {
this.userData.set({
...this.userData()!,
...user,
});
const updatedUser = { ...this.userData() };
return this.getUserToken()
.pipe(
switchMap((user) =>
this.Http.patch<UserUpdateResponse>(
`${this.serverUrl}/users/all/${this.userData()?.id}`,
updatedUser,
{
headers: new HttpHeaders({ Authorization: `Bearer ${user.jwt}` }),
},
),
),
)
.subscribe({
next: (response) => {
this.serviceWorkerM.addItem("users", response.updated);
},
error: (err: HttpErrorResponse) => {
this.alertsService.createErrorAlert(err);
},
});
}
/**
* Sheck whether the user has permission to perform an action.
* @param permission - The required permission.
* @returns true/false depending on whether the user has permission.
*/
canUser(permission: string) {
// if there's an active token, check the logged in user's permissions
if (this.userData()) {
// if it's within the user's permissions, return true;
// otherwise return false
const canUserDo = this.userData()!.role["permissions"].includes(permission);
return canUserDo;
}
// if there isn't, no user is logged in, so of course there's no permission
else {
return false;
}
}
}