Add guildInfos Collection

This commit is contained in:
Skylar Grant 2023-02-05 20:59:43 -05:00
parent c00d997c2b
commit c99319ec75
1 changed files with 24 additions and 0 deletions

View File

@ -30,15 +30,39 @@ const functions = {
collections: {
// Create the collection of slash commands
slashCommands(client) {
// Create the Collection if it doesn't already exist
if (!client.slashCommands) client.slashCommands = new Discord.Collection();
// Empty the Collection to make sure there's no duplication of data
client.slashCommands.clear();
// Iterate over every *.js file in ./slash-commands
for (const file of slashCommandFiles) {
// Require the file so we can reference it and save it to the Collection
const slashCommand = require(`../slash-commands/${file}`);
// Make sure that the file has a data export, otherwise it's not valid
if (slashCommand.data != undefined) {
// Set a new key, value pair in the Collection
// The Key is the command name, the Value is the command itself
client.slashCommands.set(slashCommand.data.name, slashCommand);
}
}
if (isDev) console.log('Slash Commands Collection Built');
},
async guildInfos(client) {
// Build a Collection of all guilds and their guildInfo from the database
try {
// Create the collection if it doesn't already exist
if (!client.guildInfos) client.guildInfos = new Discord.Collection();
// Empty the collection to prevent duplication of data if the Collection already existed
client.guildInfos.clear();
const getAllGuildInfosResponse = await dbfn.getAllGuildInfos();
const guildInfos = getAllGuildInfosResponse.data;
for (const guildInfo of guildInfos) {
client.guildInfos.set(guildInfo.guildId, guildInfo);
}
if (isDev) console.log("guildInfos Collection Built");
} catch(err) {
throw "There was a problem getting all guilds information: " + err;
}
}
},
builders: {