Compare commits

..

No commits in common. "fa6a9fa2e38edd2afdbb760fcc5cbff171aa9bf0" and "ab6ca9edeb0dff29184e957443bb7c84c17fafb7" have entirely different histories.

3 changed files with 44 additions and 26 deletions

View File

@ -1,6 +1,7 @@
import {
ChannelType,
Events,
PermissionFlagsBits,
GuildMember,
GuildChannelManager,
GuildChannel,
@ -8,6 +9,22 @@ 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.
@ -29,13 +46,16 @@ 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: [vcPermOver]
permissionOverwrites: [
{
id: member.id,
allow: vcPermissionOverwrites
}
]
});
// Save newly created channel
@ -81,24 +101,26 @@ export const name = Events.VoiceStateUpdate;
* @param {VoiceState} newState
*/
export async function execute(oldState, newState) {
const { channel, member } = newState;
let step = 'delete';
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';
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,11 +66,7 @@ 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*):/, ":_:") });
};
/**