* add: admin check for disable * update: shutoff uses memberPerms now * rm: superUser env variable * update: version increment * rm: admin env in docker and workflow
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
import { ChannelType, Client, CommandInteraction, ApplicationCommandOptionType } from 'discord.js'
|
|
import { SlashCommand } from '../utils/commands.js'
|
|
|
|
export const Shutoff: SlashCommand = {
|
|
name: 'shutoff',
|
|
description: 'shutdown the bot. You will need to manually bring it online again. Administrator Only.',
|
|
|
|
// set available user options to pass to the command
|
|
options: [
|
|
{
|
|
name: 'are-you-sure',
|
|
description: 'true = yes, false = I\'m scared',
|
|
type: ApplicationCommandOptionType.Boolean,
|
|
required: true
|
|
}
|
|
],
|
|
|
|
// Query for message information and set the style
|
|
run: async (client: Client, interaction: CommandInteraction) => {
|
|
// fetch channel and message
|
|
const channel = await client.channels.fetch(interaction.channelId)
|
|
if (!channel || channel.type !== ChannelType.GuildText) return
|
|
|
|
// log this, this will probably be improtant for logging who did this
|
|
console.log(`User -> ${interaction.user.tag} attempting to shutdown ${client.user!!.tag}`)
|
|
|
|
// check if admin or false on shutdown
|
|
if (!interaction.memberPermissions?.has('Administrator')) {
|
|
interaction.reply({
|
|
content: `**Shutdown Aborted:**\n\n${interaction.user.tag}, You do not have permission to shutoff **${client.user?.tag}**.`,
|
|
ephemeral: true
|
|
})
|
|
return // stop from shutting down
|
|
} else if (!interaction.options.get('are-you-sure')?.value) {
|
|
interaction.reply({
|
|
content: `**Shutdown Aborted:**\n\n${interaction.user.tag}, You didn't want to shutoff **${client.user?.tag}**.`,
|
|
ephemeral: true
|
|
})
|
|
return // chickened out
|
|
}
|
|
|
|
// Shutoff cleared, do it
|
|
interaction.reply({
|
|
content: `${client.user?.tag} is ${interaction.options.get('are-you-sure')?.value ? "shutting down now." : "not shutting down." }`,
|
|
ephemeral: true
|
|
})
|
|
|
|
// clean up client instance and stop
|
|
client.destroy()
|
|
}
|
|
} |