1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
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 { Message, PermissionsBitField, escapeCodeBlock, escapeInlineCode } from "discord.js"; |
21 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { log } from "../../utils/logger"; |
23 |
|
24 |
export default class SnippetCreateCommand extends Command { |
25 |
public readonly name = "snippet__create"; |
26 |
public readonly validationRules: ValidationRule[] = [ |
27 |
{ |
28 |
types: [ArgumentType.String], |
29 |
requiredErrorMessage: "Please specify a name for this new snippet/tag!", |
30 |
typeErrorMessage: "Please specify a valid snippet/tag name!", |
31 |
name: "name" |
32 |
}, |
33 |
{ |
34 |
types: [ArgumentType.StringRest], |
35 |
requiredErrorMessage: "Please specify the content of this new snippet/tag!", |
36 |
typeErrorMessage: "Please specify valid content for this new snippet/tag", |
37 |
name: "content", |
38 |
optional: true |
39 |
} |
40 |
]; |
41 |
public readonly permissions = [ |
42 |
PermissionsBitField.Flags.BanMembers, |
43 |
PermissionsBitField.Flags.KickMembers, |
44 |
PermissionsBitField.Flags.ManageGuild, |
45 |
PermissionsBitField.Flags.ModerateMembers, |
46 |
PermissionsBitField.Flags.ManageMessages |
47 |
]; |
48 |
public readonly aliases: string[] = ["tagcreate", "addtag", "maketag", "addsnippet"]; |
49 |
public readonly permissionMode = "or"; |
50 |
|
51 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
52 |
const name: string = context.isLegacy ? context.parsedNamedArgs.name : context.options.getString("name", true); |
53 |
|
54 |
if (/\s/.test(name)) { |
55 |
await this.error(message, "Snippet name cannot contain spaces!"); |
56 |
return; |
57 |
} |
58 |
|
59 |
const content: string | undefined = context.isLegacy ? context.parsedNamedArgs.content : context.options.getString("content", true); |
60 |
|
61 |
if (message instanceof Message && !content && message.attachments.size === 0) { |
62 |
await this.error(message, "Please either specify text content or attachments to put inside the new snippet!"); |
63 |
return; |
64 |
} |
65 |
|
66 |
log("Name: " + name); |
67 |
log("Content: " + content); |
68 |
|
69 |
const { error } = await this.client.snippetManager.createSnippet({ |
70 |
name, |
71 |
content, |
72 |
channels: [], |
73 |
guildId: message.guildId!, |
74 |
roles: [], |
75 |
users: [], |
76 |
userId: message.member!.user.id, |
77 |
attachments: message instanceof Message ? [...message.attachments.values()] : undefined, |
78 |
randomize: context.isLegacy ? false : context.options.getBoolean("randomize") ?? false |
79 |
}); |
80 |
|
81 |
if (error) { |
82 |
await this.error(message, error); |
83 |
return; |
84 |
} |
85 |
|
86 |
await this.deferredReply( |
87 |
message, |
88 |
`${this.emoji("check")} Successfully created snippet \`${escapeInlineCode(escapeCodeBlock(name))}\`${ |
89 |
!this.client.configManager.systemConfig.snippets?.save_attachments && message instanceof Message && message.attachments.size > 0 |
90 |
? `\nYour message attachments were not saved. Please use links instead.` |
91 |
: "" |
92 |
}` |
93 |
); |
94 |
} |
95 |
} |