2022-04-05 03:05:28 +00:00
|
|
|
import { paths, commands, info, sounds, categories, aliases as _aliases } from "./collections.js";
|
2021-08-19 14:19:14 +00:00
|
|
|
import { log } from "./logger.js";
|
|
|
|
|
2022-08-22 18:03:27 +00:00
|
|
|
import { readFileSync } from "fs";
|
|
|
|
|
|
|
|
const { blacklist } = JSON.parse(readFileSync(new URL("../config/commands.json", import.meta.url)));
|
|
|
|
|
2021-08-23 05:37:09 +00:00
|
|
|
let queryValue = 0;
|
2019-09-13 20:02:41 +00:00
|
|
|
|
2019-11-30 02:00:14 +00:00
|
|
|
// load command into memory
|
2022-03-31 19:53:22 +00:00
|
|
|
export async function load(client, cluster, worker, ipc, command, soundStatus, slashReload = false) {
|
2022-03-12 02:28:35 +00:00
|
|
|
const { default: props } = await import(`${command}?v=${queryValue}`);
|
2021-08-23 05:37:09 +00:00
|
|
|
queryValue++;
|
2022-03-31 05:42:03 +00:00
|
|
|
if (props.requires.includes("sound") && soundStatus) {
|
|
|
|
log("warn", `Failed to connect to some Lavalink nodes, skipped loading command ${command}...`);
|
|
|
|
return;
|
|
|
|
}
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
const commandArray = command.split("/");
|
|
|
|
const commandName = commandArray[commandArray.length - 1].split(".")[0];
|
2022-04-05 03:05:28 +00:00
|
|
|
|
2022-08-22 18:03:27 +00:00
|
|
|
if (blacklist.includes(commandName)) {
|
|
|
|
log("warn", `Skipped loading blacklisted command ${command}...`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
props.init();
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
paths.set(commandName, command);
|
|
|
|
commands.set(commandName, props);
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
if (Object.getPrototypeOf(props).name === "SoundboardCommand") sounds.set(commandName, props.file);
|
2022-03-31 05:42:03 +00:00
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
const category = commandArray[commandArray.length - 2];
|
2021-08-19 14:19:14 +00:00
|
|
|
info.set(commandName, {
|
2022-04-05 03:05:28 +00:00
|
|
|
category: category,
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
description: props.description,
|
2019-12-05 16:58:46 +00:00
|
|
|
aliases: props.aliases,
|
2021-07-23 16:13:43 +00:00
|
|
|
params: props.arguments,
|
2022-04-05 03:05:28 +00:00
|
|
|
flags: props.flags,
|
2022-06-28 21:15:31 +00:00
|
|
|
slashAllowed: props.slashAllowed,
|
|
|
|
directAllowed: props.directAllowed
|
2019-12-02 20:47:22 +00:00
|
|
|
});
|
2022-03-31 19:53:22 +00:00
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
const categoryCommands = categories.get(category);
|
|
|
|
categories.set(category, categoryCommands ? [...categoryCommands, commandName] : [commandName]);
|
|
|
|
|
2022-03-31 19:53:22 +00:00
|
|
|
if (slashReload && props.slashAllowed) {
|
|
|
|
const commandList = await client.getCommands();
|
|
|
|
const oldCommand = commandList.filter((item) => {
|
|
|
|
return item.name === commandName;
|
|
|
|
})[0];
|
|
|
|
await client.editCommand(oldCommand.id, {
|
|
|
|
name: commandName,
|
|
|
|
type: 1,
|
|
|
|
description: props.description,
|
2022-04-05 03:05:28 +00:00
|
|
|
options: props.flags
|
2022-03-31 19:53:22 +00:00
|
|
|
});
|
|
|
|
}
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
|
2019-09-13 20:02:41 +00:00
|
|
|
if (props.aliases) {
|
2020-03-10 22:24:57 +00:00
|
|
|
for (const alias of props.aliases) {
|
2021-08-19 14:19:14 +00:00
|
|
|
_aliases.set(alias, commandName);
|
|
|
|
paths.set(alias, command);
|
2020-03-10 22:24:57 +00:00
|
|
|
}
|
2019-09-13 20:02:41 +00:00
|
|
|
}
|
2022-03-31 05:42:03 +00:00
|
|
|
return commandName;
|
2022-02-07 04:17:39 +00:00
|
|
|
}
|
2022-04-05 03:05:28 +00:00
|
|
|
|
|
|
|
export async function update() {
|
|
|
|
const commandArray = [];
|
|
|
|
for (const [name, command] of commands.entries()) {
|
|
|
|
let cmdInfo = info.get(name);
|
|
|
|
if (command.postInit) {
|
|
|
|
const cmd = command.postInit();
|
|
|
|
//commands.set(name, cmd);
|
|
|
|
cmdInfo = {
|
|
|
|
category: cmdInfo.category,
|
|
|
|
description: cmd.description,
|
|
|
|
aliases: cmd.aliases,
|
|
|
|
params: cmd.arguments,
|
|
|
|
flags: cmd.flags,
|
2022-06-28 21:15:31 +00:00
|
|
|
slashAllowed: cmd.slashAllowed,
|
|
|
|
directAllowed: cmd.directAllowed
|
2022-04-05 03:05:28 +00:00
|
|
|
};
|
|
|
|
info.set(name, cmdInfo);
|
|
|
|
}
|
2022-07-23 21:02:04 +00:00
|
|
|
if (cmdInfo?.slashAllowed) commandArray.push({
|
2022-04-05 03:05:28 +00:00
|
|
|
name,
|
|
|
|
type: 1,
|
|
|
|
description: cmdInfo.description,
|
2022-06-28 21:15:31 +00:00
|
|
|
options: cmdInfo.flags,
|
|
|
|
dm_permission: cmdInfo.directAllowed
|
2022-04-05 03:05:28 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return commandArray;
|
|
|
|
}
|