116 lines
4.5 KiB
JavaScript
116 lines
4.5 KiB
JavaScript
|
import { EmbedBuilder } from 'discord.js';
|
||
|
import fs from 'node:fs';
|
||
|
global.boards = {};
|
||
|
|
||
|
export default {
|
||
|
name: 'messageReactionRemove',
|
||
|
async execute(reaction, users, c) {
|
||
|
if (reaction.partial) {
|
||
|
await reaction.fetch()
|
||
|
.catch(err => {
|
||
|
return console.error(err);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (reaction.message.partial) {
|
||
|
await reaction.message.fetch()
|
||
|
.catch(err => {
|
||
|
return console.error(err);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
let starboardChannel, shameboardChannel;
|
||
|
let reactionCount = reaction.count;
|
||
|
|
||
|
// If one of the reaction is the author of the message remove 1 to the reaction count
|
||
|
reaction.users.cache.forEach(user => {
|
||
|
if (reaction.message.author == user) reactionCount--;
|
||
|
});
|
||
|
console.log(fs.existsSync(`./json/board/star${reaction.message.guild.id}.json`));
|
||
|
|
||
|
// Starboard
|
||
|
if (fs.existsSync(`./json/board/star${reaction.message.guild.id}.json`)) {
|
||
|
console.log('hi');
|
||
|
starboardChannel = JSON.parse(fs.readFileSync(`./json/board/star${reaction.message.guild.id}.json`));
|
||
|
let staremote = starboardChannel.emote;
|
||
|
const starcount = starboardChannel.count;
|
||
|
// Get name of the custom emoji
|
||
|
if (reaction.message.guild.emojis.resolve(staremote.replace(/\D/g, ''))) {
|
||
|
staremote = reaction.message.guild.emojis.resolve(staremote.replace(/\D/g, ''));
|
||
|
}
|
||
|
|
||
|
if (global.boards[reaction.message.id] && (reaction.emoji == staremote || reaction.emoji.name == staremote) && reactionCount < starcount) {
|
||
|
const channel = c.channels.resolve(starboardChannel.starboard);
|
||
|
const message = await channel.messages.resolve(global.boards[reaction.message.id]);
|
||
|
delete global.boards[reaction.message.id];
|
||
|
// If it didn't find any message don't do anything
|
||
|
if (!message) return;
|
||
|
|
||
|
message.delete();
|
||
|
}
|
||
|
else if ((reaction.emoji == staremote || reaction.emoji.name == staremote) && reactionCount >= starcount) {
|
||
|
return editEmbed('starboard', staremote, global.boards[reaction.message.id], this.client);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Shameboard
|
||
|
if (fs.existsSync(`./json/board/shame${reaction.message.guild.id}.json`)) {
|
||
|
shameboardChannel = JSON.parse(fs.readFileSync(`./json/board/shame${reaction.message.guild.id}.json`));
|
||
|
let shameemote = shameboardChannel.emote;
|
||
|
const shamecount = shameboardChannel.count;
|
||
|
// Get name of the custom emoji
|
||
|
if (reaction.message.guild.emojis.resolve(shameemote.replace(/\D/g, ''))) {
|
||
|
shameemote = reaction.message.guild.emojis.resolve(shameemote.replace(/\D/g, ''));
|
||
|
}
|
||
|
|
||
|
if (global.boards[reaction.message.id] && (reaction.emoji == shameemote || reaction.emoji.name == shameemote) && reactionCount < shamecount) {
|
||
|
const channel = c.channels.resolve(starboardChannel.starboard);
|
||
|
const message = await channel.messages.resolve(global.boards[reaction.message.id]);
|
||
|
delete global.boards[reaction.message.id];
|
||
|
// If it didn't find any message don't do anything
|
||
|
if (!message) return;
|
||
|
|
||
|
message.delete();
|
||
|
}
|
||
|
else if ((reaction.emoji == shameemote || reaction.emoji.name == shameemote) && reactionCount >= shamecount) {
|
||
|
return editEmbed('shameboard', shameemote, global.boards[reaction.message.id], this.client);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async function editEmbed(name, emote, boardID, client) {
|
||
|
let channel;
|
||
|
if (name == 'starboard') {
|
||
|
channel = client.channels.resolve(starboardChannel.starboard);
|
||
|
}
|
||
|
else {
|
||
|
channel = client.channels.resolve(shameboardChannel.shameboard);
|
||
|
}
|
||
|
|
||
|
const message = await channel.messages.resolve(boardID);
|
||
|
|
||
|
// If the message doesn't have embeds assume it got deleted so don't do anything
|
||
|
if (!message) return;
|
||
|
|
||
|
// If the original embed description is empty make this embed empty ( and not undefined )
|
||
|
let description = message.embeds[0].description;
|
||
|
if (!message.embeds[0].description || message.embeds[0].description == undefined) {
|
||
|
description = '';
|
||
|
}
|
||
|
|
||
|
const Embed = new EmbedBuilder()
|
||
|
.setColor(reaction.message.member ? reaction.message.member.displayHexColor : 'NAVY')
|
||
|
.setAuthor({ name: reaction.message.author.username, iconURL: reaction.message.author.displayAvatarURL() })
|
||
|
.addFields(
|
||
|
{ name: 'Jump to', value: `[message](https://discordapp.com/channels/${reaction.message.guild.id}/${reaction.message.channel.id}/${reaction.message.id})`, inline: true },
|
||
|
{ name: 'Channel', value: reaction.message.channel.toString(), inline: true },
|
||
|
)
|
||
|
.setDescription(description)
|
||
|
.setFooter({ text: `${emote} ${reactionCount}` })
|
||
|
.setTimestamp();
|
||
|
|
||
|
if (reaction.message.guild.emojis.resolve(emote)) Embed.setFooter(reactionCount, reaction.message.guild.emojis.resolve(emote).url);
|
||
|
|
||
|
message.edit({ embed: Embed });
|
||
|
}
|
||
|
},
|
||
|
};
|