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

Annotation of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26