]> Untitled Git - lemmy-ui.git/blob - src/shared/services/UserService.ts
Add support for PWA (#1005)
[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 { 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     location.reload();
52   }
53
54   public auth(throwErr = true): string | undefined {
55     let jwt = this.jwtInfo?.jwt;
56     if (jwt) {
57       return jwt;
58     } else {
59       let msg = "No JWT cookie found";
60       if (throwErr && isBrowser()) {
61         console.error(msg);
62         toast(i18n.t("not_logged_in"), "danger");
63       }
64       return undefined;
65       // throw msg;
66     }
67   }
68
69   private setJwtInfo() {
70     let jwt: string | undefined = IsomorphicCookie.load("jwt");
71
72     if (jwt) {
73       this.jwtInfo = { jwt, claims: jwt_decode(jwt) };
74     }
75   }
76
77   public static get Instance() {
78     return this._instance || (this._instance = new this());
79   }
80 }