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

Annotation of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26