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

Annotation of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26