Compare commits

..

No commits in common. "2c5dbdf0387722fc4e47f76d2e6b0627f202f299" and "a4eab091c78cab9c91e93c728aed25c4c5a39c7d" have entirely different histories.

8 changed files with 42 additions and 41 deletions

View file

@ -3,7 +3,7 @@ import { MessageEmbed, MessageActionRow, MessageSelectMenu } from 'discord.js';
import { exec } from 'node:child_process'; import { exec } from 'node:child_process';
import fs from 'node:fs'; import fs from 'node:fs';
import os from 'node:os'; import os from 'node:os';
import utils from '../../utils/videos.js'; import utils from '../utils/videos.js';
export default { export default {
data: new SlashCommandBuilder() data: new SlashCommandBuilder()

View file

@ -5,6 +5,6 @@ export default {
.setName('ping') .setName('ping')
.setDescription('Replies with Pong!'), .setDescription('Replies with Pong!'),
async execute(interaction) { async execute(interaction) {
await interaction.reply(`Pong! \`${Math.round(interaction.client.ws.ping)} ms\``); await interaction.reply('Pong!');
}, },
}; };

View file

@ -1,5 +1,5 @@
import { SlashCommandBuilder } from '@discordjs/builders'; import { SlashCommandBuilder } from '@discordjs/builders';
import utils from '../../utils/videos.js'; import utils from '../utils/videos.js';
import fs from 'node:fs'; import fs from 'node:fs';
import os from 'node:os'; import os from 'node:os';
import path from 'node:path'; import path from 'node:path';
@ -55,7 +55,7 @@ export default {
async function gifski(output, input) { async function gifski(output, input) {
return await new Promise((resolve, reject) => { return await new Promise((resolve, reject) => {
exec(`gifski --quality 70 -o ${output} ${input}`, (err, stdout, stderr) => { exec(`gifski -o ${output} ${input}`, (err, stdout, stderr) => {
if (err) { if (err) {
reject(stderr); reject(stderr);
} }

View file

@ -1,6 +0,0 @@
export default {
name: 'uncaughtException',
async execute(error) {
return console.error(`\x1b[31mUncaughtException: ${error}\x1b[37m`);
},
};

View file

@ -1,6 +1,7 @@
export default { export default {
name: 'unhandledRejection', name: 'unhandledRejection',
once: true,
async execute(error) { async execute(error) {
return console.error(`\x1b[31mUncaught Promise Rejection: ${error}\x1b[37m`); console.error('Unhandled promise rejection:', error);
}, },
}; };

View file

@ -11,19 +11,9 @@ const __dirname = path.dirname(__filename);
const client = new Client({ intents: [Intents.FLAGS.GUILDS] }); const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
// Load commands // Load commands from the commands folder
client.commands = new Collection(); client.commands = new Collection();
await loadCommandFromDir('fun'); const commandsPath = path.join(__dirname, 'commands');
await loadCommandFromDir('utility');
// Load events
loadEventFromDir('client', client);
loadEventFromDir('process', process);
client.login(token);
async function loadCommandFromDir(dir) {
const commandsPath = path.join(`${__dirname}/commands`, dir);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js')); const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
for (const file of commandFiles) { for (const file of commandFiles) {
@ -33,21 +23,37 @@ async function loadCommandFromDir(dir) {
client.commands.set(command.data.name, command); client.commands.set(command.data.name, command);
} }
}
async function loadEventFromDir(dir, listener) { // Load client events from the events folder
const eventsPath = path.join(`${__dirname}/events`, dir); const clientEventsPath = path.join(__dirname, 'events/client');
const eventFiles = fs.readdirSync(eventsPath).filter(file => file.endsWith('.js')); const clientEventFiles = fs.readdirSync(clientEventsPath).filter(file => file.endsWith('.js'));
for (const file of eventFiles) { for (const file of clientEventFiles) {
const filePath = path.join(eventsPath, file); const filePath = path.join(clientEventsPath, file);
let event = await import(filePath); let event = await import(filePath);
event = event.default; event = event.default;
if (event.once) { if (event.once) {
listener.once(event.name, (...args) => event.execute(...args)); client.once(event.name, (...args) => event.execute(...args));
} }
else { else {
listener.on(event.name, (...args) => event.execute(...args)); client.on(event.name, (...args) => event.execute(...args));
} }
} }
// Load process events from the events folder
const processEventsPath = path.join(__dirname, 'events/process');
const processEventFiles = fs.readdirSync(processEventsPath).filter(file => file.endsWith('.js'));
for (const file of processEventFiles) {
const filePath = path.join(processEventsPath, file);
let event = await import(filePath);
event = event.default;
if (event.once) {
process.once(event.name, (...args) => event.execute(...args));
} }
else {
process.on(event.name, (...args) => event.execute(...args));
}
}
client.login(token);