2023-10-07 22:46:02 -07:00
|
|
|
/**
|
|
|
|
* bot.ts
|
|
|
|
* Scans the chat for reactions and updates the leaderboard database.
|
|
|
|
*/
|
|
|
|
|
2023-10-08 18:59:04 -07:00
|
|
|
import {
|
|
|
|
Client,
|
|
|
|
Events,
|
|
|
|
GatewayIntentBits,
|
|
|
|
MessageReaction,
|
|
|
|
PartialMessageReaction,
|
|
|
|
Partials,
|
|
|
|
TextChannel,
|
|
|
|
User
|
|
|
|
} from 'discord.js';
|
2023-10-08 19:20:00 -07:00
|
|
|
import { logError, logInfo } from '../logging';
|
2023-10-08 19:10:47 -07:00
|
|
|
import {
|
|
|
|
db,
|
|
|
|
openDb,
|
|
|
|
reactionEmojis,
|
|
|
|
recordReaction,
|
|
|
|
sync
|
|
|
|
} from './util';
|
|
|
|
|
2023-10-07 22:46:02 -07:00
|
|
|
|
|
|
|
const client = new Client({
|
|
|
|
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMessageReactions],
|
|
|
|
partials: [Partials.Message, Partials.Channel, Partials.Reaction],
|
|
|
|
});
|
|
|
|
|
|
|
|
client.once(Events.ClientReady, async () => {
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo('[bot] Ready.');
|
2023-10-07 22:46:02 -07:00
|
|
|
for (let i = 0; i < reactionEmojis.length; ++i)
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo(`[bot] config: reaction_${i + 1} = ${reactionEmojis[i]}`);
|
2023-10-07 22:46:02 -07:00
|
|
|
});
|
|
|
|
|
2023-10-08 19:10:47 -07:00
|
|
|
|
2023-10-07 22:46:02 -07:00
|
|
|
async function onMessageReactionChanged(reaction: MessageReaction | PartialMessageReaction, user: User)
|
|
|
|
{
|
|
|
|
// When a reaction is received, check if the structure is partial
|
|
|
|
if (reaction.partial) {
|
|
|
|
// If the message this reaction belongs to was removed, the fetching might result in an API error which should be handled
|
|
|
|
try {
|
|
|
|
await reaction.fetch();
|
|
|
|
} catch (error) {
|
2023-10-08 19:10:47 -07:00
|
|
|
logError('[bot] Something went wrong when fetching the reaction:', error);
|
2023-10-07 22:46:02 -07:00
|
|
|
// Return as `reaction.message.author` may be undefined/null
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (reaction.message.partial) {
|
|
|
|
// If the message this reaction belongs to was removed, the fetching might result in an API error which should be handled
|
|
|
|
try {
|
|
|
|
await reaction.message.fetch();
|
|
|
|
} catch (error) {
|
2023-10-08 19:10:47 -07:00
|
|
|
logError('[bot] Something went wrong when fetching the message:', error);
|
2023-10-07 22:46:02 -07:00
|
|
|
// Return as `reaction.message.author` may be undefined/null
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now the message has been cached and is fully available
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo(`[bot] ${reaction.message.author.id}'s message reaction count changed: ${reaction.emoji.name}x${reaction.count}`);
|
2023-10-07 22:46:02 -07:00
|
|
|
await recordReaction(<MessageReaction> reaction);
|
|
|
|
}
|
|
|
|
|
2023-10-08 18:59:04 -07:00
|
|
|
async function fetchMotd()
|
|
|
|
{
|
|
|
|
const res = await fetch(process.env.MOTD_HREF);
|
|
|
|
const xml = await res.text();
|
|
|
|
const parser = new DOMParser();
|
|
|
|
const doc = parser.parseFromString(xml, 'text/html');
|
|
|
|
return doc.querySelector(process.env.MOTD_QUERY).textContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function scheduleRandomMessage(firstTime = false)
|
|
|
|
{
|
|
|
|
if (!firstTime) {
|
|
|
|
const channel = <TextChannel> await client.channels.fetch(process.env.MOTD_CHANNEL);
|
|
|
|
const randomMessage = await fetchMotd();
|
|
|
|
await channel.send(randomMessage);
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo(`[bot] Sent MOTD: ${randomMessage}`);
|
2023-10-08 18:59:04 -07:00
|
|
|
}
|
|
|
|
// wait between 2-8 hours
|
|
|
|
const timeoutMins = Math.random() * 360 + 120;
|
|
|
|
const scheduledTime = new Date();
|
|
|
|
scheduledTime.setMinutes(scheduledTime.getMinutes() + timeoutMins);
|
2023-10-08 19:15:00 -07:00
|
|
|
logInfo(`[bot] Next MOTD: ${scheduledTime.toLocaleTimeString()}`);
|
2023-10-08 18:59:04 -07:00
|
|
|
setTimeout(scheduleRandomMessage, timeoutMins * 60 * 1000);
|
|
|
|
}
|
|
|
|
|
2023-10-07 22:46:02 -07:00
|
|
|
client.on(Events.MessageReactionAdd, onMessageReactionChanged);
|
|
|
|
client.on(Events.MessageReactionRemove, onMessageReactionChanged);
|
|
|
|
|
|
|
|
async function startup() {
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo("[db] Opening...");
|
2023-10-07 22:46:02 -07:00
|
|
|
await openDb();
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo("[db] Migrating...");
|
2023-10-07 22:46:02 -07:00
|
|
|
await db.migrate();
|
2023-10-08 19:10:47 -07:00
|
|
|
logInfo("[db] Ready.");
|
|
|
|
logInfo("[bot] Logging in...");
|
2023-10-07 22:46:02 -07:00
|
|
|
await client.login(process.env.TOKEN);
|
2023-10-08 13:48:41 -07:00
|
|
|
await sync(client.guilds);
|
2023-10-08 18:59:04 -07:00
|
|
|
if (process.env.ENABLE_MOTD) {
|
|
|
|
await scheduleRandomMessage(true);
|
|
|
|
}
|
2023-10-07 22:46:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
startup();
|