2019-09-13 20:02:41 +00:00
|
|
|
const ReactionCollector = require("./awaitreactions.js");
|
|
|
|
const MessageCollector = require("./awaitmessages.js");
|
|
|
|
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
module.exports = async (client, message, pages, timeout = 120000) => {
|
2021-03-19 20:10:15 +00:00
|
|
|
const manageMessages = message.channel.guild && message.channel.permissionsOf(client.user.id).has("manageMessages") ? true : false;
|
2021-05-17 15:17:43 +00:00
|
|
|
const options = {
|
2021-05-11 16:12:01 +00:00
|
|
|
messageReference: {
|
|
|
|
channelID: message.channel.id,
|
|
|
|
messageID: message.id,
|
|
|
|
guildID: message.channel.guild ? message.channel.guild.id : undefined,
|
|
|
|
failIfNotExists: false
|
|
|
|
},
|
|
|
|
allowedMentions: {
|
|
|
|
repliedUser: false
|
|
|
|
}
|
2021-05-17 15:17:43 +00:00
|
|
|
};
|
|
|
|
let page = 0;
|
|
|
|
let currentPage = await client.createMessage(message.channel.id, Object.assign(pages[page], options));
|
2019-09-13 20:02:41 +00:00
|
|
|
const emojiList = ["◀", "🔢", "▶", "🗑"];
|
|
|
|
for (const emoji of emojiList) {
|
|
|
|
await currentPage.addReaction(emoji);
|
|
|
|
}
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
const reactionCollector = new ReactionCollector(client, currentPage, (message, reaction, member) => emojiList.includes(reaction.name) && !member.bot, { time: timeout });
|
2021-02-07 17:08:55 +00:00
|
|
|
reactionCollector.on("reaction", async (msg, reaction, member) => {
|
2021-04-29 21:56:32 +00:00
|
|
|
if (member.id === message.author.id) {
|
2019-10-24 18:54:23 +00:00
|
|
|
switch (reaction.name) {
|
|
|
|
case "◀":
|
|
|
|
page = page > 0 ? --page : pages.length - 1;
|
2021-05-17 15:17:43 +00:00
|
|
|
currentPage = await currentPage.edit(Object.assign(pages[page], options));
|
2021-04-29 21:56:32 +00:00
|
|
|
if (manageMessages) msg.removeReaction("◀", member.id);
|
2019-10-24 18:54:23 +00:00
|
|
|
break;
|
|
|
|
case "🔢":
|
2021-05-11 16:12:01 +00:00
|
|
|
client.createMessage(message.channel.id, Object.assign({ content: "What page do you want to jump to?" }, {
|
|
|
|
messageReference: {
|
|
|
|
channelID: currentPage.channel.id,
|
|
|
|
messageID: currentPage.id,
|
|
|
|
guildID: currentPage.channel.guild ? currentPage.channel.guild.id : undefined,
|
|
|
|
failIfNotExists: false
|
|
|
|
},
|
|
|
|
allowedMentions: {
|
|
|
|
repliedUser: false
|
|
|
|
}
|
|
|
|
})).then(askMessage => {
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
const messageCollector = new MessageCollector(client, askMessage.channel, (response) => response.author.id === message.author.id && !isNaN(response.content) && Number(response.content) <= pages.length && Number(response.content) > 0, {
|
2019-10-24 18:54:23 +00:00
|
|
|
time: timeout,
|
|
|
|
maxMatches: 1
|
|
|
|
});
|
2021-03-30 22:00:07 +00:00
|
|
|
return messageCollector.on("message", async (response) => {
|
2021-04-30 17:31:53 +00:00
|
|
|
if (await client.getMessage(askMessage.channel.id, askMessage.id).catch(() => undefined)) askMessage.delete();
|
2021-03-30 22:00:07 +00:00
|
|
|
if (manageMessages) await response.delete();
|
2019-10-24 18:54:23 +00:00
|
|
|
page = Number(response.content) - 1;
|
2021-05-17 15:17:43 +00:00
|
|
|
currentPage = await currentPage.edit(Object.assign(pages[page], options));
|
2021-04-29 21:56:32 +00:00
|
|
|
if (manageMessages) msg.removeReaction("🔢", member.id);
|
2019-10-24 18:54:23 +00:00
|
|
|
});
|
|
|
|
}).catch(error => {
|
2020-02-21 00:26:49 +00:00
|
|
|
throw error;
|
2019-09-13 20:02:41 +00:00
|
|
|
});
|
2019-10-24 18:54:23 +00:00
|
|
|
break;
|
|
|
|
case "▶":
|
|
|
|
page = page + 1 < pages.length ? ++page : 0;
|
2021-05-17 15:17:43 +00:00
|
|
|
currentPage = await currentPage.edit(Object.assign(pages[page], options));
|
2021-04-29 21:56:32 +00:00
|
|
|
if (manageMessages) msg.removeReaction("▶", member.id);
|
2019-10-24 18:54:23 +00:00
|
|
|
break;
|
|
|
|
case "🗑":
|
2019-11-30 15:48:05 +00:00
|
|
|
reactionCollector.emit("end");
|
2021-04-30 17:31:53 +00:00
|
|
|
if (await client.getMessage(currentPage.channel.id, currentPage.id).catch(() => undefined)) await currentPage.delete();
|
2019-10-24 18:54:23 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2019-09-13 20:02:41 +00:00
|
|
|
}
|
|
|
|
});
|
2021-02-07 17:08:55 +00:00
|
|
|
reactionCollector.once("end", async () => {
|
2021-03-05 18:06:22 +00:00
|
|
|
try {
|
2021-04-30 17:31:53 +00:00
|
|
|
await client.getMessage(currentPage.channel, currentPage.id);
|
2021-03-05 18:06:22 +00:00
|
|
|
if (manageMessages) {
|
|
|
|
await currentPage.removeReactions();
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
return;
|
2021-01-17 05:46:07 +00:00
|
|
|
}
|
2019-11-30 02:00:14 +00:00
|
|
|
});
|
2019-09-13 20:02:41 +00:00
|
|
|
return currentPage;
|
|
|
|
};
|