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 { roleMention } from "@discordjs/builders"; |
21 |
import { ButtonInteraction, GuildMember } from "discord.js"; |
22 |
import InteractionRole from "../models/InteractionRole"; |
23 |
import Service from "../utils/structures/Service"; |
24 |
|
25 |
export default class InteractionRoleManager extends Service { |
26 |
async onButtonInteraction(interaction: ButtonInteraction) { |
27 |
if (!interaction.customId.startsWith('role__')) { |
28 |
console.log("Not a interaction role button!"); |
29 |
return; |
30 |
} |
31 |
|
32 |
await interaction.deferReply({ ephemeral: true }); |
33 |
|
34 |
const [, id, roleID] = interaction.customId.split('__'); |
35 |
const interactionRole = await InteractionRole.findOne({ |
36 |
_id: id, |
37 |
role_id: roleID, |
38 |
guild_id: interaction.guildId!, |
39 |
type: "button" |
40 |
}); |
41 |
|
42 |
if (!interactionRole) { |
43 |
await interaction.editReply({ content: "That role provider message is disabled!" }); |
44 |
return; |
45 |
} |
46 |
|
47 |
try { |
48 |
const role = await interaction.guild!.roles.fetch(roleID); |
49 |
|
50 |
if (!role) { |
51 |
throw new Error(); |
52 |
} |
53 |
|
54 |
try { |
55 |
const member = interaction.member as GuildMember; |
56 |
|
57 |
if (!member.roles.cache.has(role.id)) { |
58 |
await member.roles.add(role); |
59 |
await interaction.editReply({ content: `Gave you the ${roleMention(role.id)} role.` }); |
60 |
} |
61 |
else { |
62 |
await member.roles.remove(role); |
63 |
await interaction.editReply({ content: `Removed the ${roleMention(role.id)} role from you.` }); |
64 |
} |
65 |
} |
66 |
catch (e) { |
67 |
await interaction.editReply({ content: "An error occurred while trying to give/take-out the role." }); |
68 |
return; |
69 |
} |
70 |
} |
71 |
catch (e) { |
72 |
await interaction.editReply({ content: "Could not find the role, contact the server administrators." }); |
73 |
return; |
74 |
} |
75 |
} |
76 |
} |