xyter/src/handlers/deployCommands.ts

53 lines
1.4 KiB
TypeScript

// Dependencies
import { token, clientId } from "@config/discord";
import { devMode, guildId } from "@config/other";
import logger from "../logger";
import { Client } from "@root/types/common/discord";
import { REST } from "@discordjs/rest";
import { Routes } from "discord-api-types/v9";
export default async (client: Client) => {
const pluginList = [] as string[];
await Promise.all(
client.commands.map(async (pluginData: any) => {
pluginList.push(pluginData.builder.toJSON());
logger.verbose(
`Plugin is ready for deployment: ${pluginData.builder.name}`
);
})
)
.then(async () => {
logger.info("All plugins are ready to be deployed.");
})
.catch(async (error) => {
logger.error(`${error}`);
});
const rest = new REST({ version: "9" }).setToken(token);
await rest
.put(Routes.applicationCommands(clientId), {
body: pluginList,
})
.then(async () => {
logger.info(`Successfully deployed plugins to Discord's API`);
})
.catch(async (error) => {
logger.error(`${error}`);
});
if (devMode) {
await rest
.put(Routes.applicationGuildCommands(clientId, guildId), {
body: pluginList,
})
.then(async () =>
logger.info(`Successfully deployed guild plugins to Discord's API`)
)
.catch(async (error) => {
logger.error(`${error}`);
});
}
};