]> Untitled Git - lemmy-ui.git/blob - src/shared/services/UserService.ts
Redirect from pages that require auth on logout (#1016)
[lemmy-ui.git] / src / shared / services / UserService.ts
1 // import Cookies from 'js-cookie';
2 import IsomorphicCookie from "isomorphic-cookie";
3 import jwt_decode from "jwt-decode";
4 import { LoginResponse, MyUserInfo } from "lemmy-js-client";
5 import { BehaviorSubject } from "rxjs";
6 import { isHttps } from "../env";
7 import { i18n } from "../i18next";
8 import { isAuthPath, isBrowser, toast } from "../utils";
9
10 interface Claims {
11   sub: number;
12   iss: string;
13   iat: number;
14 }
15
16 interface JwtInfo {
17   claims: Claims;
18   jwt: string;
19 }
20
21 export class UserService {
22   private static _instance: UserService;
23   public myUserInfo?: MyUserInfo;
24   public jwtInfo?: JwtInfo;
25   public unreadInboxCountSub: BehaviorSubject<bigint> =
26     new BehaviorSubject<bigint>(0n);
27   public unreadReportCountSub: BehaviorSubject<bigint> =
28     new BehaviorSubject<bigint>(0n);
29   public unreadApplicationCountSub: BehaviorSubject<bigint> =
30     new BehaviorSubject<bigint>(0n);
31
32   private constructor() {
33     this.setJwtInfo();
34   }
35
36   public login(res: LoginResponse) {
37     let expires = new Date();
38     expires.setDate(expires.getDate() + 365);
39     if (res.jwt) {
40       toast(i18n.t("logged_in"));
41       IsomorphicCookie.save("jwt", res.jwt, { expires, secure: isHttps() });
42       this.setJwtInfo();
43     }
44   }
45
46   public logout() {
47     this.jwtInfo = undefined;
48     this.myUserInfo = undefined;
49     IsomorphicCookie.remove("jwt"); // TODO is sometimes unreliable for some reason
50     document.cookie = "jwt=; Max-Age=0; path=/; domain=" + location.hostname;
51     if (isAuthPath(location.pathname)) {
52       location.replace("/");
53     } else {
54       location.reload();
55     }
56   }
57
58   public auth(throwErr = true): string | undefined {
59     let jwt = this.jwtInfo?.jwt;
60     if (jwt) {
61       return jwt;
62     } else {
63       let msg = "No JWT cookie found";
64       if (throwErr && isBrowser()) {
65         console.error(msg);
66         toast(i18n.t("not_logged_in"), "danger");
67       }
68       return undefined;
69       // throw msg;
70     }
71   }
72
73   private setJwtInfo() {
74     let jwt: string | undefined = IsomorphicCookie.load("jwt");
75
76     if (jwt) {
77       this.jwtInfo = { jwt, claims: jwt_decode(jwt) };
78     }
79   }
80
81   public static get Instance() {
82     return this._instance || (this._instance = new this());
83   }
84 }