1 |
rakinar2 |
577 |
import { BanOptions, CommandInteraction, EmojiIdentifierResolvable, GuildMember, Interaction, Message, TextChannel, User } from 'discord.js'; |
2 |
|
|
import BaseCommand from '../../utils/structures/BaseCommand'; |
3 |
|
|
import DiscordClient from '../../client/Client'; |
4 |
|
|
import CommandOptions from '../../types/CommandOptions'; |
5 |
|
|
import InteractionOptions from '../../types/InteractionOptions'; |
6 |
|
|
import MessageEmbed from '../../client/MessageEmbed'; |
7 |
|
|
import getUser from '../../utils/getUser'; |
8 |
|
|
import getMember from '../../utils/getMember'; |
9 |
|
|
import History from '../../automod/History'; |
10 |
|
|
import { fetchEmoji } from '../../utils/Emoji'; |
11 |
|
|
|
12 |
|
|
export default class VerifyCommand extends BaseCommand { |
13 |
|
|
supportsInteractions: boolean = true; |
14 |
|
|
|
15 |
|
|
constructor() { |
16 |
|
|
super('verify', 'moderation', []); |
17 |
|
|
} |
18 |
|
|
|
19 |
|
|
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
20 |
|
|
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
21 |
|
|
await msg.reply({ |
22 |
|
|
embeds: [ |
23 |
|
|
new MessageEmbed() |
24 |
|
|
.setColor('#f14a60') |
25 |
|
|
.setDescription(`This command requires at least one argument.`) |
26 |
|
|
] |
27 |
|
|
}); |
28 |
|
|
|
29 |
|
|
return; |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
let member: GuildMember | null | undefined; |
33 |
|
|
|
34 |
|
|
if (options.isInteraction) { |
35 |
|
|
member = <GuildMember> await options.options.getMember('user'); |
36 |
|
|
|
37 |
|
|
if (!member) { |
38 |
|
|
await msg.reply({ |
39 |
|
|
content: 'Invalid member given.' |
40 |
|
|
}); |
41 |
|
|
|
42 |
|
|
return; |
43 |
|
|
} |
44 |
|
|
} |
45 |
|
|
else { |
46 |
|
|
try { |
47 |
|
|
member = await getMember(msg as Message, options); |
48 |
|
|
|
49 |
|
|
if (!member) |
50 |
|
|
throw new Error(); |
51 |
|
|
} |
52 |
|
|
catch (e) { |
53 |
|
|
console.log(e); |
54 |
|
|
|
55 |
|
|
await msg.reply({ |
56 |
|
|
content: 'Invalid member given.' |
57 |
|
|
}); |
58 |
|
|
|
59 |
|
|
return; |
60 |
|
|
} |
61 |
|
|
} |
62 |
|
|
|
63 |
|
|
if (member.roles.cache.has(client.config.props[member.guild.id].mod_role)) { |
64 |
|
|
await msg.reply(`Cannot enforce verification to a moderator.`); |
65 |
|
|
return; |
66 |
|
|
} |
67 |
|
|
|
68 |
|
|
// if (member.roles.cache.has(client.config.props[member.guild.id].verification.role)) { |
69 |
|
|
// await msg.reply(`Verification is already enforced to this user.`); |
70 |
|
|
// return; |
71 |
|
|
// } |
72 |
|
|
|
73 |
|
|
await client.verification.start(member); |
74 |
|
|
|
75 |
|
|
await msg.reply({ |
76 |
|
|
embeds: [ |
77 |
|
|
new MessageEmbed({ |
78 |
|
|
author: { |
79 |
|
|
name: member.user.tag, |
80 |
|
|
iconURL: member.displayAvatarURL() |
81 |
|
|
}, |
82 |
|
|
description: `Verfication has been enforced to this user. They won't be able to access channels or talk unless they verify themselves.` |
83 |
|
|
}) |
84 |
|
|
] |
85 |
|
|
}); |
86 |
|
|
} |
87 |
|
|
} |