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

Contents of /trunk/commands/help.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 41 - (show annotations)
Mon Jul 29 17:28:19 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 15283 byte(s)
Improved edited message scanning and added file filters
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.4",
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: "Ban a user. `-d` is the number days old messages to delete. It must be in range 0-7. If `-d` is passed then an argument after it is required.",
36 structure: "<UserID|Mention> [-d=DAYS] [Reason]",
37 example: "`%%ban 385753607325075320`\n`%%ban @Someone You are spamming a lot`\n`%%ban @Someone -d 5`\n`%%ban 385753607325075320 -d 5 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 }
146 },
147 {
148 name: 'lockall',
149 shortBrief: "Lock all the channels given in the configuration.",
150 description: "Makes the given channels read-only for the general members.",
151 structure: "[...options]",
152 example: "`%%lockall --no-send\n`%%lockall`\n`%%lockall --everyone`",
153 notes: null,
154 options: {
155 "--no-send": "Do not send a confirmation message to the locked channel",
156 }
157 },
158 {
159 name: 'mod-role',
160 shortBrief: "Set the moderator role.",
161 description: null,
162 structure: "<RoleID|RoleMention>",
163 example: "`%%mod-role 937923625698638`\n`%%mod-role @Moderator`",
164 notes: null
165 },
166 {
167 name: 'mute',
168 shortBrief: "Mute someone in this server.",
169 description: null,
170 structure: "<UserID|Mention> [-t=DURATION] [Reason]",
171 example: "`%%mute 385753607325075320`\n`%%mute @Someone You are spamming a lot`\n`%%mute @Someone -t 10m You are spamming a lot`",
172 options: {
173 "-t": "Set the mute duration"
174 },
175 notes: null
176 },
177 {
178 name: 'muted-role',
179 shortBrief: "Set the muted role.",
180 description: null,
181 structure: "<RoleID|RoleMention>",
182 example: "`%%muted-role 937923625698638`\n`%%muted-role @Muted`",
183 notes: null
184 },
185 {
186 name: 'mvsnippet',
187 shortBrief: "Rename a snippet.",
188 description: null,
189 structure: "<oldName> <newName>",
190 example: "`%%mvsnippet abc bca`",
191 notes: null
192 },
193 {
194 name: 'note',
195 shortBrief: "Take a note about an user.",
196 description: null,
197 structure: "<UserID|UserMention> <note>",
198 example: "`%%note @Someone Simple note.`",
199 notes: null
200 },
201 {
202 name: 'notedel',
203 shortBrief: "Delete a note.",
204 description: null,
205 structure: "<NoteID>",
206 example: "`%%notedel 922`",
207 notes: null
208 },
209 {
210 name: 'noteget',
211 shortBrief: "Get a note.",
212 description: null,
213 structure: "<NoteID>",
214 example: "`%%noteget 922`",
215 notes: null
216 },
217 {
218 name: 'notes',
219 shortBrief: "Get all notes for a specific user.",
220 description: null,
221 structure: "<UserID|UserMention>",
222 example: "`%%notes @Someone`",
223 notes: null
224 },
225 {
226 name: 'pixabay',
227 shortBrief: "Fetch images from Pixabay.",
228 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.",
229 structure: "<subcommand> [query]",
230 example: "`%%pixabay image`\n`%%pixabay photo birds`",
231 notes: null
232 },
233 {
234 name: 'prefix',
235 shortBrief: "Change the bot prefix.",
236 description: null,
237 structure: "<NewPrefix>",
238 example: "`%%prefix -`",
239 notes: null
240 },
241 {
242 name: 'setconfig',
243 shortBrief: "Change the bot configuration keys.",
244 description: null,
245 structure: "<key> <value>",
246 example: "`%%setconfig debug true`",
247 notes: null
248 },
249 {
250 name: 'send',
251 shortBrief: "Send a DM to a user.",
252 description: null,
253 structure: "<UserID|Mention> <content>",
254 example: "`%%send 278358918549759428 Hello world`\n`%%send @Someone Hello world`",
255 notes: null
256 },
257 {
258 name: 'spamfilter',
259 shortBrief: "Change the spam filter configuration keys.",
260 description: null,
261 structure: "<key> <value>",
262 example: "`%%spamfilter include #general`",
263 notes: null
264 },
265 {
266 name: 'stats',
267 shortBrief: "Show the server stats.",
268 description: null,
269 structure: "",
270 example: "`%%stats",
271 notes: null
272 },
273 {
274 name: 'unban',
275 shortBrief: "Unban a user from this server.",
276 description: null,
277 structure: "<UserID>",
278 example: "`%%unban 2946255269594753792`",
279 notes: null
280 },
281 {
282 name: 'unlock',
283 shortBrief: "Unlock a specific channel.",
284 description: "Makes the given channel writable for the general members. If no channel is present, the current channel is unlocked.",
285 structure: "[ChannelID|ChannelMention] [...options]",
286 example: "`%%unlock 385753607325075320`\n`%%unlock #general`\n`%%unlock`",
287 notes: null,
288 options: {
289 "--no-send": "Do not send a confirmation message to the locked channel",
290 }
291 },
292 {
293 name: 'unlockall',
294 shortBrief: "Unlock all the channels given in the configuration.",
295 description: "Makes the given channels writable for the general members.",
296 structure: "[...options]",
297 example: "`%%unlockall --no-send\n`%%unlockall`\n`%%unlockall --everyone`",
298 notes: null,
299 options: {
300 "--no-send": "Do not send a confirmation message to the locked channel",
301 "--raid": "Unlock all Raid-locked channels"
302 }
303 },
304 {
305 name: 'unmute',
306 shortBrief: "Unmute someone in this server.",
307 description: null,
308 structure: "<UserID|Mention>",
309 example: "`%%unmute 385753607325075320`\n`%%unmute @Someone You are spamming a lot`",
310 notes: null
311 },
312 {
313 name: 'warn',
314 shortBrief: "Warn someone in this server.",
315 description: null,
316 structure: "<UserID|Mention> [Reason]",
317 example: "`%%warn 385753607325075320`\n`%%warn @Someone You are spamming a lot`",
318 notes: null
319 },
320 {
321 name: 'warndel',
322 shortBrief: "Delete a warning.",
323 description: null,
324 structure: "<ID>",
325 example: "`%%warndel 39`",
326 notes: null
327 },
328 {
329 name: 'warning',
330 shortBrief: "Show a warning.",
331 description: null,
332 structure: "<ID>",
333 example: "`%%warning 39`",
334 notes: null
335 },
336 {
337 name: 'warnings',
338 shortBrief: "Show all warnings.",
339 description: "Show all warnings in this server. Passing an user will only show their warnings.",
340 structure: "[UserId|Mention]",
341 example: "`%%warnings`\n`%%warnings 948489127957979253978538`",
342 notes: null
343 },
344 ],
345 async render() {
346 let string = '';
347
348 for (let cmd of this.commands) {
349 string += `\n\n**${cmd.name}**\n${cmd.shortBrief}`;
350 }
351
352 return string;
353 },
354 async handle(msg, cm) {
355 if (typeof cm.args[0] === 'undefined') {
356 await msg.reply({
357 embeds: [
358 new MessageEmbed()
359 .setDescription("The command list. Run `" + app.config.get('prefix') + "help <commandName>` for more information about a specific command.\n" + await this.render())
360 .setTitle('Help')
361 ],
362 });
363
364 return;
365 }
366
367 const cmd = this.commands.find(c => c.name === cm.args[0]);
368
369 if (!cmd) {
370 await msg.reply({
371 embeds: [
372 new MessageEmbed()
373 .setColor('#f14a60')
374 .setDescription(`Invalid command \`${cm.args[0]}\`.`)
375 ]
376 });
377
378 return;
379 }
380
381 let fields = [
382 {
383 name: "Usage",
384 value: `\`${app.config.get('prefix')}${cmd.name}\`` + (cmd.structure.trim() !== '' ? ` \`${cmd.structure}\`` : '')
385 },
386 {
387 name: 'Examples',
388 value: cmd.example.replace(/\%\%/g, app.config.get('prefix'))
389 }
390 ];
391
392 if (cmd.options !== undefined) {
393 let str = '';
394
395 for (let opt in cmd.options)
396 str += `\`${opt}\` - ${cmd.options[opt]}\n`;
397
398 str = str.substring(0, str.length - 1);
399
400 fields.push({
401 name: 'Options',
402 value: str
403 });
404 }
405
406 if (cmd.notes !== null) {
407 fields.push({
408 name: "Notes",
409 value: cmd.notes
410 });
411 }
412
413 await msg.reply({
414 embeds: [
415 new MessageEmbed()
416 .setTitle(`${app.config.get('prefix')}${cmd.name}`)
417 .setDescription(cmd.description !== null ? cmd.description : cmd.shortBrief)
418 .addFields(fields)
419 ]
420 });
421 }
422 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26