revite/src/mobx/stores/Auth.ts

72 lines
1.7 KiB
TypeScript
Raw Normal View History

import { makeAutoObservable, ObservableMap } from "mobx";
import { Session } from "revolt-api/types/Auth";
import { Nullable } from "revolt.js/dist/util/null";
2021-12-11 14:36:26 +00:00
import Persistent from "../interfaces/Persistent";
2021-12-11 16:24:23 +00:00
import Store from "../interfaces/Store";
interface Data {
sessions: Record<string, Session>;
current?: string;
}
/**
* Handles account authentication, managing multiple
* accounts and their sessions.
*/
2021-12-11 16:24:23 +00:00
export default class Auth implements Store, Persistent<Data> {
private sessions: ObservableMap<string, Session>;
private current: Nullable<string>;
/**
* Construct new Auth store.
*/
constructor() {
this.sessions = new ObservableMap();
this.current = null;
makeAutoObservable(this);
}
2021-12-11 16:24:23 +00:00
get id() {
return "auth";
}
toJSON() {
return {
2021-12-11 16:24:23 +00:00
sessions: [...this.sessions],
current: this.current ?? undefined,
};
}
hydrate(data: Data) {
Object.keys(data.sessions).forEach((id) =>
this.sessions.set(id, data.sessions[id]),
);
if (data.current && this.sessions.has(data.current)) {
this.current = data.current;
}
}
/**
* Add a new session to the auth manager.
* @param session Session
*/
setSession(session: Session) {
this.sessions.set(session.user_id, session);
this.current = session.user_id;
}
/**
* Remove existing session by user ID.
* @param user_id User ID tied to session
*/
removeSession(user_id: string) {
2021-12-11 11:59:26 +00:00
this.sessions.delete(user_id);
if (user_id == this.current) {
this.current = null;
}
}
}