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 |
errors: { |
30 |
required: "Please specify a name for this new snippet/tag!", |
31 |
"type:invalid": "Please specify a valid snippet/tag name!" |
32 |
}, |
33 |
name: "name" |
34 |
}, |
35 |
{ |
36 |
types: [ArgumentType.StringRest], |
37 |
errors: { |
38 |
required: "Please specify the content of this new snippet/tag!", |
39 |
"type:invalid": "Please specify valid content for this new snippet/tag" |
40 |
}, |
41 |
name: "content", |
42 |
optional: true |
43 |
} |
44 |
]; |
45 |
public readonly permissions = [ |
46 |
PermissionsBitField.Flags.BanMembers, |
47 |
PermissionsBitField.Flags.KickMembers, |
48 |
PermissionsBitField.Flags.ManageGuild, |
49 |
PermissionsBitField.Flags.ModerateMembers, |
50 |
PermissionsBitField.Flags.ManageMessages |
51 |
]; |
52 |
public readonly aliases: string[] = ["tagcreate", "addtag", "maketag", "addsnippet"]; |
53 |
public readonly permissionMode = "or"; |
54 |
|
55 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
56 |
const name: string = context.isLegacy ? context.parsedNamedArgs.name : context.options.getString("name", true); |
57 |
|
58 |
if (/\s/.test(name)) { |
59 |
await this.error(message, "Snippet name cannot contain spaces!"); |
60 |
return; |
61 |
} |
62 |
|
63 |
const content: string | undefined = context.isLegacy |
64 |
? context.parsedNamedArgs.content |
65 |
: context.options.getString("content", true); |
66 |
|
67 |
if (message instanceof Message && !content && message.attachments.size === 0) { |
68 |
await this.error(message, "Please either specify text content or attachments to put inside the new snippet!"); |
69 |
return; |
70 |
} |
71 |
|
72 |
log("Name: " + name); |
73 |
log("Content: " + content); |
74 |
|
75 |
const { error } = await this.client.snippetManager.createSnippet({ |
76 |
name, |
77 |
content, |
78 |
channels: [], |
79 |
guildId: message.guildId!, |
80 |
roles: [], |
81 |
users: [], |
82 |
userId: message.member!.user.id, |
83 |
attachments: message instanceof Message ? [...message.attachments.values()] : undefined, |
84 |
randomize: context.isLegacy ? false : context.options.getBoolean("randomize") ?? false |
85 |
}); |
86 |
|
87 |
if (error) { |
88 |
await this.error(message, error); |
89 |
return; |
90 |
} |
91 |
|
92 |
await this.deferredReply( |
93 |
message, |
94 |
`${this.emoji("check")} Successfully created snippet \`${escapeInlineCode(escapeCodeBlock(name))}\`${ |
95 |
!this.client.configManager.systemConfig.snippets?.save_attachments && |
96 |
message instanceof Message && |
97 |
message.attachments.size > 0 |
98 |
? `\nYour message attachments were not saved. Please use links instead.` |
99 |
: "" |
100 |
}` |
101 |
); |
102 |
} |
103 |
} |