/[sudobot]/branches/2.x/src/commands/settings/EvalCommand.ts
ViewVC logotype

Annotation of /branches/2.x/src/commands/settings/EvalCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1539 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26