/[sudobot]/branches/4.x/src/commands/utils/SnippetCommand.ts
ViewVC logotype

Annotation of /branches/4.x/src/commands/utils/SnippetCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months, 1 week ago) by rakinar2
File MIME type: application/typescript
File size: 3025 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 /**
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 { CommandInteraction, FileOptions, Permissions } from 'discord.js';
21     import BaseCommand from '../../utils/structures/BaseCommand';
22     import DiscordClient from '../../client/Client';
23     import InteractionOptions from '../../types/InteractionOptions';
24     import path from 'path';
25    
26     export default class AddsnippetCommand extends BaseCommand {
27     supportsInteractions: boolean = true;
28     supportsLegacy: boolean = false;
29     permissions = [Permissions.FLAGS.MANAGE_MESSAGES];
30    
31     constructor() {
32     super('snippet', 'utils', []);
33     }
34    
35     async run(client: DiscordClient, msg: CommandInteraction, options: InteractionOptions) {
36     if (options.options.getSubcommand(true) === 'get') {
37     const snippet = await client.snippetManager.getParsed(msg.guild!.id, options.options.getString('name')!);
38    
39     if (!snippet) {
40     await msg.reply({
41     content: ":x: No snippet found with that name.",
42     ephemeral: true
43     });
44    
45     return;
46     }
47    
48     try {
49     await msg.reply({
50     content: snippet.content.trim() === '' ? undefined : snippet.content,
51     files: snippet.files.map(name => {
52     return {
53     name,
54     attachment: path.resolve(process.env.SUDO_PREFIX ?? path.join(__dirname, '../../..'), 'storage', name)
55     } as FileOptions
56     }),
57     embeds: snippet.embeds
58     });
59     }
60     catch (e) {
61     console.log(e);
62     await msg.reply({ content: 'Looks like that snippet is corrupted. Maybe invalid embed schema?', ephemeral: true });
63     }
64     }
65    
66     let cmdName = '';
67    
68     if (options.options.getSubcommand(true) === 'create')
69     cmdName = 'addsnippet';
70     else if (options.options.getSubcommand(true) === 'delete')
71     cmdName = 'delsnippet';
72     else if (options.options.getSubcommand(true) === 'rename')
73     cmdName = 'mvsnippet';
74    
75     const command = await client.commands.get(cmdName);
76    
77     if (command) {
78     return await command.run(client, msg, options);
79     }
80     }
81     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26