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

Diff of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 125 by rakin, Mon Jul 29 17:28:41 2024 UTC revision 398 by rakin, Mon Jul 29 17:30:02 2024 UTC
# Line 1  Line 1 
1  #!/bin/node  #!/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');  const { SlashCommandBuilder, ContextMenuCommandBuilder } = require('@discordjs/builders');
23  const { REST } = require('@discordjs/rest');  const { REST } = require('@discordjs/rest');
24  const { Routes } = require('discord-api-types/v9');  const { Routes } = require('discord-api-types/v9');
# Line 23  let commands = [ Line 42  let commands = [
42      new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')      new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')
43          .addStringOption(option => option.setName('command').setDescription("The command")),          .addStringOption(option => option.setName('command').setDescription("The command")),
44      new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),      new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),
45        new SlashCommandBuilder().setName('eval').setDescription('Execute raw code in the runtime environment')
46            .addStringOption(option => option.setName('code').setDescription('The code to be executed').setRequired(true)),
47      new SlashCommandBuilder().setName('system').setDescription('Show the system status'),      new SlashCommandBuilder().setName('system').setDescription('Show the system status'),
48      new SlashCommandBuilder().setName('restart').setDescription('Restart the system'),      new SlashCommandBuilder().setName('restart').setDescription('Restart the system'),
49      new SlashCommandBuilder().setName('setstatus').setDescription('Set status for the bot system')      new SlashCommandBuilder().setName('setstatus').setDescription('Set status for the bot system')
# Line 59  let commands = [ Line 80  let commands = [
80                  value: 'COMPETING'                  value: 'COMPETING'
81              }              }
82          ])),          ])),
83        new SlashCommandBuilder().setName('config').setDescription('View/change the system settings for this server')
84            .addStringOption(option => option.setName('key').setDescription('The setting key (e.g. spam_filter.enabled)').setRequired(true).setAutocomplete(true))
85            .addStringOption(option => option.setName('value').setDescription('New value for the setting')),
86    
87      // INFORMATION      // INFORMATION
88      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),
89        new SlashCommandBuilder().setName('lookup').setDescription('Lookup something')
90            .addSubcommand(subcommand => subcommand.setName("user").setDescription("User lookup")
91                .addUserOption(option => option.setName("user").setDescription("The user to search").setRequired(true))
92                )
93                .addSubcommand(subcommand => subcommand.setName("guild").setDescription("Server/Guild lookup")
94                    .addStringOption(option => option.setName("guild_id").setDescription("The ID of the server/guild to lookup").setRequired(true))
95                )
96                .addSubcommand(subcommand => subcommand.setName("avatar").setDescription("Avatar lookup using Google Image Search")
97                    .addUserOption(option => option.setName("user").setDescription("The user to lookup").setRequired(true))
98                ),
99    
100      new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')      new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')
101          .addUserOption(option => option.setName('user').setDescription('The user')),          .addUserOption(option => option.setName('user').setDescription('The user')),
102      new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')      new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')
# Line 83  let commands = [ Line 118  let commands = [
118              subcommand              subcommand
119                  .setName('view')                  .setName('view')
120                  .setDescription('Get information/stats about a ballot')                  .setDescription('Get information/stats about a ballot')
121                  .addIntegerOption(option => option.setName('id').setDescription('The ballot ID'))),                  .addStringOption(option => option.setName('id').setDescription('The ballot ID'))),
122                    
123        new SlashCommandBuilder().setName('embed').setDescription('Make an embed')
124            .addSubcommand(subcmd =>
125                 subcmd.setName("send").setDescription("Make and send an embed")
126                    .addStringOption(option => option.setName('author_name').setDescription('The embed author name'))
127                    .addStringOption(option => option.setName('author_iconurl').setDescription('The embed author icon URL'))
128                    .addStringOption(option => option.setName('title').setDescription('The embed title'))
129                    .addStringOption(option => option.setName('description').setDescription('The embed description'))
130                    .addStringOption(option => option.setName('thumbnail').setDescription('The embed thumbnail URL'))
131                    .addStringOption(option => option.setName('image').setDescription('The embed image attachment URL'))
132                    .addStringOption(option => option.setName('video').setDescription('The embed video attachment URL'))
133                    .addStringOption(option => option.setName('footer_text').setDescription('The embed footer text'))
134                    .addStringOption(option => option.setName('footer_iconurl').setDescription('The embed footer icon URL'))
135                    .addStringOption(option => option.setName('timestamp').setDescription('The embed timestamp, use \'current\' to set current date'))
136                    .addStringOption(option => option.setName('color').setDescription('The embed color (default is #007bff)'))
137                    .addStringOption(option => option.setName('url').setDescription('The embed URL'))
138                    .addStringOption(option => option.setName('fields').setDescription('The embed fields, should be in `Field 1: Value 1, Field 2: Value 2` format'))
139            )
140            .addSubcommand(subcmd =>
141                 subcmd.setName("schema").setDescription("Make and send an embed schema representation")
142                    .addStringOption(option => option.setName('author_name').setDescription('The embed author name'))
143                    .addStringOption(option => option.setName('author_iconurl').setDescription('The embed author icon URL'))
144                    .addStringOption(option => option.setName('title').setDescription('The embed title'))
145                    .addStringOption(option => option.setName('description').setDescription('The embed description'))
146                    .addStringOption(option => option.setName('thumbnail').setDescription('The embed thumbnail URL'))
147                    .addStringOption(option => option.setName('image').setDescription('The embed image attachment URL'))
148                    .addStringOption(option => option.setName('video').setDescription('The embed video attachment URL'))
149                    .addStringOption(option => option.setName('footer_text').setDescription('The embed footer text'))
150                    .addStringOption(option => option.setName('footer_iconurl').setDescription('The embed footer icon URL'))
151                    .addStringOption(option => option.setName('timestamp').setDescription('The embed timestamp, use \'current\' to set current date'))
152                    .addStringOption(option => option.setName('color').setDescription('The embed color (default is #007bff)'))
153                    .addStringOption(option => option.setName('url').setDescription('The embed URL'))
154                    .addStringOption(option => option.setName('fields').setDescription('The embed fields, should be in `Field 1: Value 1, Field 2: Value 2` format'))
155            )
156            .addSubcommand(subcmd =>
157                 subcmd.setName("build").setDescription("Build an embed from schema")
158                    .addStringOption(option => option.setName('json_schema').setDescription('The embed JSON schema'))
159            ),
160    
161      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),
162    
163      new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')      new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')
# Line 167  let commands = [ Line 240  let commands = [
240      new SlashCommandBuilder().setName('afk').setDescription('Set your AFK status')      new SlashCommandBuilder().setName('afk').setDescription('Set your AFK status')
241          .addStringOption(option => option.setName('reason').setDescription("The reason for going AFK")),          .addStringOption(option => option.setName('reason').setDescription("The reason for going AFK")),
242            
243        new SlashCommandBuilder().setName('hash').setDescription('Generate hash for a string (text) data')
244            .addStringOption(option => option.setName('content').setDescription("The content to be hashed").setRequired(true))
245            .addStringOption(option =>
246                option
247                .setName('algorithm')
248                .setDescription("Hash algorithm")
249                .setChoices(
250                    {
251                        name: 'SHA1',
252                        value: 'sha1'
253                    },
254                    {
255                        name: 'SHA256',
256                        value: 'sha256'
257                    },
258                    {
259                        name: 'SHA512',
260                        value: 'sha512'
261                    },
262                    {
263                        name: 'MD5',
264                        value: 'md5'
265                    },
266                )
267            )
268            .addStringOption(option =>
269                option
270                .setName('digest')
271                .setDescription("Digest mode")
272                .setChoices(
273                    {
274                        name: 'HEX',
275                        value: 'hex'
276                    },
277                    {
278                        name: 'Base64',
279                        value: 'base64'
280                    },
281                    {
282                        name: 'Base64 URL',
283                        value: 'base64url'
284                    },
285                )
286            ),
287        
288      new SlashCommandBuilder().setName('announce').setDescription('Announce something')      new SlashCommandBuilder().setName('announce').setDescription('Announce something')
289          .addStringOption(option => option.setName('content').setDescription("The announcemnt message content")),          .addStringOption(option => option.setName('content').setDescription("The announcemnt message content")),
290    
291      // MODERATION      // MODERATION
292        new SlashCommandBuilder().setName('antijoin').setDescription('Enable antijoin system which will kick any new users joining the server'),
293    
294      new SlashCommandBuilder().setName('ban').setDescription('Ban a user')      new SlashCommandBuilder().setName('ban').setDescription('Ban a user')
295          .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))          .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true))
296          .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))          .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))
# Line 196  let commands = [ Line 316  let commands = [
316          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
317          .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),          .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),
318    
319      new SlashCommandBuilder().setName('bean').setDescription('Bean a member')      new SlashCommandBuilder().setName('shot').setDescription('Give a shot to a member')
320          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
321          .addStringOption(option => option.setName('reason').setDescription("The reason for beaning this user")),          .addStringOption(option => option.setName('reason').setDescription("The reason for giving shot to this user"))
322            .addBooleanOption(option => option.setName('anonymous').setDescription("Prevents sending your name as the 'Doctor' of the shot")),
323    
324      new SlashCommandBuilder().setName('warn').setDescription('Warn a member')      new SlashCommandBuilder().setName('warn').setDescription('Warn a member')
325          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
# Line 222  let commands = [ Line 343  let commands = [
343    
344      new SlashCommandBuilder().setName('warning').setDescription('Clear, remove or view warnings')      new SlashCommandBuilder().setName('warning').setDescription('Clear, remove or view warnings')
345          .addSubcommand(subcmd => {          .addSubcommand(subcmd => {
346              return subcmd.setName('view').setDescription('View information about a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));              return subcmd.setName('view').setDescription('View information about a warning').addStringOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));
347          })          })
348          .addSubcommand(subcmd => {          .addSubcommand(subcmd => {
349              return subcmd.setName('remove').setDescription('Remove a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));              return subcmd.setName('remove').setDescription('Remove a warning').addStringOption(option => option.setName('id').setDescription("The warning ID").setRequired(true));
350          })          })
351          .addSubcommand(subcmd => {          .addSubcommand(subcmd => {
352              return subcmd.setName('list').setDescription('List warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true));              return subcmd.setName('list').setDescription('List warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true));
# Line 279  let commands = [ Line 400  let commands = [
400          ]).setRequired(true)),          ]).setRequired(true)),
401    
402      new SlashCommandBuilder().setName('lockall').setDescription('Lock multiple channels')      new SlashCommandBuilder().setName('lockall').setDescription('Lock multiple channels')
403          .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces").setRequired(true))          .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces"))
404          .addRoleOption(option => option.setName('role').setDescription("Lock channels for the given role. Default is @everyone"))          .addRoleOption(option => option.setName('role').setDescription("Lock channels for the given role. Default is @everyone"))
405          .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be locked. Default is `false`")),          .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be locked. Default is `false`")),
406    
407      new SlashCommandBuilder().setName('unlockall').setDescription('Unlock multiple channels')      new SlashCommandBuilder().setName('unlockall').setDescription('Unlock multiple channels')
408          .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces").setRequired(true))          .addStringOption(option => option.setName('channels').setDescription("The channels, must be separated by spaces"))
409          .addRoleOption(option => option.setName('role').setDescription("Unlock channels for the given role. Default is @everyone"))          .addRoleOption(option => option.setName('role').setDescription("Unlock channels for the given role. Default is @everyone"))
410          .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permissions to `true`"))          .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permissions to `true`"))
411          .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be unlocked. Default is `false`")),          .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be unlocked. Default is `false`")),
# Line 305  let commands = [ Line 426  let commands = [
426  let contextMenuCommands = [  let contextMenuCommands = [
427      new ContextMenuCommandBuilder().setName('Moderation History').setType(ApplicationCommandType.User),      new ContextMenuCommandBuilder().setName('Moderation History').setType(ApplicationCommandType.User),
428      new ContextMenuCommandBuilder().setName('Ban').setType(ApplicationCommandType.User),      new ContextMenuCommandBuilder().setName('Ban').setType(ApplicationCommandType.User),
429      new ContextMenuCommandBuilder().setName('Bean').setType(ApplicationCommandType.User),      new ContextMenuCommandBuilder().setName('Shot').setType(ApplicationCommandType.User),
430      new ContextMenuCommandBuilder().setName('Kick').setType(ApplicationCommandType.User),      new ContextMenuCommandBuilder().setName('Kick').setType(ApplicationCommandType.User),
431  ].map(command => command.toJSON());  ].map(command => command.toJSON());
432    
# Line 320  const rest = new REST({ version: '9' }). Line 441  const rest = new REST({ version: '9' }).
441    
442  rest.put(Routes[process.argv.includes('--guild') ? 'applicationGuildCommands' : 'applicationCommands'](CLIENT_ID, GUILD_ID), { body: commands })  rest.put(Routes[process.argv.includes('--guild') ? 'applicationGuildCommands' : 'applicationCommands'](CLIENT_ID, GUILD_ID), { body: commands })
443      .then(() => console.log('Successfully registered application ' + (process.argv.includes('--guild') ? 'guild ' : '') + 'commands.'))      .then(() => console.log('Successfully registered application ' + (process.argv.includes('--guild') ? 'guild ' : '') + 'commands.'))
     .catch(console.error);  
444        .catch(console.error);

Legend:
Removed from v.125  
changed lines
  Added in v.398

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26