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

Contents of /trunk/deploy-commands.ts

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26