Added sticker, reimplemented reload, removed user count from stats

This commit is contained in:
Essem 2021-08-23 00:37:09 -05:00
parent 7009ff339f
commit f0e19d6ad3
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
7 changed files with 50 additions and 74 deletions

View file

@ -1,27 +1,12 @@
import { paths, commands, info, aliases as _aliases } from "./collections.js";
import { log } from "./logger.js";
//import { Worker, isMainThread, workerData, parentPort } from "worker_threads";
//import { join, dirname } from "path";
//import { fileURLToPath } from "url";
/*const importNoCache = (module) => {
return new Promise((resolve, reject) => {
const worker = new Worker(new URL("./handler.js", import.meta.url), {
workerData: { module: module }
});
worker.once("message", (result) => {
resolve(result);
});
worker.once("error", (result) => {
reject(result);
});
});
};*/
let queryValue = 0;
// load command into memory
export async function load(command, soundStatus) {
//const props = await importNoCache(`../${command}`);
const { default: props } = await import(`../${command}`);
const { default: props } = await import(`../${command}?v=${queryValue}`);
queryValue++;
if (props.requires.includes("mashape") && process.env.MASHAPE === "") return log("warn", `Mashape/RapidAPI info not provided in config, skipped loading command ${command}...`);
if (props.requires.includes("sound") && soundStatus) return log("warn", `Failed to connect to some Lavalink nodes, skipped loading command ${command}...`);
const commandArray = command.split("/");
@ -45,36 +30,4 @@ export async function load(command, soundStatus) {
}
}
return false;
}
// unload command from memory
/*export async function unload(command) {
let cmd;
if (commands.has(command)) {
cmd = commands.get(command);
} else if (_aliases.has(command)) {
cmd = commands.get(_aliases.get(command));
}
if (!cmd) return `The command \`${command}\` doesn't seem to exist, nor is it an alias.`;
const path = paths.get(command);
const mod = require.cache[require.resolve(`../${path}`)];
delete require.cache[require.resolve(`../${path}`)];
for (let i = 0; i < module.children.length; i++) {
if (module.children[i] === mod) {
module.children.splice(i, 1);
break;
}
}
return false;
}*/
/*if (!isMainThread) {
const getModule = async () => {
console.log("test");
const module = await import(workerData.module);
console.log("test 2");
parentPort.postMessage(module);
process.exit();
};
getModule();
}*/
}