2022-06-16 09:18:39 +02:00
|
|
|
const { SlashCommandBuilder } = require('@discordjs/builders');
|
|
|
|
const { REST } = require('@discordjs/rest');
|
|
|
|
const { Routes } = require('discord-api-types/v9');
|
|
|
|
require('dotenv').config();
|
|
|
|
const { clientId, guildId, token } = process.env;
|
|
|
|
|
|
|
|
const commands = [
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('ping')
|
|
|
|
.setDescription('Replies with pong!'),
|
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('download')
|
|
|
|
.setDescription('Download a video. (100 mb max)')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('url')
|
|
|
|
.setDescription('URL of the video you want to download.')
|
|
|
|
.setRequired(true))
|
|
|
|
.addBooleanOption(option =>
|
|
|
|
option.setName('advanced')
|
|
|
|
.setDescription('Choose the quality of the video.')
|
|
|
|
.setRequired(false)),
|
2022-06-17 01:25:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('reddit')
|
|
|
|
.setDescription('Send random images from the subreddit you choose')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('subreddit')
|
|
|
|
.setDescription('The subreddit you wish to see')
|
|
|
|
.setRequired(true)),
|
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('vid2gif')
|
|
|
|
.setDescription('Convert your video into a gif.')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('url')
|
|
|
|
.setDescription('URL of the video you want to convert')
|
|
|
|
.setRequired(true)),
|
2022-06-17 12:50:07 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('feedback')
|
|
|
|
.setDescription('Send a feedback to the developer.')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('feedback')
|
|
|
|
.setDescription('The message you want to send me.')
|
|
|
|
.setRequired(true)),
|
2022-06-20 11:42:12 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('inspirobot')
|
|
|
|
.setDescription('Get an image from inspirobot'),
|
2022-08-14 22:28:37 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('tweet')
|
|
|
|
.setDescription('Send tweet from Haha yes twitter account. Please do not use it for advertisement and keep it english')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('content')
|
|
|
|
.setDescription('The content of the tweet you want to send me.')
|
|
|
|
.setRequired(false))
|
|
|
|
.addAttachmentOption(option =>
|
|
|
|
option.setName('image')
|
|
|
|
.setDescription('Optional attachment (Image only.)')
|
|
|
|
.setRequired(false)),
|
2022-08-16 21:02:03 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('4chan')
|
|
|
|
.setDescription('Send random images from a 4chan board of your choosing!')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('board')
|
|
|
|
.setDescription('The board you wish to see')
|
|
|
|
.setRequired(true)),
|
2022-08-17 16:21:58 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('donator')
|
|
|
|
.setDescription('All the people who donated for this bot <3'),
|
2022-08-17 20:53:08 +02:00
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('donate')
|
|
|
|
.setDescription('Show donation link for the bot.'),
|
|
|
|
|
|
|
|
new SlashCommandBuilder()
|
|
|
|
.setName('about')
|
|
|
|
.setDescription('About me (The bot)'),
|
2022-06-16 09:18:39 +02:00
|
|
|
]
|
|
|
|
.map(command => command.toJSON());
|
|
|
|
|
|
|
|
const rest = new REST({ version: '9' }).setToken(token);
|
|
|
|
|
2022-06-17 02:08:32 +02:00
|
|
|
if (process.argv[2] === 'global') {
|
|
|
|
rest.put(Routes.applicationCommands(clientId), { body: commands })
|
2022-06-17 02:14:14 +02:00
|
|
|
.then(() => console.log('Successfully registered application commands globally.'))
|
|
|
|
.catch(console.error);
|
2022-06-17 02:08:32 +02:00
|
|
|
}
|
2022-08-14 22:28:37 +02:00
|
|
|
else if (process.argv[2] === 'delete') {
|
|
|
|
rest.put(Routes.applicationGuildCommands(clientId, guildId), { body: [] })
|
|
|
|
.then(() => console.log('Successfully deleted all guild commands.'))
|
|
|
|
.catch(console.error);
|
|
|
|
}
|
2022-06-17 02:08:32 +02:00
|
|
|
|
2022-06-16 09:18:39 +02:00
|
|
|
rest.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
|
2022-06-17 02:08:32 +02:00
|
|
|
.then(() => console.log(`Successfully registered application commands for the guild ${guildId}.`))
|
2022-06-16 09:18:39 +02:00
|
|
|
.catch(console.error);
|