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

Annotation of /trunk/commands/help.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26