]> 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 4e53aa0810c54846a10016119361eb9ec3ef9353..513ba608079ea29e115b562141cb0d8e32d84879 100644 (file)
@@ -1,51 +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> = new Subject<User>();
+  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(undefined);
-  }
-
-  public get loggedIn(): boolean {
-    return this.user !== undefined;
+    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(this.user);
-    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());
   }
 }