123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- import ListenerHandler from "@/classes/ListenerHandler.class";
- import { useUserAuthStore } from "@/stores/userAuth";
- import utils from "@/utils";
- export default class SocketHandler {
- socket: WebSocket;
- url: string;
- dispatcher: ListenerHandler;
- onConnectCbs: {
- temp: any[];
- persist: any[];
- };
- ready: boolean;
- firstInit: boolean;
- pendingDispatches: any[];
- onDisconnectCbs: {
- temp: any[];
- persist: any[];
- };
- CB_REFS: object;
- PROGRESS_CB_REFS: object;
- data: {
- dispatch?: {
- [key: string]: (...args: any[]) => any;
- };
- progress?: {
- [key: string]: (...args: any[]) => any;
- };
- on?: {
- [key: string]: any;
- };
- }; // Mock only
- executeDispatch: boolean; // Mock only
- trigger: (type: string, target: string, data?: any) => void; // Mock only
- constructor(url: string) {
- this.dispatcher = new ListenerHandler();
- this.url = url;
- this.onConnectCbs = {
- temp: [],
- persist: []
- };
- this.ready = false;
- this.firstInit = true;
- this.pendingDispatches = [];
- this.onDisconnectCbs = {
- temp: [],
- persist: []
- };
- // references for when a dispatch event is ready to callback from server to client
- this.CB_REFS = {};
- this.PROGRESS_CB_REFS = {};
- this.init();
- }
- init() {
- this.socket = new WebSocket(this.url);
- const userAuthStore = useUserAuthStore();
- this.socket.onopen = () => {
- console.log("WS: SOCKET OPENED");
- };
- this.socket.onmessage = message => {
- const data = JSON.parse(message.data);
- const name = data.shift(0);
- if (name === "CB_REF") {
- const CB_REF = data.shift(0);
- this.CB_REFS[CB_REF](...data);
- return delete this.CB_REFS[CB_REF];
- }
- if (name === "PROGRESS_CB_REF") {
- const PROGRESS_CB_REF = data.shift(0);
- this.PROGRESS_CB_REFS[PROGRESS_CB_REF](...data);
- }
- if (name === "ERROR") console.log("WS: SOCKET ERROR:", data[0]);
- return this.dispatcher.dispatchEvent(
- new CustomEvent(name, {
- detail: data
- })
- );
- };
- this.socket.onclose = () => {
- console.log("WS: SOCKET CLOSED");
- this.ready = false;
- this.firstInit = false;
- this.onDisconnectCbs.temp.forEach(cb => cb());
- this.onDisconnectCbs.persist.forEach(cb => cb());
- // try to reconnect every 1000ms, if the user isn't banned
- if (!userAuthStore.banned) setTimeout(() => this.init(), 1000);
- };
- this.socket.onerror = err => {
- console.log("WS: SOCKET ERROR", err);
- };
- if (this.firstInit) {
- this.firstInit = false;
- this.on("ready", () => {
- console.log("WS: SOCKET READY");
- this.onConnectCbs.temp.forEach(cb => cb());
- this.onConnectCbs.persist.forEach(cb => cb());
- this.ready = true;
- setTimeout(() => {
- // dispatches that were attempted while the server was offline
- this.pendingDispatches.forEach(cb => cb());
- this.pendingDispatches = [];
- }, 150); // small delay between readyState being 1 and the server actually receiving dispatches
- userAuthStore.updatePermissions();
- });
- }
- }
- on(target, cb, options?) {
- this.dispatcher.addEventListener(
- target,
- event => cb(...event.detail),
- options
- );
- }
- dispatch(...args) {
- if (this.socket.readyState !== 1)
- return this.pendingDispatches.push(() => this.dispatch(...args));
- const lastArg = args[args.length - 1];
- const CB_REF = utils.guid();
- if (typeof lastArg === "function") {
- this.CB_REFS[CB_REF] = lastArg;
- return this.socket.send(
- JSON.stringify([...args.slice(0, -1), { CB_REF }])
- );
- }
- if (typeof lastArg === "object") {
- this.CB_REFS[CB_REF] = lastArg.cb;
- this.PROGRESS_CB_REFS[CB_REF] = lastArg.onProgress;
- return this.socket.send(
- JSON.stringify([
- ...args.slice(0, -1),
- { CB_REF, onProgress: true }
- ])
- );
- }
- return this.socket.send(JSON.stringify([...args]));
- }
- onConnect(...args) {
- const cb = args[1] || args[0];
- if (this.socket.readyState === 1 && this.ready) cb();
- if (args[0] === true) this.onConnectCbs.persist.push(cb);
- else this.onConnectCbs.temp.push(cb);
- }
- onDisconnect(...args) {
- const cb = args[1] || args[0];
- if (args[0] === true) this.onDisconnectCbs.persist.push(cb);
- else this.onDisconnectCbs.temp.push(cb);
- }
- clearCallbacks() {
- this.onConnectCbs.temp = [];
- this.onDisconnectCbs.temp = [];
- }
- destroyListeners() {
- Object.keys(this.CB_REFS).forEach(id => {
- if (
- id.indexOf("$event:") !== -1 &&
- id.indexOf("$event:keep.") === -1
- )
- delete this.CB_REFS[id];
- });
- Object.keys(this.PROGRESS_CB_REFS).forEach(id => {
- if (
- id.indexOf("$event:") !== -1 &&
- id.indexOf("$event:keep.") === -1
- )
- delete this.PROGRESS_CB_REFS[id];
- });
- // destroy all listeners that aren't site-wide
- Object.keys(this.dispatcher.listeners).forEach(type => {
- if (type.indexOf("keep.") === -1 && type !== "ready")
- delete this.dispatcher.listeners[type];
- });
- }
- destroyModalListeners(modalUuid) {
- // destroy all listeners for a specific modal
- Object.keys(this.dispatcher.listeners).forEach(type =>
- this.dispatcher.listeners[type].forEach((element, index) => {
- if (element.options && element.options.modalUuid === modalUuid)
- this.dispatcher.listeners[type].splice(index, 1);
- })
- );
- }
- }
|