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

Contents of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 63 - (show annotations)
Mon Jul 29 17:28:26 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 15126 byte(s)
Fixed slash command issue
1 #!/bin/node
2
3 const { SlashCommandBuilder } = 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 } = require('discord.js');
9 const path = require('path');
10
11 if (existsSync(path.join(__dirname, '.env'))) {
12 config();
13 }
14 else {
15 process.env.ENV = 'prod';
16 }
17
18 const { CLIENT_ID, GUILD_ID, TOKEN } = process.env;
19
20 const commands = [
21 // SETTINGS
22 new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')
23 .addStringOption(option => option.setName('command').setDescription("The command")),
24 new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),
25 new SlashCommandBuilder().setName('system').setDescription('Show the system status'),
26 new SlashCommandBuilder().setName('restart').setDescription('Restart the system'),
27
28 // INFORMATION
29 new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),
30 new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')
31 .addUserOption(option => option.setName('user').setDescription('The user')),
32 new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')
33 .addUserOption(option => option.setName('user').setDescription('The user')),
34 new SlashCommandBuilder().setName('rolelist').setDescription('List all roles or show info about a role')
35 .addUserOption(option => option.setName('role').setDescription('The role')),
36
37 // AUTOMATION
38 new SlashCommandBuilder().setName('ballot').setDescription('Ballot engine')
39 .addSubcommand(subcommand =>
40 subcommand
41 .setName('create')
42 .setDescription('Send a ballot/poll message for collecting votes')
43 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
44 .addBooleanOption(option => option.setName('anonymous').setDescription('If this is set to true then the syetem won\'t show your username'))
45 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')))
46 .addSubcommand(subcommand =>
47 subcommand
48 .setName('view')
49 .setDescription('Get information/stats about a ballot')
50 .addIntegerOption(option => option.setName('id').setDescription('The ballot ID'))),
51
52 new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),
53
54 new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')
55 .addStringOption(option => option.setName('time').setDescription('The time interval').setRequired(true))
56 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
57 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
58
59 new SlashCommandBuilder().setName('expire').setDescription('Expire (delete) a message after a certain amount of time')
60 .addStringOption(option => option.setName('time').setDescription('The time interval').setRequired(true))
61 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
62 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
63
64 new SlashCommandBuilder().setName('expiresc').setDescription('Schedule and expire (delete) a message after a certain amount of time')
65 .addStringOption(option => option.setName('send-after').setDescription('The time after the message should be sent').setRequired(true))
66 .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)
67 .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
68 .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')),
69
70 // FUN
71 new SlashCommandBuilder().setName('cat').setDescription('Fetch a random kitty image'),
72
73 new SlashCommandBuilder().setName('dog').setDescription('Fetch a random doggy image'),
74
75 new SlashCommandBuilder().setName('joke').setDescription('Fetch a random joke from the Joke API'),
76
77 new SlashCommandBuilder().setName('httpcat').setDescription('Fetch a funny cat meme associated with an HTTP status code')
78 .addIntegerOption(option => option.setName('status').setDescription('The HTTP status Code').setRequired(true).setMinValue(100).setMaxValue(599)),
79
80 new SlashCommandBuilder().setName('httpdog').setDescription('Fetch a funny dog meme associated with an HTTP status code')
81 .addIntegerOption(option => option.setName('status').setDescription('The HTTP status Code').setRequired(true).setMinValue(100).setMaxValue(599)),
82
83 new SlashCommandBuilder().setName('pixabay').setDescription('Search & fetch images from the Pixabay API')
84 .addSubcommand(subcommand =>
85 subcommand
86 .setName('image')
87 .setDescription('Get any type of image')
88 .addStringOption(option => option.setName('query').setDescription('Search query')))
89 .addSubcommand(subcommand =>
90 subcommand
91 .setName('photo')
92 .setDescription('Get photos')
93 .addStringOption(option => option.setName('query').setDescription('Search query')))
94 .addSubcommand(subcommand =>
95 subcommand
96 .setName('illustration')
97 .setDescription('Get illustrations')
98 .addStringOption(option => option.setName('query').setDescription('Search query')))
99 .addSubcommand(subcommand =>
100 subcommand
101 .setName('vector')
102 .setDescription('Get vectors')
103 .addStringOption(option => option.setName('query').setDescription('Search query'))),
104
105 // UTILS
106 new SlashCommandBuilder().setName('snippet').setDescription('Snippets are instant custom messages')
107 .addSubcommand(subcommand =>
108 subcommand
109 .setName('get')
110 .setDescription('Get a snippet')
111 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true)))
112 .addSubcommand(subcommand =>
113 subcommand
114 .setName('create')
115 .setDescription('Create a snippet')
116 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true))
117 .addStringOption(option => option.setName('content').setDescription('Snippet message content').setRequired(true))
118 .addAttachmentOption(option => option.setName('file').setDescription('Snippet message file')))
119 .addSubcommand(subcommand =>
120 subcommand
121 .setName('rename')
122 .setDescription('Rename a snippet')
123 .addStringOption(option => option.setName('old-name').setDescription('The old snippet name').setRequired(true))
124 .addStringOption(option => option.setName('new-name').setDescription('The new name').setRequired(true)))
125 .addSubcommand(subcommand =>
126 subcommand
127 .setName('delete')
128 .setDescription('Delete a snippet')
129 .addStringOption(option => option.setName('name').setDescription('The snippet name').setRequired(true))),
130
131 new SlashCommandBuilder().setName('afk').setDescription('Set your AFK status')
132 .addStringOption(option => option.setName('reason').setDescription("The reason for going AFK")),
133
134 new SlashCommandBuilder().setName('announce').setDescription('Announce something')
135 .addStringOption(option => option.setName('content').setDescription("The announcemnt message content")),
136
137 // MODERATION
138 new SlashCommandBuilder().setName('ban').setDescription('Ban a user')
139 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
140 .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))
141 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user").setMinValue(0).setMaxValue(7)),
142
143 new SlashCommandBuilder().setName('massban').setDescription('Ban multiple users')
144 .addStringOption(option => option.setName('users').setDescription("The user IDs (separated by spaces)").setRequired(true))
145 .addStringOption(option => option.setName('reason').setDescription("The reason for banning"))
146 .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of these users").setMinValue(0).setMaxValue(7)),
147
148 new SlashCommandBuilder().setName('kick').setDescription('Kick a member')
149 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
150 .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),
151
152 new SlashCommandBuilder().setName('bean').setDescription('Bean a member')
153 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
154 .addStringOption(option => option.setName('reason').setDescription("The reason for beaning this user")),
155
156 new SlashCommandBuilder().setName('warn').setDescription('Warn a member')
157 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
158 .addStringOption(option => option.setName('reason').setDescription("The reason for warning this user")),
159
160 new SlashCommandBuilder().setName('note').setDescription('Take a note for a member')
161 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
162 .addStringOption(option => option.setName('note').setDescription("The note content").setRequired(true)),
163
164 new SlashCommandBuilder().setName('mute').setDescription('Mute a member')
165 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
166 .addStringOption(option => option.setName('reason').setDescription("The reason for muting this user"))
167 .addStringOption(option => option.setName('time').setDescription("Mute duration")),
168
169 new SlashCommandBuilder().setName('unmute').setDescription('Unmute a member')
170 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
171
172 new SlashCommandBuilder().setName('unban').setDescription('Unban a user')
173 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
174
175 new SlashCommandBuilder().setName('warndel').setDescription('Delete a warning')
176 .addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)),
177
178 new SlashCommandBuilder().setName('warning').setDescription('Get information about a warning')
179 .addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)),
180
181 new SlashCommandBuilder().setName('noteget').setDescription('Get information about a note')
182 .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
183
184 new SlashCommandBuilder().setName('notedel').setDescription('Delete a note')
185 .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
186
187 new SlashCommandBuilder().setName('warnings').setDescription('Fetch all warnings')
188 .addUserOption(option => option.setName('member').setDescription("Show warnings for only this member")),
189
190 new SlashCommandBuilder().setName('notes').setDescription('Fetch all notes for a user')
191 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
192
193 new SlashCommandBuilder().setName('history').setDescription('Fetch all moderation history for a user')
194 .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
195
196 new SlashCommandBuilder().setName('clear').setDescription('Clear all messages in the current channel for a user')
197 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
198
199 new SlashCommandBuilder().setName('echo').setDescription('Re-send a message from the bot system')
200 .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
201 .addChannelOption(option => option.setName('channel').setDescription("The channel where the message should be sent")),
202
203 new SlashCommandBuilder().setName('lock').setDescription('Lock a channel')
204 .addRoleOption(option => option.setName('role').setDescription("Lock channel for the given role. Default is @everyone"))
205 .addChannelOption(option => option.setName('channel').setDescription("The channel that will be locked. Default is the current channel")),
206
207 new SlashCommandBuilder().setName('setchperms').setDescription('Set permissions for channels')
208 .addChannelOption(option => option.setName('channel').setDescription("The channel that (or its children) will be updated").setRequired(true))
209 .addRoleOption(option => option.setName('role').setDescription("Lock channel for the given role.").setRequired(true))
210 .addStringOption(option => option.setName('permission').setDescription("The permission codename").setRequired(true))
211 .addStringOption(option => option.setName('value').setDescription("The permission value").addChoices(...[
212 {
213 name: 'Allow',
214 value: 'true'
215 },
216 {
217 name: 'Deny',
218 value: 'false',
219 },
220 {
221 name: 'Default',
222 value: 'null',
223 }
224 ]).setRequired(true)),
225
226 new SlashCommandBuilder().setName('lockall').setDescription('Lock multiple channels')
227 .addRoleOption(option => option.setName('role').setDescription("Lock channels for the given role. Default is @everyone"))
228 .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be locked. Default is `false`")),
229
230 new SlashCommandBuilder().setName('unlockall').setDescription('Unlock multiple channels')
231 .addRoleOption(option => option.setName('role').setDescription("Unlock channels for the given role. Default is @everyone"))
232 .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permissions to `true`"))
233 .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be unlocked. Default is `false`")),
234
235 new SlashCommandBuilder().setName('unlock').setDescription('Unlock a channel')
236 .addRoleOption(option => option.setName('role').setDescription("Unlock channel for the given role. Default is @everyone"))
237 .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permission to `true`"))
238 .addChannelOption(option => option.setName('channel').setDescription("The channel that will be unlocked. Default is the current channel")),
239
240 new SlashCommandBuilder().setName('send').setDescription('Send a DM to a user')
241 .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
242 .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
243 ].map(command => command.toJSON());
244
245 const rest = new REST({ version: '9' }).setToken(TOKEN);
246
247 rest.put(Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), { body: commands })
248 .then(() => console.log('Successfully registered application commands.'))
249 .catch(console.error);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26