1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2022 OSN Inc. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import { MessageAttachment, MessageReaction, TextChannel } from "discord.js"; |
21 |
import MessageEmbed from "../client/MessageEmbed"; |
22 |
import Service from "../utils/structures/Service"; |
23 |
import { hasConfig } from "../utils/util"; |
24 |
|
25 |
export default class Starboard extends Service { |
26 |
async handle(reaction: MessageReaction) { |
27 |
if (!hasConfig(this.client, reaction.message.guildId!, "starboard")) |
28 |
return; |
29 |
|
30 |
if (this.client.config.get('starboard').enabled) { |
31 |
let emoji = reaction.emoji.name; |
32 |
|
33 |
console.log(emoji); |
34 |
|
35 |
if (emoji === '⭐' && reaction.message.channel.id !== this.client.config.get('starboard').channel && reaction.count === this.client.config.get('starboard').reactions) { |
36 |
try { |
37 |
const channel = <TextChannel> await reaction.message.guild!.channels.fetch(this.client.config.get('starboard').channel); |
38 |
|
39 |
let props = { |
40 |
embeds: reaction.message.embeds || [] |
41 |
}; |
42 |
|
43 |
const msg = await channel.send({ |
44 |
embeds: [ |
45 |
...props.embeds, |
46 |
new MessageEmbed() |
47 |
.setAuthor({ |
48 |
name: reaction.message.author!.tag, |
49 |
iconURL: reaction.message.author!.displayAvatarURL(), |
50 |
}) |
51 |
.setDescription(reaction.message.content!) |
52 |
.addField('URL', `[Click here](${reaction.message.url})`) |
53 |
.setTimestamp() |
54 |
.setFooter({ |
55 |
text: reaction.message.id + '' |
56 |
}) |
57 |
], |
58 |
files: reaction.message.attachments.map(a => { |
59 |
return { |
60 |
name: a.name, |
61 |
attachment: a.proxyURL |
62 |
} as MessageAttachment |
63 |
}) |
64 |
}); |
65 |
|
66 |
await msg.react('⭐'); |
67 |
} |
68 |
catch (e) { |
69 |
console.log(e); |
70 |
} |
71 |
} |
72 |
} |
73 |
} |
74 |
}; |