feat(arabot): add create a new vc for joining and delete vc when leaving and give the user non vegan role

This commit is contained in:
Anthony 2022-08-06 14:54:26 +01:00
parent 5041e49c91
commit ac5860d10c
5 changed files with 244 additions and 2 deletions

2
package-lock.json generated
View File

@ -18,7 +18,7 @@
"@types/node": "^18.0.3",
"cron": "^2.1.0",
"discord-api-types": "^0.33.3",
"discord.js": "^13.8.1",
"discord.js": "^13.9.2",
"dotenv": "^16.0.1",
"prisma": "^4.0.0",
"ts-node": "^10.8.2",

View File

@ -35,7 +35,7 @@
"@types/node": "^18.0.3",
"cron": "^2.1.0",
"discord-api-types": "^0.33.3",
"discord.js": "^13.8.1",
"discord.js": "^13.9.2",
"dotenv": "^16.0.1",
"prisma": "^4.0.0",
"ts-node": "^10.8.2",

View File

@ -0,0 +1,23 @@
// SPDX-License-Identifier: GPL-3.0-or-later
/*
Animal Rights Advocates Discord Bot
Copyright (C) 2022 Anthony Berg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// This file is the configuration file for the verification system
// The maximum number of Verification Voice Channels at a time
export const maxVCs = 10;

View File

@ -0,0 +1,146 @@
// SPDX-License-Identifier: GPL-3.0-or-later
/*
Animal Rights Advocates Discord Bot
Copyright (C) 2022 Anthony Berg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { container, Listener } from '@sapphire/framework';
import type {
TextChannel, VoiceChannel, CategoryChannel, VoiceState,
} from 'discord.js';
import { maxVCs } from './config';
export class VerificationJoinVCListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
event: 'voiceStateUpdate',
});
}
public async run(oldState: VoiceState, newState: VoiceState) {
// If the event was not a user joining the channel
if (oldState.channel?.parent?.id === '999431677006860409' // ID for Verification category
|| newState.channel?.parent?.id !== '999431677006860409' // ID for Verification category
) {
return;
}
// Checks if a verifier has joined
if (newState.channel.members.size === 2) {
await newState.channel!.permissionOverwrites.set([
{
id: '999431675081666597', // verify-as-vegan
allow: ['SEND_MESSAGES'],
},
]);
return;
}
// Checks if there is more than one person who has joined or if the channel has members
if (newState.channel.members.size !== 1
|| !newState.channel.members.has(newState.member!.id)) {
return;
}
// TODO add database information
const channel = newState.channel!;
const { client } = container;
const guild = client.guilds.cache.get(newState.guild.id)!;
const currentChannel = guild.channels.cache.get(newState.channel.id) as VoiceChannel;
// Check if the user has the verifiers role
if (newState.member?.roles.cache.has('999431675123597406')) {
await channel.setName('Verifiers Only');
} else {
await channel.setName(`Verification - ${newState.member?.displayName}`);
await currentChannel.send(`Hiya ${newState.member?.user}, please be patient as a verifier has been called out to verify you.\n\nIf you leave this voice channel, you will automatically be given the non-vegan role where you gain access to this server and if you'd like to verify as a vegan again, you'd have to contact a Mod, which could be done via ModMail.`);
}
// Check how many voice channels there are
const category = guild.channels.cache.get('999431677006860409') as CategoryChannel;
const listVoiceChannels = category.children.filter((c) => c.type === 'GUILD_VOICE');
// Create a new channel for others to join
// TODO add a global max size
// Checks if there are more than 10 voice channels
if (listVoiceChannels.size > maxVCs - 1) {
await guild.channels.create('Verification', {
type: 'GUILD_VOICE',
parent: '999431677006860409', // Verification topic
userLimit: 1,
permissionOverwrites: [
{
id: guild.roles.everyone,
deny: ['SEND_MESSAGES', 'VIEW_CHANNEL'],
},
{
id: '999431675081666597', // verify-as-vegan
allow: ['VIEW_CHANNEL'],
deny: ['CONNECT'],
},
{
id: '999431675123597406', // Verifiers
allow: ['SEND_MESSAGES', 'VIEW_CHANNEL'],
},
],
});
} else {
await guild.channels.create('Verification', {
type: 'GUILD_VOICE',
parent: '999431677006860409', // Verification topic
userLimit: 1,
permissionOverwrites: [
{
id: guild.roles.everyone,
deny: ['SEND_MESSAGES', 'VIEW_CHANNEL'],
},
{
id: '999431675081666597', // verify-as-vegan
allow: ['VIEW_CHANNEL'],
},
{
id: '999431675123597406', // Verifiers
allow: ['SEND_MESSAGES', 'VIEW_CHANNEL'],
},
],
});
}
// Change permissions to join the current channel
await currentChannel.permissionOverwrites.set([
{
id: guild.roles.everyone,
deny: ['SEND_MESSAGES', 'VIEW_CHANNEL'],
},
{
id: '999431675081666597', // verify-as-vegan
deny: ['VIEW_CHANNEL'],
},
{
id: newState.member!.id,
allow: ['VIEW_CHANNEL'],
},
]);
await currentChannel.setUserLimit(0);
// Send a message that someone wants to be verified
const verifyChannel = client.channels.cache.get('999431677006860411') as TextChannel; // Verifiers channel
verifyChannel.send(`${newState.member?.user} wants to be verified in ${newState.channel}`);
}
}

View File

@ -0,0 +1,73 @@
// SPDX-License-Identifier: GPL-3.0-or-later
/*
Animal Rights Advocates Discord Bot
Copyright (C) 2022 Anthony Berg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { container, Listener } from '@sapphire/framework';
import type { VoiceState, CategoryChannel, VoiceChannel } from 'discord.js';
import { maxVCs } from './config';
export class VerificationLeaveVCListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
event: 'voiceStateUpdate',
});
}
public async run(oldState: VoiceState, newState: VoiceState) {
// If the event was not a user joining the channel
if (oldState.channel?.parent?.id !== '999431677006860409' // ID for Verification category
|| newState.channel?.parent?.id === '999431677006860409' // ID for Verification category
|| oldState.channel.members.size > 0
) {
return;
}
// Allow more people to join VC if there are less than 10 VCs
const { client } = container;
const guild = client.guilds.cache.get(newState.guild.id)!;
const user = guild.members.cache.get(oldState.member!.id)!;
// Remove verify as vegan and give non vegan role
await user.roles.remove('999431675081666597'); // Verify-as-vegan
await user.roles.add('999431675081666598'); // Not vegan
// Delete the channel
await oldState.channel!.delete();
// Check how many voice channels there are
const category = guild.channels.cache.get('999431677006860409') as CategoryChannel;
const listVoiceChannels = category.children.filter((c) => c.type === 'GUILD_VOICE');
console.log(listVoiceChannels.size);
// If there are less than 10, stop
if (listVoiceChannels.size < maxVCs) {
return;
}
const verification = listVoiceChannels.last() as VoiceChannel;
console.log(verification?.name);
await verification!.permissionOverwrites.set([
{
id: '999431675081666597', // verify-as-vegan
allow: ['VIEW_CHANNEL'],
},
]);
}
}