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 { ChatInputCommandInteraction, EmbedBuilder, Message, PermissionsBitField } from "discord.js"; |
21 |
import Command, { CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { log } from "../../utils/Logger"; |
23 |
import Pagination from "../../utils/Pagination"; |
24 |
|
25 |
export default class SnippetListCommand extends Command { |
26 |
public readonly name = "snippet__list"; |
27 |
public readonly validationRules: ValidationRule[] = []; |
28 |
public readonly permissions = [ |
29 |
PermissionsBitField.Flags.BanMembers, |
30 |
PermissionsBitField.Flags.KickMembers, |
31 |
PermissionsBitField.Flags.ManageGuild, |
32 |
PermissionsBitField.Flags.ModerateMembers, |
33 |
PermissionsBitField.Flags.ManageMessages |
34 |
]; |
35 |
public readonly aliases: string[] = ["listtags", "taglist", "listsnippets", "snippetlist"]; |
36 |
public readonly permissionMode = "or"; |
37 |
|
38 |
async execute(message: CommandMessage): Promise<CommandReturn> { |
39 |
const snippets = []; |
40 |
const iterator = this.client.snippetManager.snippets.keys(); |
41 |
|
42 |
for (const snippet of iterator) { |
43 |
if (snippet.startsWith(`${message.guildId}_`)) { |
44 |
snippets.push(snippet.replace(`${message.guildId}_`, "")); |
45 |
} |
46 |
} |
47 |
|
48 |
if (snippets.length === 0) { |
49 |
await this.deferredReply(message, "This server does not have any snippets/tags yet."); |
50 |
return; |
51 |
} |
52 |
|
53 |
const paginator = new Pagination(snippets, { |
54 |
embedBuilder({ data, maxPages, currentPage }): EmbedBuilder { |
55 |
return new EmbedBuilder({ |
56 |
author: { |
57 |
name: `Snippets/tags in ${message.guild?.name}`, |
58 |
iconURL: message.guild?.iconURL() ?? undefined |
59 |
}, |
60 |
description: data.length === 0 ? "Nothing to show." : `\`${data.join("`, `")}\``, |
61 |
footer: { |
62 |
text: `Page ${currentPage} of ${maxPages}` |
63 |
}, |
64 |
color: 0x007bff |
65 |
}).setTimestamp(); |
66 |
}, |
67 |
client: this.client, |
68 |
timeout: 180_000, |
69 |
guildId: message.guildId!, |
70 |
channelId: message.channelId!, |
71 |
userId: message.member!.user.id, |
72 |
limit: 40 |
73 |
}); |
74 |
|
75 |
let reply = await this.deferredReply(message, await paginator.getMessageOptions()); |
76 |
log(reply); |
77 |
|
78 |
if (!(reply instanceof Message)) { |
79 |
reply = await (message as ChatInputCommandInteraction).fetchReply(); |
80 |
} |
81 |
|
82 |
await paginator.start(reply as Message); |
83 |
} |
84 |
} |