summary refs log tree commit diff
path: root/src/util/plugin/PluginLoader.ts
blob: 4dc0129a24872445f9d41f6d10f2cd0dd4783fc2 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import path from "path";
import fs from "fs";
import { Plugin, PluginLoadedEventArgs, PluginManifest, PluginStore } from "./";
import { PluginIndex } from "plugins/PluginIndex";
import { PluginConfig } from "./PluginConfig";
import { OrmUtils, PluginConfigEntity } from "..";

const root = process.env.PLUGIN_LOCATION || "dist/plugins";

let pluginsLoaded = false;
export class PluginLoader {
	public static async loadPlugins() {
		if(pluginsLoaded) return;
		PluginConfig.init();
		console.log(`Plugin root directory: ${path.resolve(root)}`);
		const dirs = fs.readdirSync(root).filter((x) => {
			try {
				fs.readdirSync(path.join(root, x));
				return true;
			} catch (e) {
				return false;
			}
		});
		//console.log(dirs);
		PluginIndex.forEach((x: any) => {
			//console.log(x.onPluginLoaded)
		});
		dirs.forEach(async (x) => {
			let modPath = path.resolve(path.join(root, x));
			//console.log(`Trying to load plugin: ${modPath}`);
			const manifest = require(path.join(modPath, "plugin.json")) as PluginManifest;
			console.log(
				`Plugin info: ${manifest.name} (${manifest.id}), written by ${manifest.authors}, available at ${manifest.repository}`
			);
			const module_ = PluginIndex[manifest.id];
			
			module_.pluginPath = modPath;
			module_.pluginManifest = manifest;
			Object.freeze(module_.pluginPath);
			Object.freeze(module_.pluginManifest);
			
			if(module_.onPluginLoaded) await module_.onPluginLoaded({} as PluginLoadedEventArgs);
			PluginStore.plugins.push(module_);
		});

		console.log(`Done loading ${PluginStore.plugins.length} plugins!`);
	}
	
	public static getPluginConfig(id: string, defaults?: any): any {
		let cfg = PluginConfig.get()[id];
		if(defaults) {
			if(cfg)
				cfg = OrmUtils.mergeDeep(defaults, cfg);
			else
				cfg = defaults;
			this.setPluginConfig(id, cfg);
		}
		if(!cfg) console.log(`[PluginConfig/WARN] Getting plugin settings for '${id}' returned null! (Did you forget to add settings?)`);
		return cfg;
	}
	public static async setPluginConfig(id: string, config: Partial<any>): Promise<void> {
		if(!config) console.log(`[PluginConfig/WARN] ${id} tried to set config=null!`);
		await PluginConfig.set({ [id]: OrmUtils.mergeDeep(PluginLoader.getPluginConfig(id) || {}, config) });
	}
}