Skip to content
Snippets Groups Projects
Commit 19e75710 authored by David Noah Donges's avatar David Noah Donges
Browse files

Make user observable

parent 7914d1d4
1 merge request!98Resolve "navigation (login/logout)"
...@@ -6,11 +6,12 @@ import { UserRole } from '../../models/user-roles.enum'; ...@@ -6,11 +6,12 @@ import { UserRole } from '../../models/user-roles.enum';
import { DataStoreService } from '../util/data-store.service'; import { DataStoreService } from '../util/data-store.service';
import { HttpClient, HttpHeaders } from '@angular/common/http'; import { HttpClient, HttpHeaders } from '@angular/common/http';
import { ClientAuthentication } from '../../models/client-authentication'; import { ClientAuthentication } from '../../models/client-authentication';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable() @Injectable()
export class AuthenticationService { export class AuthenticationService {
private readonly STORAGE_KEY: string = 'USER'; private readonly STORAGE_KEY: string = 'USER';
private user: User; private user = new BehaviorSubject<User>(undefined);
private apiUrl = { private apiUrl = {
base: 'https://arsnova-staging.mni.thm.de/api', base: 'https://arsnova-staging.mni.thm.de/api',
v2: 'https://arsnova-staging.mni.thm.de/api/v2', v2: 'https://arsnova-staging.mni.thm.de/api/v2',
...@@ -30,7 +31,7 @@ export class AuthenticationService { ...@@ -30,7 +31,7 @@ export class AuthenticationService {
private http: HttpClient) { private http: HttpClient) {
if (dataStoreService.has(this.STORAGE_KEY)) { if (dataStoreService.has(this.STORAGE_KEY)) {
// Load user data from local data store if available // Load user data from local data store if available
this.user = JSON.parse(dataStoreService.get(this.STORAGE_KEY)); this.user.next(JSON.parse(dataStoreService.get(this.STORAGE_KEY)));
} }
} }
...@@ -74,28 +75,28 @@ export class AuthenticationService { ...@@ -74,28 +75,28 @@ export class AuthenticationService {
logout() { logout() {
// Destroy the persisted user data // Destroy the persisted user data
this.dataStoreService.remove(this.STORAGE_KEY); this.dataStoreService.remove(this.STORAGE_KEY);
this.user = undefined; this.user.next(undefined);
} }
getUser(): User { getUser(): User {
return this.user; return this.user.getValue();
} }
private setUser(user: User): void { private setUser(user: User): void {
this.user = user; this.user.next(user);
this.dataStoreService.set(this.STORAGE_KEY, JSON.stringify(this.user)); this.dataStoreService.set(this.STORAGE_KEY, JSON.stringify(user));
} }
isLoggedIn(): boolean { isLoggedIn(): boolean {
return this.user !== undefined; return this.user.getValue() !== undefined;
} }
getRole(): UserRole { getRole(): UserRole {
return this.isLoggedIn() ? this.user.role : undefined; return this.isLoggedIn() ? this.user.getValue().role : undefined;
} }
getToken(): string { getToken(): string {
return this.user.token; return this.isLoggedIn() ? this.user.getValue().token : undefined;
} }
private checkLogin(clientAuthentication: Observable<ClientAuthentication>, userRole: UserRole): Observable<boolean> { private checkLogin(clientAuthentication: Observable<ClientAuthentication>, userRole: UserRole): Observable<boolean> {
...@@ -115,4 +116,7 @@ export class AuthenticationService { ...@@ -115,4 +116,7 @@ export class AuthenticationService {
}); });
} }
get watchUser() {
return this.user.asObservable();
}
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment