1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
import {
addRoleResponse,
AllowedMentions,
BotCommand,
emojis,
format,
humanizeDuration,
mappings,
removeRoleResponse,
type ArgType,
type CommandMessage,
type OptArgType,
type SlashMessage
} from '#lib';
import assert from 'assert/strict';
import { type ArgumentGeneratorReturn } from 'discord-akairo';
import { ApplicationCommandOptionType, PermissionFlagsBits, type Snowflake } from 'discord.js';
export default class RoleCommand extends BotCommand {
public constructor() {
super('role', {
aliases: ['role', 'rr', 'ar', 'ra'],
category: 'moderation',
description: "Manages users' roles.",
usage: ['role <add|remove> <member> <role> [duration]'],
examples: ['role add spammer nogiveaways 7days', 'ra tyman muted', 'rr tyman staff'],
args: [
{
id: 'action',
description: 'Whether to add or remove a role for the the user.',
prompt: 'Would you like to add or remove a role?',
slashType: ApplicationCommandOptionType.String,
choices: [
{ name: 'add', value: 'add' },
{ name: 'remove', value: 'remove' }
],
only: 'slash'
},
{
id: 'member',
description: 'The user to add/remove a role to/from.',
prompt: 'What user do you want to add/remove a role to/from?',
slashType: ApplicationCommandOptionType.User,
slashResolve: 'Member',
optional: true,
only: 'slash'
},
{
id: 'role',
description: 'The role you would like to add/remove from the to/from.',
prompt: 'What role would you like to add/remove from the user?',
slashType: ApplicationCommandOptionType.Role,
optional: true,
only: 'slash'
},
{
id: 'duration',
description: 'The time before the role will be removed (ignored if removing a role).',
prompt: 'How long would you like to role to last?',
slashType: ApplicationCommandOptionType.String,
optional: true,
only: 'slash'
}
],
slash: true,
channel: 'guild',
flags: ['--force'],
typing: true,
clientPermissions: ['ManageRoles', 'EmbedLinks'],
clientCheckChannel: true,
userPermissions: []
});
}
public override *args(message: CommandMessage): ArgumentGeneratorReturn {
const action = (['rr'] as const).includes(message.util.parsed?.alias ?? '')
? 'remove'
: (['ar', 'ra'] as const).includes(message.util.parsed?.alias ?? '')
? 'add'
: yield {
id: 'action',
type: [['add'], ['remove']],
prompt: {
start: 'Would you like to `add` or `remove` a role?',
retry: '{error} Choose whether you would you like to `add` or `remove` a role.'
}
};
const member = yield {
id: 'user',
type: 'member',
prompt: {
start: `What user do you want to ${action} the role ${action === 'add' ? 'to' : 'from'}?`,
retry: `{error} Choose a valid user to ${action} the role ${action === 'add' ? 'to' : 'from'}.`
}
};
const _role = yield {
id: 'role',
type: `${action === 'add' ? 'roleWithDuration' : 'role'}`,
match: 'rest',
prompt: {
start: `What role do you want to ${action} ${action === 'add' ? 'to' : 'from'} the user${
action === 'add' ? ', and for how long' : ''
}?`,
retry: `{error} Choose a valid role to ${action}.`
}
};
const force = yield {
id: 'force',
description: 'Override permission checks and ban the user anyway.',
flag: '--force',
match: 'flag'
};
return {
action,
member: member,
role: (_role as ArgType<'roleWithDuration'>).role ?? _role,
duration: (_role as ArgType<'roleWithDuration'>).duration,
force
};
}
public override async exec(
message: CommandMessage | SlashMessage,
args: {
action: 'add' | 'remove';
member: ArgType<'member'>;
role: ArgType<'role'>;
duration: OptArgType<'duration'>;
force?: ArgType<'flag'>;
}
) {
assert(message.inGuild());
if (!args.role) return await message.util.reply(`${emojis.error} You must specify a role.`);
args.duration ??= 0;
if (
!message.member!.permissions.has(PermissionFlagsBits.ManageRoles) &&
message.member!.id !== message.guild?.ownerId &&
!message.member!.user.isOwner()
) {
let mappedRole: { name: string; id: string };
for (let i = 0; i < mappings.roleMap.length; i++) {
const a = mappings.roleMap[i];
if (a.id === args.role.id) mappedRole = a;
}
if (!mappedRole! || !(mappedRole.name in mappings.roleWhitelist)) {
return await message.util.reply({
content: `${emojis.error} <@&${args.role.id}> is not whitelisted, and you do not have manage roles permission.`,
allowedMentions: AllowedMentions.none()
});
}
const allowedRoles = mappings.roleWhitelist[mappedRole.name as keyof typeof mappings.roleWhitelist].map((r) => {
for (let i = 0; i < mappings.roleMap.length; i++) {
if (mappings.roleMap[i].name == r) return mappings.roleMap[i].id;
}
return;
});
if (!message.member!.roles.cache.some((role) => (allowedRoles as Snowflake[]).includes(role.id))) {
return await message.util.reply({
content: `${emojis.error} <@&${args.role.id}> is whitelisted, but you do not have any of the roles required to manage it.`,
allowedMentions: AllowedMentions.none()
});
}
}
const shouldLog = this.punishmentRoleNames.includes(args.role.name);
const responseCode = await args.member[`custom${args.action === 'add' ? 'Add' : 'Remove'}Role`]({
moderator: message.member!,
addToModlog: shouldLog,
role: args.role,
duration: args.duration
});
const responseMessage = (): string => {
const victim = format.input(args.member.user.tag);
switch (responseCode) {
case addRoleResponse.MISSING_PERMISSIONS:
return `${emojis.error} I don't have the **Manage Roles** permission.`;
case addRoleResponse.USER_HIERARCHY:
return `${emojis.error} <@&${args.role.id}> is higher or equal to your highest role.`;
case addRoleResponse.ROLE_MANAGED:
return `${emojis.error} <@&${args.role.id}> is managed by an integration and cannot be managed.`;
case addRoleResponse.CLIENT_HIERARCHY:
return `${emojis.error} <@&${args.role.id}> is higher or equal to my highest role.`;
case addRoleResponse.MODLOG_ERROR:
return `${emojis.error} There was an error creating a modlog entry, please report this to my developers.`;
case addRoleResponse.PUNISHMENT_ENTRY_ADD_ERROR:
case removeRoleResponse.PUNISHMENT_ENTRY_REMOVE_ERROR:
return `${emojis.error} There was an error ${
args.action === 'add' ? 'creating' : 'removing'
} a punishment entry, please report this to my developers.`;
case addRoleResponse.ACTION_ERROR:
return `${emojis.error} An error occurred while trying to ${args.action} <@&${args.role.id}> ${
args.action === 'add' ? 'to' : 'from'
} ${victim}.`;
case addRoleResponse.SUCCESS:
return `${emojis.success} Successfully ${args.action === 'add' ? 'added' : 'removed'} <@&${args.role.id}> ${
args.action === 'add' ? 'to' : 'from'
} ${victim}${args.duration ? ` for ${humanizeDuration(args.duration)}` : ''}.`;
default:
return `${emojis.error} An error occurred: ${format.input(responseCode)}}`;
}
};
await message.util.reply({ content: responseMessage(), allowedMentions: AllowedMentions.none() });
}
private punishmentRoleNames = [
'No Files',
'No Links',
'No Threads',
'No Reactions',
'No Bots',
'No VC',
'No Giveaways',
'Limited Server Access'
];
}
|