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

Contents of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26