/[sudobot]/trunk/deploy-commands.js
ViewVC logotype

Contents of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 261 - (show annotations)
Mon Jul 29 17:29:15 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 23562 byte(s)
feat(commands): add hash command for hashing text content
1 #!/bin/node
2
3 const { SlashCommandBuilder, ContextMenuCommandBuilder } = require('@discordjs/builders');
4 const { REST } = require('@discordjs/rest');
5 const { Routes } = require('discord-api-types/v9');
6 const { config } = require('dotenv');
7 const { existsSync } = require('fs');
8 const { Permissions, ApplicationCommand } = require('discord.js');
9 const path = require('path');
10 const { ActivityType, ApplicationCommandType } = require('discord-api-types/v10');
11
12 if (existsSync(path.join(__dirname, '.env'))) {
13 config();
14 }
15 else {
16 process.env.ENV = 'prod';
17 }
18
19 const { CLIENT_ID, GUILD_ID, TOKEN } = process.env;
20
21 let commands = [
22 // SETTINGS
23 new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')
24 .addStringOption(option => option.setName('command').setDescription("The command")),
25 new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),
26 new SlashCommandBuilder().setName('system').setDescription('Show the system status'),
27 new SlashCommandBuilder().setName('restart').setDescription('Restart the system'),
28 new SlashCommandBuilder().setName('setstatus').setDescription('Set status for the bot system')
29 .addStringOption(option => option.setName('activity').setDescription('The activity').setRequired(true))
30 .addStringOption(option => option.setName('status').setDescription('The status').setChoices(...[
31 {
32 name: 'Online',
33 value: 'online'
34 },
35 {
36 name: 'Idle',
37 value: 'idle'
38 },
39 {
40 name: 'DND',
41 value: 'dnd'
42 },
43 {
44 name: 'Invisible',
45 value: 'invisible'
46 }
47 ]))
48 .addStringOption(option => option.setName('type').setDescription('The activity type').setChoices(...[
49 {
50 name: 'Playing',
51 value: 'PLAYING'
52 },
53 {
54 name: 'Watching',
55 value: 'WATCHING'
56 },
57 {
58 name: 'Competing',
59 value: 'COMPETING'
60 }
61 ])),
62 new SlashCommandBuilder().setName('config').setDescription('View/change the system settings for this server')
63 .addStringOption(option => option.setName('key').setDescription('The setting key (e.g. spam_filter.enabled)').setRequired(true))
64 .addStringOption(option => option.setName('value').setDescription('New value for the setting')),
65
66 // INFORMATION
67 new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),
68 new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')
69 .addUserOption(option => option.setName('user').setDescription('The user')),
70 new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')
71 .addUserOption(option => option.setName('user').setDescription('The user')),
72 new SlashCommandBuilder().setName('rolelist').setDescription('List all roles or show info about a role')
73 .addRoleOption(option => option.setName('role').setDescription('The role'))
74 .addIntegerOption(option => option.setName('page').setDescription('The page number')),
75
76 // AUTOMATION
77 new SlashCommandBuilder().setName('ballot').setDescription('Ballot engine')
78 .addSubcommand(subcommand =>
79 subcommand
80 .setName('create')
81 .setDescription('Send a ballot/poll message for collecting votes')
82 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
83 .addBooleanOption(option => option.setName('anonymous').setDescription('If this is set to true then the syetem won\'t show your username'))
84 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')))
85 .addSubcommand(subcommand =>
86 subcommand
87 .setName('view')
88 .setDescription('Get information/stats about a ballot')
89 .addIntegerOption(option => option.setName('id').setDescription('The ballot ID'))),
90
91 new SlashCommandBuilder().setName('embed').setDescription('Make an embed')
92 .addSubcommand(subcmd =>
93 subcmd.setName("send").setDescription("Make and send an embed")
94 .addStringOption(option => option.setName('author_name').setDescription('The embed author name'))
95 .addStringOption(option => option.setName('author_iconurl').setDescription('The embed author icon URL'))
96 .addStringOption(option => option.setName('title').setDescription('The embed title'))
97 .addStringOption(option => option.setName('description').setDescription('The embed description'))
98 .addStringOption(option => option.setName('thumbnail').setDescription('The embed thumbnail URL'))
99 .addStringOption(option => option.setName('image').setDescription('The embed image attachment URL'))
100 .addStringOption(option => option.setName('video').setDescription('The embed video attachment URL'))
101 .addStringOption(option => option.setName('footer_text').setDescription('The embed footer text'))
102 .addStringOption(option => option.setName('footer_iconurl').setDescription('The embed footer icon URL'))
103 .addStringOption(option => option.setName('timestamp').setDescription('The embed timestamp, use \'current\' to set current date'))
104 .addStringOption(option => option.setName('color').setDescription('The embed color (default is #007bff)'))
105 .addStringOption(option => option.setName('url').setDescription('The embed URL'))
106 .addStringOption(option => option.setName('fields').setDescription('The embed fields, should be in `Field 1: Value 1, Field 2: Value 2` format'))
107 )
108 .addSubcommand(subcmd =>
109 subcmd.setName("schema").setDescription("Make and send an embed schema representation")
110 .addStringOption(option => option.setName('author_name').setDescription('The embed author name'))
111 .addStringOption(option => option.setName('author_iconurl').setDescription('The embed author icon URL'))
112 .addStringOption(option => option.setName('title').setDescription('The embed title'))
113 .addStringOption(option => option.setName('description').setDescription('The embed description'))
114 .addStringOption(option => option.setName('thumbnail').setDescription('The embed thumbnail URL'))
115 .addStringOption(option => option.setName('image').setDescription('The embed image attachment URL'))
116 .addStringOption(option => option.setName('video').setDescription('The embed video attachment URL'))
117 .addStringOption(option => option.setName('footer_text').setDescription('The embed footer text'))
118 .addStringOption(option => option.setName('footer_iconurl').setDescription('The embed footer icon URL'))
119 .addStringOption(option => option.setName('timestamp').setDescription('The embed timestamp, use \'current\' to set current date'))
120 .addStringOption(option => option.setName('color').setDescription('The embed color (default is #007bff)'))
121 .addStringOption(option => option.setName('url').setDescription('The embed URL'))
122 .addStringOption(option => option.setName('fields').setDescription('The embed fields, should be in `Field 1: Value 1, Field 2: Value 2` format'))
123 )
124 .addSubcommand(subcmd =>
125 subcmd.setName("build").setDescription("Build an embed from schema")
126 .addStringOption(option => option.setName('json_schema').setDescription('The embed JSON schema'))
127 ),
128
129 new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),
130
131 new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')
132 .addStringOption(option => option.setName('time').setDescription('The time interval').setRequired(true))
133 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
134 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
135
136 new SlashCommandBuilder().setName('expire').setDescription('Expire (delete) a message after a certain amount of time')
137 .addStringOption(option => option.setName('time').setDescription('The time interval').setRequired(true))
138 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
139 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
140
141 new SlashCommandBuilder().setName('expiresc').setDescription('Schedule and expire (delete) a message after a certain amount of time')
142 .addStringOption(option => option.setName('send-after').setDescription('The time after the message should be sent').setRequired(true))
143 .addStringOption(option => option.setName('delete-after').setDescription('The time after the message should be deleted').setRequired(true)) // (the system will start counting this after the message gets sent)
144 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
145 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
146
147 // FUN
148 new SlashCommandBuilder().setName('cat').setDescription('Fetch a random kitty image'),
149
150 new SlashCommandBuilder().setName('dog').setDescription('Fetch a random doggy image'),
151
152 new SlashCommandBuilder().setName('joke').setDescription('Fetch a random joke from the Joke API'),
153
154 new SlashCommandBuilder().setName('httpcat').setDescription('Fetch a funny cat meme associated with an HTTP status code')
155 .addIntegerOption(option => option.setName('status').setDescription('The HTTP status Code').setRequired(true).setMinValue(100).setMaxValue(599)),
156
157 new SlashCommandBuilder().setName('httpdog').setDescription('Fetch a funny dog meme associated with an HTTP status code')
158 .addIntegerOption(option => option.setName('status').setDescription('The HTTP status Code').setRequired(true).setMinValue(100).setMaxValue(599)),
159
160 new SlashCommandBuilder().setName('pixabay').setDescription('Search & fetch images from the Pixabay API')
161 .addSubcommand(subcommand =>
162 subcommand
163 .setName('image')
164 .setDescription('Get any type of image')
165 .addStringOption(option => option.setName('query').setDescription('Search query')))
166 .addSubcommand(subcommand =>
167 subcommand
168 .setName('photo')
169 .setDescription('Get photos')
170 .addStringOption(option => option.setName('query').setDescription('Search query')))
171 .addSubcommand(subcommand =>
172 subcommand
173 .setName('illustration')
174 .setDescription('Get illustrations')
175 .addStringOption(option => option.setName('query').setDescription('Search query')))
176 .addSubcommand(subcommand =>
177 subcommand
178 .setName('vector')
179 .setDescription('Get vectors')
180 .addStringOption(option => option.setName('query').setDescription('Search query'))),
181
182 // UTILS
183 new SlashCommandBuilder().setName('snippet').setDescription('Snippets are instant custom messages')
184 .addSubcommand(subcommand =>
185 subcommand
186 .setName('get')
187 .setDescription('Get a snippet')
188 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true)))
189 .addSubcommand(subcommand =>
190 subcommand
191 .setName('create')
192 .setDescription('Create a snippet')
193 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true))
194 .addStringOption(option => option.setName('content').setDescription('Snippet message content').setRequired(true))
195 .addAttachmentOption(option => option.setName('file').setDescription('Snippet message file')))
196 .addSubcommand(subcommand =>
197 subcommand
198 .setName('rename')
199 .setDescription('Rename a snippet')
200 .addStringOption(option => option.setName('old-name').setDescription('The old snippet name').setRequired(true))
201 .addStringOption(option => option.setName('new-name').setDescription('The new name').setRequired(true)))
202 .addSubcommand(subcommand =>
203 subcommand
204 .setName('delete')
205 .setDescription('Delete a snippet')
206 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true))),
207
208 new SlashCommandBuilder().setName('afk').setDescription('Set your AFK status')
209 .addStringOption(option => option.setName('reason').setDescription("The reason for going AFK")),
210
211 new SlashCommandBuilder().setName('hash').setDescription('Generate hash for a string (text) data')
212 .addStringOption(option => option.setName('content').setDescription("The content to be hashed").setRequired(true))
213 .addStringOption(option =>
214 option
215 .setName('algorithm')
216 .setDescription("Hash algorithm")
217 .setChoices(
218 {
219 name: 'SHA1',
220 value: 'sha1'
221 },
222 {
223 name: 'SHA256',
224 value: 'sha256'
225 },
226 {
227 name: 'SHA512',
228 value: 'sha512'
229 },
230 {
231 name: 'MD5',
232 value: 'md5'
233 },
234 )
235 )
236 .addStringOption(option =>
237 option
238 .setName('digest')
239 .setDescription("Digest mode")
240 .setChoices(
241 {
242 name: 'HEX',
243 value: 'hex'
244 },
245 {
246 name: 'Base64',
247 value: 'base64'
248 },
249 {
250 name: 'Base64 URL',
251 value: 'base64url'
252 },
253 )
254 ),
255
256 new SlashCommandBuilder().setName('announce').setDescription('Announce something')
257 .addStringOption(option => option.setName('content').setDescription("The announcemnt message content")),
258
259 // MODERATION
260 new SlashCommandBuilder().setName('antijoin').setDescription('Enable antijoin system which will kick any new users joining the server'),
261
262 new SlashCommandBuilder().setName('ban').setDescription('Ban a user')
263 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
264 .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))
265 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user").setMinValue(0).setMaxValue(7)),
266
267 new SlashCommandBuilder().setName('softban').setDescription('Softban a user')
268 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
269 .addStringOption(option => option.setName('reason').setDescription("The reason for softbanning this user"))
270 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user (default is 7)").setMinValue(0).setMaxValue(7)),
271
272 new SlashCommandBuilder().setName('tempban').setDescription('Temporarily ban a user')
273 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
274 .addStringOption(option => option.setName('time').setDescription("TBan duration").setRequired(true))
275 .addStringOption(option => option.setName('reason').setDescription("The reason for softbanning this user"))
276 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user (default is 7)").setMinValue(0).setMaxValue(7)),
277
278 new SlashCommandBuilder().setName('massban').setDescription('Ban multiple users')
279 .addStringOption(option => option.setName('users').setDescription("The user IDs (separated by spaces)").setRequired(true))
280 .addStringOption(option => option.setName('reason').setDescription("The reason for banning"))
281 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of these users").setMinValue(0).setMaxValue(7)),
282
283 new SlashCommandBuilder().setName('kick').setDescription('Kick a member')
284 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
285 .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),
286
287 new SlashCommandBuilder().setName('shot').setDescription('Give a shot to a member')
288 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
289 .addStringOption(option => option.setName('reason').setDescription("The reason for giving shot to this user")),
290
291 new SlashCommandBuilder().setName('warn').setDescription('Warn a member')
292 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
293 .addStringOption(option => option.setName('reason').setDescription("The reason for warning this user")),
294
295 new SlashCommandBuilder().setName('note').setDescription('Take a note for a user')
296 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
297 .addStringOption(option => option.setName('note').setDescription("The note content").setRequired(true)),
298
299 new SlashCommandBuilder().setName('mute').setDescription('Mute a member')
300 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
301 .addStringOption(option => option.setName('reason').setDescription("The reason for muting this user"))
302 .addStringOption(option => option.setName('time').setDescription("Mute duration"))
303 .addBooleanOption(option => option.setName('hardmute').setDescription("Specify if the system should take out all roles of the user during the mute")),
304
305 new SlashCommandBuilder().setName('unmute').setDescription('Unmute a member')
306 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
307
308 new SlashCommandBuilder().setName('unban').setDescription('Unban a user')
309 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
310
311 new SlashCommandBuilder().setName('warning').setDescription('Clear, remove or view warnings')
312 .addSubcommand(subcmd => {
313 return subcmd.setName('view').setDescription('View information about a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));
314 })
315 .addSubcommand(subcmd => {
316 return subcmd.setName('remove').setDescription('Remove a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));
317 })
318 .addSubcommand(subcmd => {
319 return subcmd.setName('list').setDescription('List warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true));
320 })
321 .addSubcommand(subcmd => {
322 return subcmd.setName('clear').setDescription('Clear all warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true));
323 }),
324
325 new SlashCommandBuilder().setName('noteget').setDescription('Get information about a note')
326 .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
327
328 new SlashCommandBuilder().setName('notedel').setDescription('Delete a note')
329 .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
330
331 new SlashCommandBuilder().setName('notes').setDescription('Fetch all notes for a user')
332 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
333
334 new SlashCommandBuilder().setName('history').setDescription('Fetch all moderation history for a user')
335 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
336
337 new SlashCommandBuilder().setName('clear').setDescription('Clear messages in bulk')
338 .addUserOption(option => option.setName('user').setDescription("The user"))
339 .addIntegerOption(option => option.setName('count').setDescription("The amount of messages to delete").setMaxValue(400).setMinValue(0))
340 .addChannelOption(option => option.setName('channel').setDescription("The channel where the messages will be deleted")),
341
342 new SlashCommandBuilder().setName('echo').setDescription('Re-send a message from the bot system')
343 .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
344 .addChannelOption(option => option.setName('channel').setDescription("The channel where the message should be sent")),
345
346 new SlashCommandBuilder().setName('lock').setDescription('Lock a channel')
347 .addRoleOption(option => option.setName('role').setDescription("Lock channel for the given role. Default is @everyone"))
348 .addChannelOption(option => option.setName('channel').setDescription("The channel that will be locked. Default is the current channel")),
349
350 new SlashCommandBuilder().setName('setchperms').setDescription('Set permissions for channels')
351 .addChannelOption(option => option.setName('channel').setDescription("The channel that (or its children) will be updated").setRequired(true))
352 .addRoleOption(option => option.setName('role').setDescription("Lock channel for the given role.").setRequired(true))
353 .addStringOption(option => option.setName('permission').setDescription("The permission codename").setRequired(true).setAutocomplete(true))
354 .addStringOption(option => option.setName('value').setDescription("The permission value").addChoices(...[
355 {
356 name: 'Allow',
357 value: 'true'
358 },
359 {
360 name: 'Deny',
361 value: 'false',
362 },
363 {
364 name: 'Default',
365 value: 'null',
366 }
367 ]).setRequired(true)),
368
369 new SlashCommandBuilder().setName('lockall').setDescription('Lock multiple channels')
370 .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces"))
371 .addRoleOption(option => option.setName('role').setDescription("Lock channels for the given role. Default is @everyone"))
372 .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be locked. Default is `false`")),
373
374 new SlashCommandBuilder().setName('unlockall').setDescription('Unlock multiple channels')
375 .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces"))
376 .addRoleOption(option => option.setName('role').setDescription("Unlock channels for the given role. Default is @everyone"))
377 .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permissions to `true`"))
378 .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be unlocked. Default is `false`")),
379
380 new SlashCommandBuilder().setName('unlock').setDescription('Unlock a channel')
381 .addRoleOption(option => option.setName('role').setDescription("Unlock channel for the given role. Default is @everyone"))
382 .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permission to `true`"))
383 .addChannelOption(option => option.setName('channel').setDescription("The channel that will be unlocked. Default is the current channel")),
384
385 new SlashCommandBuilder().setName('send').setDescription('Send a DM to a user')
386 .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
387 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
388
389
390 new SlashCommandBuilder().setName('appeal').setDescription('Send us a messages about a punishment appeal')
391 ].map(command => command.toJSON());
392
393 let contextMenuCommands = [
394 new ContextMenuCommandBuilder().setName('Moderation History').setType(ApplicationCommandType.User),
395 new ContextMenuCommandBuilder().setName('Ban').setType(ApplicationCommandType.User),
396 new ContextMenuCommandBuilder().setName('Shot').setType(ApplicationCommandType.User),
397 new ContextMenuCommandBuilder().setName('Kick').setType(ApplicationCommandType.User),
398 ].map(command => command.toJSON());
399
400 commands = commands.concat(contextMenuCommands);
401
402 if (process.argv.includes('--clear')) {
403 commands = [];
404 contextMenuCommands = [];
405 }
406
407 const rest = new REST({ version: '9' }).setToken(TOKEN);
408
409 rest.put(Routes[process.argv.includes('--guild') ? 'applicationGuildCommands' : 'applicationCommands'](CLIENT_ID, GUILD_ID), { body: commands })
410 .then(() => console.log('Successfully registered application ' + (process.argv.includes('--guild') ? 'guild ' : '') + 'commands.'))
411 .catch(console.error);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26