basic error handling and comments

This commit is contained in:
Baipyrus 2024-02-07 17:40:29 +01:00
parent 1a3e7ac96b
commit b5079b6f40

View File

@ -1,28 +1,36 @@
import { PermissionsBitField } from 'discord.js';
import { ChannelType, Events } from 'discord.js';
import { ChannelType, Events, PermissionsBitField } from 'discord.js';
export const name = Events.VoiceStateUpdate;
export async function execute(_, state) {
if (!state.channel) return;
// Extract user data
const member = state.member;
const name = member.user.username;
// Extract channel data
const channels = state.guild.channels;
const privCh = await channels.create({
name: `${name}${name.endsWith('s') ? "'" : "'s"} channel`,
type: ChannelType.GuildVoice,
permissionOverwrites: [
{
id: member.id,
allow: [
PermissionsBitField.All
]
}
]
});
try {
// Create private channel with all permissions
const chName = `${name}${name.endsWith('s') ? "'" : "'s"} channel`;
const privCh = await channels.create({
name: chName,
type: ChannelType.GuildVoice,
permissionOverwrites: [
{
id: member.id,
allow: [
PermissionsBitField.All
]
}
]
});
await state.setChannel(privCh);
console.debug(`[DEBUG] User '${member}' created private channel!`);
// Move user to private channel
await state.setChannel(privCh);
console.info(`[INFO] User '${name}' created private channel with ID ${privCh.id}.`);
} catch (error) {
console.error(error);
await member.send('Could no create or move to channel! Please contact server staff.');
}
}