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

Annotation of /trunk/commands/help.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (hide annotations)
Mon Jul 29 17:28:17 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 15495 byte(s)
Improved AFK engine
1 rakin 11 const { MessageActionRow, MessageButton } = require("discord.js");
2     const MessageEmbed = require("../src/MessageEmbed");
3     const { escapeRegex } = require("../src/util");
4    
5     module.exports = {
6 rakin 30 version: "1.4.1",
7 rakin 11 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 rakin 30 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 rakin 11 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 rakin 26 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 rakin 11 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 rakin 26 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 rakin 11 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 rakin 27 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 rakin 11 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: 'unban',
269     shortBrief: "Unban a user from this server.",
270     description: null,
271     structure: "<UserID>",
272     example: "`%%unban 2946255269594753792`",
273     notes: null
274     },
275     {
276     name: 'unlock',
277 rakin 16 shortBrief: "Unlock a specific channel.",
278 rakin 11 description: "Makes the given channel writable for the general members. If no channel is present, the current channel is unlocked.",
279     structure: "[ChannelID|ChannelMention] [...options]",
280     example: "`%%unlock 385753607325075320`\n`%%unlock #general`\n`%%unlock`",
281     notes: null,
282     options: {
283     "--no-send": "Do not send a confirmation message to the locked channel",
284 rakin 16 "--everyone": "Unlock the channels for @everyone rather than the general role",
285 rakin 11 }
286     },
287     {
288     name: 'unlockall',
289     shortBrief: "Unlock all the channels given in the configuration.",
290     description: "Makes the given channels writable for the general members.",
291     structure: "[...options]",
292     example: "`%%unlockall --no-send\n`%%unlockall`\n`%%unlockall --everyone`",
293     notes: null,
294     options: {
295     "--no-send": "Do not send a confirmation message to the locked channel",
296     "--everyone": "Lock the channels for @everyone rather than the general role",
297 rakin 21 "--raid": "Unlock all Raid-locked channels"
298 rakin 11 }
299     },
300     {
301     name: 'unmute',
302 rakin 16 shortBrief: "Unmute someone in this server.",
303 rakin 11 description: null,
304     structure: "<UserID|Mention>",
305     example: "`%%unmute 385753607325075320`\n`%%unmute @Someone You are spamming a lot`",
306     notes: null
307     },
308     {
309     name: 'warn',
310     shortBrief: "Warn someone in this server.",
311     description: null,
312     structure: "<UserID|Mention> [Reason]",
313     example: "`%%warn 385753607325075320`\n`%%warn @Someone You are spamming a lot`",
314     notes: null
315     },
316     {
317     name: 'warndel',
318     shortBrief: "Delete a warning.",
319     description: null,
320     structure: "<ID>",
321     example: "`%%warndel 39`",
322     notes: null
323     },
324     {
325     name: 'warning',
326     shortBrief: "Show a warning.",
327     description: null,
328     structure: "<ID>",
329     example: "`%%warning 39`",
330     notes: null
331     },
332     {
333     name: 'warnings',
334     shortBrief: "Show all warnings.",
335     description: "Show all warnings in this server. Passing an user will only show their warnings.",
336     structure: "[UserId|Mention]",
337     example: "`%%warnings`\n`%%warnings 948489127957979253978538`",
338     notes: null
339     },
340     ],
341     async render() {
342     let string = '';
343    
344     for (let cmd of this.commands) {
345     string += `\n\n**${cmd.name}**\n${cmd.shortBrief}`;
346     }
347    
348     return string;
349     },
350     async handle(msg, cm) {
351     if (typeof cm.args[0] === 'undefined') {
352     // await msg.reply({
353     // embeds: [
354     // new MessageEmbed()
355     // .setColor('#f14a60')
356     // .setDescription(`This command requires at least one argument.`)
357     // ]
358     // });
359    
360     await msg.reply({
361     embeds: [
362     new MessageEmbed()
363     .setDescription("The command list. Run `" + app.config.get('prefix') + "help <commandName>` for more information about a specific command.\n" + await this.render())
364     .setTitle('Help')
365     ],
366     });
367    
368     return;
369     }
370    
371     const cmd = this.commands.find(c => c.name === cm.args[0]);
372    
373     if (!cmd) {
374     await msg.reply({
375     embeds: [
376     new MessageEmbed()
377     .setColor('#f14a60')
378     .setDescription(`Invalid command \`${cm.args[0]}\`.`)
379     ]
380     });
381    
382     return;
383     }
384    
385     let fields = [
386     {
387     name: "Usage",
388     value: `\`${app.config.get('prefix')}${cmd.name}\`` + (cmd.structure.trim() !== '' ? ` \`${cmd.structure}\`` : '')
389     },
390     {
391     name: 'Examples',
392     value: cmd.example.replace(/\%\%/g, app.config.get('prefix'))
393     }
394     ];
395    
396     if (cmd.options !== undefined) {
397     let str = '';
398    
399     for (let opt in cmd.options)
400     str += `\`${opt}\` - ${cmd.options[opt]}\n`;
401    
402     str = str.substring(0, str.length - 1);
403    
404     fields.push({
405     name: 'Options',
406     value: str
407     });
408     }
409    
410     if (cmd.notes !== null) {
411     fields.push({
412     name: "Notes",
413     value: cmd.notes
414     });
415     }
416    
417     await msg.reply({
418     embeds: [
419     new MessageEmbed()
420     .setTitle(`${app.config.get('prefix')}${cmd.name}`)
421     .setDescription(cmd.description !== null ? cmd.description : cmd.shortBrief)
422     .addFields(fields)
423     ]
424     });
425     }
426     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26