Compare commits

...

5 Commits

Author SHA1 Message Date
fa6a9fa2e3 extract member prop early 2024-02-28 20:51:59 +01:00
73562b3570 apply permission overwrites from parent channel 2024-02-28 20:50:34 +01:00
0c3c1b5582 reformat: auto format 2024-02-28 20:48:45 +01:00
7ea28db049 more verbose logging 2024-02-28 20:43:36 +01:00
e74bd83ee6 catch channel delete error 2024-02-24 18:46:46 +01:00
3 changed files with 26 additions and 44 deletions

View File

@ -1,7 +1,6 @@
import {
ChannelType,
Events,
PermissionFlagsBits,
GuildMember,
GuildChannelManager,
GuildChannel,
@ -9,22 +8,6 @@ import {
} from 'discord.js';
import { VoiceChannel } from '../../database.js';
const vcPermissionOverwrites = [
PermissionFlagsBits.ReadMessageHistory,
PermissionFlagsBits.PrioritySpeaker,
PermissionFlagsBits.ManageMessages,
PermissionFlagsBits.ManageChannels,
PermissionFlagsBits.DeafenMembers,
PermissionFlagsBits.SendMessages,
PermissionFlagsBits.ViewChannel,
PermissionFlagsBits.MuteMembers,
PermissionFlagsBits.MoveMembers,
PermissionFlagsBits.Connect,
PermissionFlagsBits.Stream,
PermissionFlagsBits.UseVAD,
PermissionFlagsBits.Speak
];
/**
* Function that either creates a new custom channel or gets an existing one registered in the database.
* @param {GuildMember} member The member that caused this event.
@ -46,16 +29,13 @@ const getChannel = async (member, guildChs, channel) => {
// Create private channel with all permissions
const name = member.user.username;
const chName = `${name}${name.toLowerCase().endsWith('s') ? "'" : "'s"} channel`;
// Get permissions from parent
const vcPermOver = channel.parent.permissionOverwrites.cache.get(member.id);
const privCh = await guildChs.create({
name: chName,
parent: channel.parent,
type: ChannelType.GuildVoice,
permissionOverwrites: [
{
id: member.id,
allow: vcPermissionOverwrites
}
]
permissionOverwrites: [vcPermOver]
});
// Save newly created channel
@ -101,26 +81,24 @@ export const name = Events.VoiceStateUpdate;
* @param {VoiceState} newState
*/
export async function execute(oldState, newState) {
const { channel } = newState;
await leftVoiceChat(oldState);
if (!channel) return;
// Find channel by id, return if not registered for customs
const createCh = await VoiceChannel.findOne({
where: {
id: channel.id,
create: true
}
});
if (createCh === null) return;
// Extract user data
const member = newState.member;
// Extract channel data
const channels = newState.guild.channels;
let step = 'create';
const { channel, member } = newState;
let step = 'delete';
try {
await leftVoiceChat(oldState);
if (!channel) return;
// Find channel by id, return if not registered for customs
const createCh = await VoiceChannel.findOne({
where: {
id: channel.id,
create: true
}
});
if (createCh === null) return;
step = 'create';
// Extract channel data
const channels = newState.guild.channels;
const privCh = await getChannel(member, channels, channel);
step = 'move to';

View File

@ -37,7 +37,7 @@ export async function execute(reaction, user) {
reaction.remove();
} catch (error) {
// Missing permissions
console.error(error)
console.error(error);
await user.send('Unable to remove reaction. Please contact server staff.');
}
return;

View File

@ -66,7 +66,11 @@ const saveMessageData = async (id, role, emoji) => {
);
// Create database entry for pair
await RoleEmojiPair.create({ message: id, role: role.id, emoji: emoji.replace(/:(\s*[^:]*\s*):/, ":_:") });
await RoleEmojiPair.create({
message: id,
role: role.id,
emoji: emoji.replace(/:(\s*[^:]*\s*):/, ':_:')
});
};
/**