2019-03-23 01:42:57 +00:00
|
|
|
import * as Cookies from 'js-cookie';
|
2019-03-26 18:00:18 +00:00
|
|
|
import { User, LoginResponse } from '../interfaces';
|
2019-03-23 01:42:57 +00:00
|
|
|
import * as jwt_decode from 'jwt-decode';
|
|
|
|
import { Subject } from 'rxjs';
|
|
|
|
|
|
|
|
export class UserService {
|
|
|
|
private static _instance: UserService;
|
|
|
|
private user: User;
|
|
|
|
public sub: Subject<User> = new Subject<User>();
|
|
|
|
|
|
|
|
private constructor() {
|
|
|
|
let jwt = Cookies.get("jwt");
|
|
|
|
if (jwt) {
|
|
|
|
this.setUser(jwt);
|
|
|
|
} else {
|
|
|
|
console.log('No JWT cookie found.');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
public login(res: LoginResponse) {
|
|
|
|
this.setUser(res.jwt);
|
|
|
|
Cookies.set("jwt", res.jwt);
|
2019-03-23 01:42:57 +00:00
|
|
|
console.log("jwt cookie set");
|
|
|
|
}
|
|
|
|
|
|
|
|
public logout() {
|
|
|
|
this.user = null;
|
|
|
|
Cookies.remove("jwt");
|
|
|
|
console.log("Logged out.");
|
|
|
|
this.sub.next(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public get loggedIn(): boolean {
|
|
|
|
return this.user !== undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get auth(): string {
|
|
|
|
return Cookies.get("jwt");
|
|
|
|
}
|
|
|
|
|
|
|
|
private setUser(jwt: string) {
|
|
|
|
this.user = jwt_decode(jwt);
|
|
|
|
this.sub.next(this.user);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static get Instance(){
|
|
|
|
return this._instance || (this._instance = new this());
|
|
|
|
}
|
|
|
|
}
|