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

Annotation of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 60 - (hide annotations)
Mon Jul 29 17:28:26 2024 UTC (8 months ago) by rakin
File MIME type: text/javascript
File size: 13864 byte(s)
Added -rolelist command
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 60 new SlashCommandBuilder().setName('rolelist').setDescription('List all roles or show info about a role')
34     .addUserOption(option => option.setName('role').setDescription('The role')),
35 rakin 51
36     // AUTOMATION
37 rakin 55 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 rakin 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('kick').setDescription('Kick a member')
143     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
144     .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),
145    
146     new SlashCommandBuilder().setName('bean').setDescription('Bean a member')
147     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
148     .addStringOption(option => option.setName('reason').setDescription("The reason for beaning this user")),
149    
150     new SlashCommandBuilder().setName('warn').setDescription('Warn a member')
151     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
152     .addStringOption(option => option.setName('reason').setDescription("The reason for warning this user")),
153    
154     new SlashCommandBuilder().setName('note').setDescription('Take a note for a member')
155     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
156     .addStringOption(option => option.setName('note').setDescription("The note content").setRequired(true)),
157    
158     new SlashCommandBuilder().setName('mute').setDescription('Mute a member')
159     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
160     .addStringOption(option => option.setName('reason').setDescription("The reason for muting this user"))
161     .addStringOption(option => option.setName('time').setDescription("Mute duration")),
162    
163     new SlashCommandBuilder().setName('unmute').setDescription('Unmute a member')
164     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
165    
166     new SlashCommandBuilder().setName('unban').setDescription('Unban a user')
167     .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
168    
169     new SlashCommandBuilder().setName('warndel').setDescription('Delete a warning')
170     .addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)),
171    
172     new SlashCommandBuilder().setName('warning').setDescription('Get information about a warning')
173     .addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)),
174    
175     new SlashCommandBuilder().setName('noteget').setDescription('Get information about a note')
176     .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
177    
178     new SlashCommandBuilder().setName('notedel').setDescription('Delete a note')
179     .addNumberOption(option => option.setName('id').setDescription("The note ID").setRequired(true)),
180    
181     new SlashCommandBuilder().setName('warnings').setDescription('Fetch all warnings')
182     .addUserOption(option => option.setName('member').setDescription("Show warnings for only this member")),
183    
184     new SlashCommandBuilder().setName('notes').setDescription('Fetch all notes for a user')
185     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
186    
187     new SlashCommandBuilder().setName('history').setDescription('Fetch all moderation history for a user')
188     .addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)),
189    
190     new SlashCommandBuilder().setName('clear').setDescription('Clear all messages in the current channel for a user')
191     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
192    
193     new SlashCommandBuilder().setName('echo').setDescription('Re-send a message from the bot system')
194     .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
195     .addChannelOption(option => option.setName('channel').setDescription("The channel where the message should be sent")),
196    
197     new SlashCommandBuilder().setName('lock').setDescription('Lock a channel')
198     .addRoleOption(option => option.setName('role').setDescription("Lock channel for the given role. Default is @everyone"))
199     .addChannelOption(option => option.setName('channel').setDescription("The channel that will be locked. Default is the current channel")),
200    
201     new SlashCommandBuilder().setName('lockall').setDescription('Lock multiple channels')
202     .addRoleOption(option => option.setName('role').setDescription("Lock channels for the given role. Default is @everyone"))
203     .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be locked. Default is `false`")),
204    
205     new SlashCommandBuilder().setName('unlockall').setDescription('Unlock multiple channels')
206     .addRoleOption(option => option.setName('role').setDescription("Unlock channels for the given role. Default is @everyone"))
207     .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permissions to `true`"))
208     .addBooleanOption(option => option.setName('raid').setDescription("The raid protected channels will be unlocked. Default is `false`")),
209    
210     new SlashCommandBuilder().setName('unlock').setDescription('Unlock a channel')
211     .addRoleOption(option => option.setName('role').setDescription("Unlock channel for the given role. Default is @everyone"))
212     .addBooleanOption(option => option.setName('force').setDescription("Force set the channel permission to `true`"))
213     .addChannelOption(option => option.setName('channel').setDescription("The channel that will be unlocked. Default is the current channel")),
214    
215     new SlashCommandBuilder().setName('send').setDescription('Send a DM to a user')
216     .addStringOption(option => option.setName('content').setDescription("The message content").setRequired(true))
217     .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true)),
218     ].map(command => command.toJSON());
219    
220 rakin 57 const rest = new REST({ version: '9' }).setToken(TOKEN);
221 rakin 51
222 rakin 57 rest.put(Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID), { body: commands })
223 rakin 51 .then(() => console.log('Successfully registered application commands.'))
224     .catch(console.error);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26