]> Untitled Git - lemmy.git/blobdiff - ui/src/services/UserService.ts
routes.api: fix get_captcha endpoint (#1135)
[lemmy.git] / ui / src / services / UserService.ts
index 92315db7bd684a61aeb509b205f4971880f3f83d..513ba608079ea29e115b562141cb0d8e32d84879 100644 (file)
@@ -1,47 +1,58 @@
-import * as Cookies from 'js-cookie';
-import { User, LoginResponse } from '../interfaces';
-import * as jwt_decode from 'jwt-decode';
-import { Subject } from 'rxjs';
+import Cookies from 'js-cookie';
+import { User, LoginResponse } from 'lemmy-js-client';
+import { setTheme } from '../utils';
+import jwt_decode from 'jwt-decode';
+import { Subject, BehaviorSubject } from 'rxjs';
+
+interface Claims {
+  id: number;
+  iss: string;
+}
 
 export class UserService {
-
   private static _instance: UserService;
   public user: User;
-  public sub: Subject<{user: User, unreadCount: number}> = new Subject<{user: User, unreadCount: number}>();
+  public claims: Claims;
+  public jwtSub: Subject<string> = new Subject<string>();
+  public unreadCountSub: BehaviorSubject<number> = new BehaviorSubject<number>(
+    0
+  );
 
   private constructor() {
-    let jwt = Cookies.get("jwt");
+    let jwt = Cookies.get('jwt');
     if (jwt) {
-      this.setUser(jwt);
+      this.setClaims(jwt);
     } else {
+      setTheme();
       console.log('No JWT cookie found.');
     }
   }
 
   public login(res: LoginResponse) {
-    this.setUser(res.jwt);
-    Cookies.set("jwt", res.jwt);
-    console.log("jwt cookie set");
+    this.setClaims(res.jwt);
+    Cookies.set('jwt', res.jwt, { expires: 365 });
+    console.log('jwt cookie set');
   }
 
   public logout() {
+    this.claims = undefined;
     this.user = undefined;
-    Cookies.remove("jwt");
-    console.log("Logged out.");
-    this.sub.next({user: undefined, unreadCount: 0});
+    Cookies.remove('jwt');
+    setTheme();
+    this.jwtSub.next();
+    console.log('Logged out.');
   }
 
   public get auth(): string {
-    return Cookies.get("jwt");
+    return Cookies.get('jwt');
   }
 
-  private setUser(jwt: string) {
-    this.user = jwt_decode(jwt);
-    this.sub.next({user: this.user, unreadCount: 0});
-    console.log(this.user);
+  private setClaims(jwt: string) {
+    this.claims = jwt_decode(jwt);
+    this.jwtSub.next(jwt);
   }
 
-  public static get Instance(){
+  public static get Instance() {
     return this._instance || (this._instance = new this());
   }
 }