2022-09-01 01:00:34 +00:00
|
|
|
import { paths, commands, messageCommands, 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-10-11 15:46:10 +00:00
|
|
|
export async function load(client, command, 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++;
|
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("/");
|
2022-09-01 01:00:34 +00:00
|
|
|
let commandName = commandArray[commandArray.length - 1].split(".")[0];
|
|
|
|
const category = commandArray[commandArray.length - 2];
|
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-09-01 01:00:34 +00:00
|
|
|
if (category === "message") {
|
|
|
|
const nameStringArray = commandName.split("-");
|
|
|
|
for (const index of nameStringArray.keys()) {
|
|
|
|
nameStringArray[index] = nameStringArray[index].charAt(0).toUpperCase() + nameStringArray[index].slice(1);
|
|
|
|
}
|
|
|
|
commandName = nameStringArray.join(" ");
|
|
|
|
}
|
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
props.init();
|
2021-08-19 14:19:14 +00:00
|
|
|
paths.set(commandName, command);
|
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-09-01 01:00:34 +00:00
|
|
|
const commandInfo = {
|
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,
|
2022-09-01 01:00:34 +00:00
|
|
|
directAllowed: props.directAllowed,
|
2022-09-01 15:40:55 +00:00
|
|
|
adminOnly: props.adminOnly,
|
2022-09-01 01:00:34 +00:00
|
|
|
type: 1
|
|
|
|
};
|
2022-03-31 19:53:22 +00:00
|
|
|
|
2022-09-01 01:00:34 +00:00
|
|
|
if (category === "message") {
|
|
|
|
messageCommands.set(commandName, props);
|
|
|
|
commandInfo.type = 3;
|
|
|
|
} else {
|
|
|
|
commands.set(commandName, props);
|
2022-09-11 04:06:40 +00:00
|
|
|
}
|
2022-04-05 03:05:28 +00:00
|
|
|
|
2022-09-11 04:06:40 +00:00
|
|
|
if (slashReload && props.slashAllowed) {
|
|
|
|
await send(client);
|
2022-03-31 19:53:22 +00:00
|
|
|
}
|
2022-09-01 01:00:34 +00:00
|
|
|
|
|
|
|
if (Object.getPrototypeOf(props).name === "SoundboardCommand") sounds.set(commandName, props.file);
|
|
|
|
|
|
|
|
info.set(commandName, commandInfo);
|
|
|
|
|
|
|
|
const categoryCommands = categories.get(category);
|
|
|
|
categories.set(category, categoryCommands ? [...categoryCommands, commandName] : [commandName]);
|
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
|
|
|
|
2022-09-11 04:18:44 +00:00
|
|
|
export function update() {
|
2022-04-05 03:05:28 +00:00
|
|
|
const commandArray = [];
|
2022-09-01 15:40:55 +00:00
|
|
|
const privateCommandArray = [];
|
2022-09-01 01:00:34 +00:00
|
|
|
const merged = new Map([...commands, ...messageCommands]);
|
|
|
|
for (const [name, command] of merged.entries()) {
|
2022-04-05 03:05:28 +00:00
|
|
|
let cmdInfo = info.get(name);
|
|
|
|
if (command.postInit) {
|
|
|
|
const cmd = command.postInit();
|
|
|
|
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,
|
2022-09-01 01:00:34 +00:00
|
|
|
directAllowed: cmd.directAllowed,
|
2022-09-01 15:40:55 +00:00
|
|
|
adminOnly: cmd.adminOnly,
|
2022-09-01 01:00:34 +00:00
|
|
|
type: cmdInfo.type
|
2022-04-05 03:05:28 +00:00
|
|
|
};
|
|
|
|
info.set(name, cmdInfo);
|
|
|
|
}
|
2022-09-01 01:00:34 +00:00
|
|
|
if (cmdInfo?.type === 3) {
|
2022-09-01 15:40:55 +00:00
|
|
|
(cmdInfo.adminOnly ? privateCommandArray : commandArray).push({
|
2022-09-01 01:00:34 +00:00
|
|
|
name: name,
|
|
|
|
type: cmdInfo.type,
|
|
|
|
dm_permission: cmdInfo.directAllowed
|
|
|
|
});
|
|
|
|
} else if (cmdInfo?.slashAllowed) {
|
2022-09-01 15:40:55 +00:00
|
|
|
(cmdInfo.adminOnly ? privateCommandArray : commandArray).push({
|
2022-09-01 01:00:34 +00:00
|
|
|
name,
|
|
|
|
type: cmdInfo.type,
|
|
|
|
description: cmdInfo.description,
|
|
|
|
options: cmdInfo.flags,
|
|
|
|
dm_permission: cmdInfo.directAllowed
|
|
|
|
});
|
|
|
|
}
|
2022-04-05 03:05:28 +00:00
|
|
|
}
|
2022-09-01 15:40:55 +00:00
|
|
|
return {
|
|
|
|
main: commandArray,
|
|
|
|
private: privateCommandArray
|
|
|
|
};
|
2022-09-11 04:06:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function send(bot) {
|
2022-09-11 04:18:44 +00:00
|
|
|
const commandArray = update();
|
2022-09-11 04:06:40 +00:00
|
|
|
log("info", "Sending application command data to Discord...");
|
|
|
|
let cmdArray = commandArray.main;
|
|
|
|
if (process.env.ADMIN_SERVER && process.env.ADMIN_SERVER !== "") {
|
2022-09-24 03:25:16 +00:00
|
|
|
await bot.application.bulkEditGuildCommands(process.env.ADMIN_SERVER, commandArray.private);
|
2022-09-11 04:06:40 +00:00
|
|
|
} else {
|
|
|
|
cmdArray = [...commandArray.main, ...commandArray.private];
|
|
|
|
}
|
2022-09-24 03:25:16 +00:00
|
|
|
await bot.application.bulkEditGlobalCommands(cmdArray);
|
2022-04-05 03:05:28 +00:00
|
|
|
}
|