89 lines
2.6 KiB
JavaScript
89 lines
2.6 KiB
JavaScript
const { Client, Events, GatewayIntentBits, Collection } = require("discord.js");
|
|
const fs = require("fs");
|
|
const log = require("./log");
|
|
let cfg = {};
|
|
try {
|
|
cfg = require("./config.json");
|
|
} catch (e) {
|
|
console.warn(
|
|
"config.json not found or invalid. Falling back to environment variables."
|
|
);
|
|
}
|
|
const token = process.env.TOKEN || cfg.TOKEN;
|
|
const prefix = process.env.PREFIX || cfg.PREFIX;
|
|
const client = new Client({
|
|
intents: [
|
|
GatewayIntentBits.Guilds,
|
|
GatewayIntentBits.GuildMessages,
|
|
GatewayIntentBits.MessageContent,
|
|
],
|
|
});
|
|
client.commands = new Collection();
|
|
client.ownerID = 263247134147608578;
|
|
client.prefix = prefix;
|
|
|
|
fs.readdir("./commands/", (err, files) => {
|
|
if (err) return console.error(err);
|
|
files.forEach((file) => {
|
|
if (!file.endsWith(".js")) return;
|
|
let props = require(`./commands/${file}`);
|
|
let commandName = file.split(".")[0];
|
|
log.info("Loaded command " + commandName);
|
|
client.commands.set(commandName, props);
|
|
});
|
|
});
|
|
|
|
const url = "https://drive.overflow.fun/public/react.json";
|
|
client.usersToReactTo = [];
|
|
client.once(Events.ClientReady, async (readyClient) => {
|
|
try {
|
|
const res = await fetch(url);
|
|
const data = await res.json();
|
|
|
|
client.usersToReactTo = data.map((entry) => {
|
|
const [userId, emoji] = entry.split("|");
|
|
return { userId, emoji };
|
|
});
|
|
} catch (e) {
|
|
console.warn("copyparty is offline, wont work.");
|
|
}
|
|
log.info(`Ready! Logged in as ${readyClient.user.tag}`);
|
|
});
|
|
|
|
client.on(Events.MessageCreate, async (message) => {
|
|
if (message.author.bot) return;
|
|
|
|
client.usersToReactTo.forEach(async (item) => {
|
|
if (
|
|
message.mentions.users.find((u) => u.id == item.userId) &&
|
|
!message.reference
|
|
) {
|
|
try {
|
|
await message.react(item.emoji);
|
|
} catch (err) {
|
|
message.channel.send("FAILED TO REACT TO MESSAGE! " + err);
|
|
console.error("Failed to react to message:", err);
|
|
}
|
|
}
|
|
});
|
|
|
|
if (message.content.indexOf(prefix) !== 0) return;
|
|
|
|
const args = message.content.slice(prefix.length).trim().split(/ +/g);
|
|
const command = args.shift().toLowerCase();
|
|
|
|
const cmd = client.commands.get(command);
|
|
|
|
if (!cmd) return;
|
|
try {
|
|
await cmd.run(client, message, args);
|
|
} catch (e) {
|
|
message.channel.send(
|
|
"Command " + cmd.name + " exited with an exception: " + e
|
|
);
|
|
}
|
|
});
|
|
|
|
// Log in to Discord with your client's token
|
|
client.login(token);
|