/[sudobot]/trunk/commands/help.js
ViewVC logotype

Contents of /trunk/commands/help.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 35 - (show annotations)
Mon Jul 29 17:28:18 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 15708 byte(s)
Fixed multiple channel mentions conflict in -echo command
1 const { MessageActionRow, MessageButton } = require("discord.js");
2 const MessageEmbed = require("../src/MessageEmbed");
3 const { escapeRegex } = require("../src/util");
4
5 module.exports = {
6 version: "1.6.2",
7 commands: [
8 {
9 name: 'addsnippet',
10 shortBrief: "Adds a snippet.",
11 description: null,
12 structure: "<Name> <Content>",
13 example: "`%%addsnippet roles There are 2 roles`\n`%%addsnippet roles There are 2 roles\nAdmin - Administrator\nMod - Moderator`",
14 notes: null
15 },
16 {
17 name: 'afk',
18 shortBrief: "Keeps track of your mentions and tells other users that you're AFK.",
19 description: null,
20 structure: "[Reason]",
21 example: "`%%afk`\n`%%afk Having dinner`",
22 notes: null
23 },
24 {
25 name: 'announce',
26 shortBrief: "Announce something in the given channel.",
27 description: "Announce something in the given channel. The channel should be set in the configuration.",
28 structure: "<Content>",
29 example: "`%%announce Hello there!\nWe've just finished our job!\n@everyone`",
30 notes: null
31 },
32 {
33 name: 'ban',
34 shortBrief: "Ban someone in this server.",
35 description: null,
36 structure: "<UserID|Mention> [Reason]",
37 example: "`%%ban 385753607325075320`\n`%%ban @Someone You are spamming a lot`",
38 notes: null
39 },
40 {
41 name: 'bean',
42 shortBrief: "Bean someone in this server.",
43 description: "Bean someone. It doesn't do anything except pretending.",
44 structure: "<UserID|Mention> [Reason]",
45 example: "`%%bean 385753607325075320`\n`%%bean @Someone You are spamming a lot`",
46 notes: null
47 },
48 {
49 name: 'cat',
50 shortBrief: "Get a random kitty picture.",
51 description: "Fetches a random cat picture from `thecatapi.com` API.",
52 structure: "",
53 example: "`%%cat`",
54 notes: null
55 },
56 {
57 name: 'clear',
58 shortBrief: "Clear all messages from a user.",
59 description: "Clear all messages from a user, in the current channel. This might take a while.",
60 structure: "<UserID|UserMention>",
61 example: "`%%clear 83474924191884727`\n`%%clear @Someone`",
62 notes: null
63 },
64 {
65 name: 'delsnippet',
66 shortBrief: "Deletes a snippet.",
67 description: null,
68 structure: "<Name>",
69 example: "`%%delsnippet roles`",
70 notes: null
71 },
72 {
73 name: 'dog',
74 shortBrief: "Get a random doggy picture.",
75 description: "Fetches a random cat picture from `thedogapi.com` API.",
76 structure: "",
77 example: "`%%dog`",
78 notes: null
79 },
80 {
81 name: 'echo',
82 shortBrief: "Echo (re-send) a message.",
83 description: "Re-send a message from the bot.",
84 structure: "<content> [channelMention]",
85 example: "`%%echo Something\nVery Cool`\n`%%echo Something\nVery Cool #general`",
86 notes: null
87 },
88 {
89 name: 'general-role',
90 shortBrief: "Set the general role.",
91 description: null,
92 structure: "<RoleID|RoleMention>",
93 example: "`%%general-role 937923625698638`\n`%%general-role @General`",
94 notes: null
95 },
96 {
97 name: 'help',
98 shortBrief: "Show this help and exit.",
99 description: null,
100 structure: "[command]",
101 example: "`%%help`\n`%%help mute`",
102 notes: null
103 },
104 {
105 name: 'history',
106 shortBrief: "Show moderation history for a user.",
107 description: null,
108 structure: "<UserMention|UserID>",
109 example: "`%%history 27372628277272625`\n`%%history @Someone`",
110 notes: null
111 },
112 {
113 name: 'httpcat',
114 shortBrief: "Get some funny cat memes related to HTTP.",
115 description: "Get some funny cat memes related to HTTP status codes, using http.cat API.",
116 structure: "<status>",
117 example: "`%%httpcat 403`",
118 notes: null
119 },
120 {
121 name: 'httpdog',
122 shortBrief: "Get some funny dog memes related to HTTP.",
123 description: "Get some funny dog memes related to HTTP status codes, using http.dog API.",
124 structure: "<status>",
125 example: "`%%httpdog 403`",
126 notes: null
127 },
128 {
129 name: 'kick',
130 shortBrief: "Kick someone from this server.",
131 description: null,
132 structure: "<UserID|Mention> [Reason]",
133 example: "`%%kick 385753607325075320`\n`%%kick @Someone You are spamming a lot`",
134 notes: null
135 },
136 {
137 name: 'lock',
138 shortBrief: "Lock a specific channel.",
139 description: "Makes the given channel read-only for the general members. If no channel is present, the current channel will be locked.",
140 structure: "[ChannelID|ChannelMention] [...options]",
141 example: "`%%lock 385753607325075320`\n`%%lock #general`\n`%%lock`",
142 notes: null,
143 options: {
144 "--no-send": "Do not send a confirmation message to the locked channel",
145 "--everyone": "Lock the channels for @everyone rather than the general role",
146 }
147 },
148 {
149 name: 'lockall',
150 shortBrief: "Lock all the channels given in the configuration.",
151 description: "Makes the given channels read-only for the general members.",
152 structure: "[...options]",
153 example: "`%%lockall --no-send\n`%%lockall`\n`%%lockall --everyone`",
154 notes: null,
155 options: {
156 "--no-send": "Do not send a confirmation message to the locked channel",
157 "--everyone": "Lock the channels for @everyone rather than the general role",
158 }
159 },
160 {
161 name: 'mod-role',
162 shortBrief: "Set the moderator role.",
163 description: null,
164 structure: "<RoleID|RoleMention>",
165 example: "`%%mod-role 937923625698638`\n`%%mod-role @Moderator`",
166 notes: null
167 },
168 {
169 name: 'mute',
170 shortBrief: "Mute someone in this server.",
171 description: null,
172 structure: "<UserID|Mention> [-t=DURATION] [Reason]",
173 example: "`%%mute 385753607325075320`\n`%%mute @Someone You are spamming a lot`\n`%%mute @Someone -t 10m You are spamming a lot`",
174 options: {
175 "-t": "Set the mute duration"
176 },
177 notes: null
178 },
179 {
180 name: 'muted-role',
181 shortBrief: "Set the muted role.",
182 description: null,
183 structure: "<RoleID|RoleMention>",
184 example: "`%%muted-role 937923625698638`\n`%%muted-role @Muted`",
185 notes: null
186 },
187 {
188 name: 'mvsnippet',
189 shortBrief: "Rename a snippet.",
190 description: null,
191 structure: "<oldName> <newName>",
192 example: "`%%mvsnippet abc bca`",
193 notes: null
194 },
195 {
196 name: 'note',
197 shortBrief: "Take a note about an user.",
198 description: null,
199 structure: "<UserID|UserMention> <note>",
200 example: "`%%note @Someone Simple note.`",
201 notes: null
202 },
203 {
204 name: 'notedel',
205 shortBrief: "Delete a note.",
206 description: null,
207 structure: "<NoteID>",
208 example: "`%%notedel 922`",
209 notes: null
210 },
211 {
212 name: 'noteget',
213 shortBrief: "Get a note.",
214 description: null,
215 structure: "<NoteID>",
216 example: "`%%noteget 922`",
217 notes: null
218 },
219 {
220 name: 'notes',
221 shortBrief: "Get all notes for a specific user.",
222 description: null,
223 structure: "<UserID|UserMention>",
224 example: "`%%notes @Someone`",
225 notes: null
226 },
227 {
228 name: 'pixabay',
229 shortBrief: "Fetch images from Pixabay.",
230 description: "Search & fetch images from Pixabay API.\n\nAvailable Subcommands:\n\tphoto - Fetch photos only.\n\tvector - Fetch vectors only.\n\tillustration - Fetch illustrations only\n\timage - Fetch any image.",
231 structure: "<subcommand> [query]",
232 example: "`%%pixabay image`\n`%%pixabay photo birds`",
233 notes: null
234 },
235 {
236 name: 'prefix',
237 shortBrief: "Change the bot prefix.",
238 description: null,
239 structure: "<NewPrefix>",
240 example: "`%%prefix -`",
241 notes: null
242 },
243 {
244 name: 'setconfig',
245 shortBrief: "Change the bot configuration keys.",
246 description: null,
247 structure: "<key> <value>",
248 example: "`%%setconfig debug true`",
249 notes: null
250 },
251 {
252 name: 'send',
253 shortBrief: "Send a DM to a user.",
254 description: null,
255 structure: "<UserID|Mention> <content>",
256 example: "`%%send 278358918549759428 Hello world`\n`%%send @Someone Hello world`",
257 notes: null
258 },
259 {
260 name: 'spamfilter',
261 shortBrief: "Change the spam filter configuration keys.",
262 description: null,
263 structure: "<key> <value>",
264 example: "`%%spamfilter include #general`",
265 notes: null
266 },
267 {
268 name: 'stats',
269 shortBrief: "Show the server stats.",
270 description: null,
271 structure: "",
272 example: "`%%stats",
273 notes: null
274 },
275 {
276 name: 'unban',
277 shortBrief: "Unban a user from this server.",
278 description: null,
279 structure: "<UserID>",
280 example: "`%%unban 2946255269594753792`",
281 notes: null
282 },
283 {
284 name: 'unlock',
285 shortBrief: "Unlock a specific channel.",
286 description: "Makes the given channel writable for the general members. If no channel is present, the current channel is unlocked.",
287 structure: "[ChannelID|ChannelMention] [...options]",
288 example: "`%%unlock 385753607325075320`\n`%%unlock #general`\n`%%unlock`",
289 notes: null,
290 options: {
291 "--no-send": "Do not send a confirmation message to the locked channel",
292 "--everyone": "Unlock the channels for @everyone rather than the general role",
293 }
294 },
295 {
296 name: 'unlockall',
297 shortBrief: "Unlock all the channels given in the configuration.",
298 description: "Makes the given channels writable for the general members.",
299 structure: "[...options]",
300 example: "`%%unlockall --no-send\n`%%unlockall`\n`%%unlockall --everyone`",
301 notes: null,
302 options: {
303 "--no-send": "Do not send a confirmation message to the locked channel",
304 "--everyone": "Lock the channels for @everyone rather than the general role",
305 "--raid": "Unlock all Raid-locked channels"
306 }
307 },
308 {
309 name: 'unmute',
310 shortBrief: "Unmute someone in this server.",
311 description: null,
312 structure: "<UserID|Mention>",
313 example: "`%%unmute 385753607325075320`\n`%%unmute @Someone You are spamming a lot`",
314 notes: null
315 },
316 {
317 name: 'warn',
318 shortBrief: "Warn someone in this server.",
319 description: null,
320 structure: "<UserID|Mention> [Reason]",
321 example: "`%%warn 385753607325075320`\n`%%warn @Someone You are spamming a lot`",
322 notes: null
323 },
324 {
325 name: 'warndel',
326 shortBrief: "Delete a warning.",
327 description: null,
328 structure: "<ID>",
329 example: "`%%warndel 39`",
330 notes: null
331 },
332 {
333 name: 'warning',
334 shortBrief: "Show a warning.",
335 description: null,
336 structure: "<ID>",
337 example: "`%%warning 39`",
338 notes: null
339 },
340 {
341 name: 'warnings',
342 shortBrief: "Show all warnings.",
343 description: "Show all warnings in this server. Passing an user will only show their warnings.",
344 structure: "[UserId|Mention]",
345 example: "`%%warnings`\n`%%warnings 948489127957979253978538`",
346 notes: null
347 },
348 ],
349 async render() {
350 let string = '';
351
352 for (let cmd of this.commands) {
353 string += `\n\n**${cmd.name}**\n${cmd.shortBrief}`;
354 }
355
356 return string;
357 },
358 async handle(msg, cm) {
359 if (typeof cm.args[0] === 'undefined') {
360 // await msg.reply({
361 // embeds: [
362 // new MessageEmbed()
363 // .setColor('#f14a60')
364 // .setDescription(`This command requires at least one argument.`)
365 // ]
366 // });
367
368 await msg.reply({
369 embeds: [
370 new MessageEmbed()
371 .setDescription("The command list. Run `" + app.config.get('prefix') + "help <commandName>` for more information about a specific command.\n" + await this.render())
372 .setTitle('Help')
373 ],
374 });
375
376 return;
377 }
378
379 const cmd = this.commands.find(c => c.name === cm.args[0]);
380
381 if (!cmd) {
382 await msg.reply({
383 embeds: [
384 new MessageEmbed()
385 .setColor('#f14a60')
386 .setDescription(`Invalid command \`${cm.args[0]}\`.`)
387 ]
388 });
389
390 return;
391 }
392
393 let fields = [
394 {
395 name: "Usage",
396 value: `\`${app.config.get('prefix')}${cmd.name}\`` + (cmd.structure.trim() !== '' ? ` \`${cmd.structure}\`` : '')
397 },
398 {
399 name: 'Examples',
400 value: cmd.example.replace(/\%\%/g, app.config.get('prefix'))
401 }
402 ];
403
404 if (cmd.options !== undefined) {
405 let str = '';
406
407 for (let opt in cmd.options)
408 str += `\`${opt}\` - ${cmd.options[opt]}\n`;
409
410 str = str.substring(0, str.length - 1);
411
412 fields.push({
413 name: 'Options',
414 value: str
415 });
416 }
417
418 if (cmd.notes !== null) {
419 fields.push({
420 name: "Notes",
421 value: cmd.notes
422 });
423 }
424
425 await msg.reply({
426 embeds: [
427 new MessageEmbed()
428 .setTitle(`${app.config.get('prefix')}${cmd.name}`)
429 .setDescription(cmd.description !== null ? cmd.description : cmd.shortBrief)
430 .addFields(fields)
431 ]
432 });
433 }
434 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26