1 |
rakinar2 |
577 |
import { CommandInteraction, Message } 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 { emoji } from '../../utils/Emoji'; |
8 |
|
|
|
9 |
|
|
export default class EvalCommand extends BaseCommand { |
10 |
|
|
supportsInteractions: boolean = true; |
11 |
|
|
ownerOnly = true; |
12 |
|
|
|
13 |
|
|
constructor() { |
14 |
|
|
super('eval', 'settings', []); |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
async run(client: DiscordClient, message: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
18 |
|
|
if (!options.isInteraction && options.args[0] === undefined) { |
19 |
|
|
await message.reply({ |
20 |
|
|
content: emoji('error') + " Please enter the raw code that you want to execute.", |
21 |
|
|
ephemeral: true |
22 |
|
|
}); |
23 |
|
|
|
24 |
|
|
return; |
25 |
|
|
} |
26 |
|
|
|
27 |
|
|
const code = options.isInteraction ? options.options.getString('code') : options.args.join(' '); |
28 |
|
|
|
29 |
|
|
try { |
30 |
|
|
const result = eval(code!); |
31 |
|
|
|
32 |
|
|
await message.reply({ |
33 |
|
|
content: `${emoji('check')} **Execution Result:**\n\n\`\`\`js\n${result}\`\`\``, |
34 |
|
|
ephemeral: true |
35 |
|
|
}); |
36 |
|
|
} |
37 |
|
|
catch (e) { |
38 |
|
|
await message.reply({ |
39 |
|
|
content: `${emoji('error')} **Error Occurred!**\n\n\`\`\`\n${e}\`\`\``, |
40 |
|
|
ephemeral: true |
41 |
|
|
}); |
42 |
|
|
} |
43 |
|
|
} |
44 |
|
|
} |