104 lines
3.1 KiB
JavaScript
104 lines
3.1 KiB
JavaScript
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const { Client, Events, GatewayIntentBits, Collection } = require('discord.js');
|
|
const { token, mysql_username, mysql_password } = require('./config.json');
|
|
const sqlutil = require('./utilities/sqlutil');
|
|
|
|
sqlutil.buildPool('breadbot_test')
|
|
|
|
const getAllFiles = function(directoryPath, arrayOfFiles) {
|
|
const files = fs.readdirSync(directoryPath);
|
|
|
|
arrayOfFiles = arrayOfFiles || [];
|
|
|
|
files.forEach(file => {
|
|
if (fs.statSync(directoryPath + path.sep + file).isDirectory()) {
|
|
arrayOfFiles = getAllFiles(directoryPath + path.sep + file, arrayOfFiles);
|
|
}
|
|
else {
|
|
arrayOfFiles.push(path.join(__dirname, directoryPath, path.sep, file));
|
|
}
|
|
});
|
|
|
|
return arrayOfFiles;
|
|
};
|
|
|
|
const allFiles = [];
|
|
getAllFiles('.' + path.sep + 'commands', allFiles);
|
|
|
|
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers, GatewayIntentBits.MessageContent] });
|
|
|
|
client.commands = new Collection();
|
|
|
|
const commandFiles = allFiles.filter(file => file.endsWith('.js'));
|
|
|
|
for (const file of commandFiles) {
|
|
const command = require(file);
|
|
|
|
if ('data' in command && 'execute' in command) {
|
|
client.commands.set(command.data.name, command);
|
|
console.log(`[INFO] Loaded command at ${file}`);
|
|
}
|
|
else {
|
|
console.log(`[WARNING] The command at ${file} is missing a required "data" or "execute" property.`);
|
|
}
|
|
}
|
|
|
|
client.on(Events.InteractionCreate, async interaction => {
|
|
if (!interaction.isChatInputCommand()) return;
|
|
|
|
const command = interaction.client.commands.get(interaction.commandName);
|
|
|
|
if (!command) {
|
|
console.error(`No command matching ${interaction.commandName} was found.`);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await command.execute(interaction);
|
|
}
|
|
catch (error) {
|
|
console.error(error);
|
|
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
|
|
}
|
|
});
|
|
|
|
client.on(Events.GuildCreate, async guild => {
|
|
if (guild.available) {
|
|
console.log('Got into a server')
|
|
console.log(`The server name is ${guild.name}`)
|
|
console.log(`The server description is ${guild.description}`)
|
|
console.log(`The server snowflake is ${guild.id}`)
|
|
|
|
sqlutil.registerServerIfMissing(guild.id, guild.name, guild.description).then(server_added => {
|
|
if(server_added) {
|
|
console.log(`Server Added ${guild.name}`)
|
|
} else {
|
|
console.log(`Server failed to add ${guild.name}`)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
client.on(Events.MessageCreate, async message => {
|
|
console.log("Message Create Fired")
|
|
|
|
var channel_ok = await sqlutil.registerChannelIfMissing(message.channelId, message.channel.guild.id, message.channel.name)
|
|
var user_ok = await sqlutil.registerUserIfMissing(message.author.id, message.author.username, message.author.displayName)
|
|
|
|
if (channel_ok && user_ok) {
|
|
sqlutil.registerMessage(message.id, message.channelId, message.author.id, message.content, message.createdAt).then(message_add => {
|
|
if(message_add) {
|
|
console.log("Message Added")
|
|
} else {
|
|
console.log("Failed to log message")
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
client.once(Events.ClientReady, c => {
|
|
console.log(`Ready! Logged in as ${c.user.tag}`);
|
|
});
|
|
|
|
client.login(token); |