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