aboutsummaryrefslogtreecommitdiff
path: root/src/VencordNative.ts
blob: 755c47133e1c1f27d14edb3ac00a8d7daed8a0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import IPC_EVENTS from './utils/IpcEvents';
import { IpcRenderer, ipcRenderer } from 'electron';

export default {
    getVersions: () => process.versions,
    ipc: {
        send(event: string, ...args: any[]) {
            if (event in IPC_EVENTS) ipcRenderer.send(event, ...args);
            else throw new Error(`Event ${event} not allowed.`);
        },
        sendSync<T = any>(event: string, ...args: any[]): T {
            if (event in IPC_EVENTS) return ipcRenderer.sendSync(event, ...args);
            else throw new Error(`Event ${event} not allowed.`);
        },
        on(event: string, listener: Parameters<IpcRenderer["on"]>[1]) {
            if (event in IPC_EVENTS) ipcRenderer.on(event, listener);
            else throw new Error(`Event ${event} not allowed.`);
        },
        invoke<T = any>(event: string, ...args: any[]): Promise<T> {
            if (event in IPC_EVENTS) return ipcRenderer.invoke(event, ...args);
            else throw new Error(`Event ${event} not allowed.`);
        }
    },
    require(mod: string) {
        const settings = ipcRenderer.sendSync(IPC_EVENTS.GET_SETTINGS);
        try {
            if (!JSON.parse(settings).unsafeRequire) throw "no";
        } catch {
            throw new Error("Unsafe require is not allowed. Enable it in settings and try again.");
        }
        return require(mod);
    }
};