Switch case makeover (probably pretty (I think (hopefully)))
This commit is contained in:
+102
-165
@@ -116,178 +116,115 @@ module.exports = {
|
|||||||
|
|
||||||
async function verifyUser(captcha) {
|
async function verifyUser(captcha) {
|
||||||
attempts++;
|
attempts++;
|
||||||
switch (attempts) {
|
const isExceeded = attempts > maxAttempts;
|
||||||
case attempts > maxAttempts:
|
|
||||||
|
switch (isExceeded) {
|
||||||
|
case true:
|
||||||
await interaction.user.send(cfg.messages.maxAttemptsExceeded);
|
await interaction.user.send(cfg.messages.maxAttemptsExceeded);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
switch (attempts) {
|
||||||
if (attempts > maxAttempts) {
|
case 1:
|
||||||
await interaction.user.send(cfg.messages.maxAttemptsExceeded);
|
await dangercordcheckVerification(interaction.user.id)
|
||||||
return;
|
.then(result => {
|
||||||
|
console.log('Verification result:', result);
|
||||||
|
switch (result) {
|
||||||
|
case 1:
|
||||||
|
console.log(`${interaction.user.id} is not blacklisted at DangerCord, let's continue with the verification process`)
|
||||||
|
// Proceed with further actions
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(`${interaction.user.id} is blacklisted at DangerCord, we will not continue with the verification process`);
|
||||||
|
blacklisted = true; // Set blacklisted to true
|
||||||
|
// Handle the case when user is blacklisted
|
||||||
|
interaction.editReply({
|
||||||
|
content: cfg.messages.cannotContinue,
|
||||||
|
ephemeral: true
|
||||||
|
}).then(() => {
|
||||||
|
// Stop execution here
|
||||||
|
return;
|
||||||
|
}).catch(error => {
|
||||||
|
console.error('Error:', error);
|
||||||
|
})
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (blacklisted == true) return
|
||||||
|
|
||||||
|
const buff = await createCaptcha(captcha);
|
||||||
|
const attachment = new AttachmentBuilder(buff, { name: 'captcha.png' });
|
||||||
|
|
||||||
|
const embed = new EmbedBuilder()
|
||||||
|
.setTitle("Captcha Verification")
|
||||||
|
.setDescription(`Please type the captcha below. You have ${cfg.captchaTimeout / 1000} seconds to respond. Attempt ${attempts}/${maxAttempts}`)
|
||||||
|
.setColor('Green')
|
||||||
|
.setImage('attachment://captcha.png')
|
||||||
|
.setTimestamp();
|
||||||
|
|
||||||
|
await interaction.user.send({
|
||||||
|
embeds: [embed], files: [attachment]
|
||||||
|
}).then(async (msg) => {
|
||||||
|
await interaction.editReply({ content: cfg.messages.toVerify, ephemeral: true });
|
||||||
|
const filter = m => !m.author.bot && m.author.id === interaction.user.id && m.channel.id === msg.channel.id;
|
||||||
|
const collector = msg.channel.createMessageCollector({
|
||||||
|
filter,
|
||||||
|
time: cfg.captchaTimeout
|
||||||
|
});
|
||||||
|
|
||||||
|
collector.on('collect', async (m) => {
|
||||||
|
//if member left the server before the verification is done
|
||||||
|
switch (interaction.guild.members.cache.has(interaction.user.id)) {
|
||||||
|
case false:
|
||||||
|
await interaction.user.send(cfg.messages.userLeft);
|
||||||
|
collector.stop();
|
||||||
|
break;
|
||||||
|
case true:
|
||||||
|
switch (m.content) {
|
||||||
|
case captcha:
|
||||||
|
validated = true;
|
||||||
|
await interaction.member.roles.add(cfg.guilds[guildId].roleToAdd);
|
||||||
|
await interaction.member.roles.remove(cfg.guilds[guildId].firstRole);
|
||||||
|
await interaction.user.send(cfg.messages.success);
|
||||||
|
return;
|
||||||
|
default:
|
||||||
|
// If the content doesn't match captcha
|
||||||
|
collector.stop();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
collector.on('end', async (collected, reason) => {
|
||||||
|
switch (reason) {
|
||||||
|
case 'time':
|
||||||
|
switch (validated) {
|
||||||
|
case false:
|
||||||
|
await interaction.user.send(cfg.messages.tookTooLong);
|
||||||
|
break;
|
||||||
|
case true:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
switch (validated) {
|
||||||
|
case false:
|
||||||
|
const newCaptcha = await generateCaptcha(cfg.captchaCount);
|
||||||
|
await verifyUser(newCaptcha);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}).catch(async (err) => {
|
||||||
|
await interaction.editReply({
|
||||||
|
content: cfg.messages.unableToDM,
|
||||||
|
ephemeral: true
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
const captcha = await generateCaptcha(cfg.captchaCount);
|
const captcha = await generateCaptcha(cfg.captchaCount);
|
||||||
|
|
||||||
switch (attempts) {
|
|
||||||
case 1:
|
|
||||||
await dangercordcheckVerification(interaction.user.id)
|
|
||||||
.then(result => {
|
|
||||||
console.log('Verification result:', result);
|
|
||||||
switch (result) {
|
|
||||||
case 1: {
|
|
||||||
console.log(`${interaction.user.id} is not blacklisted at dangercord, lets continue with the verification process`)
|
|
||||||
// Proceed with further actions
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
console.log(`${interaction.user.id} is blacklisted at dangercord, we will not continue with the verification process`);
|
|
||||||
blacklisted = true; // Set blacklisted to true
|
|
||||||
// Handle the case when user is blacklisted
|
|
||||||
interaction.editReply({
|
|
||||||
content: cfg.messages.cannotContinue,
|
|
||||||
ephemeral: true
|
|
||||||
}).then(() => {
|
|
||||||
// Stop execution here
|
|
||||||
return;
|
|
||||||
}).catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
if (attempts == 1) {
|
|
||||||
// Check the Dangercord API using our custom library function
|
|
||||||
await dangercordcheckVerification(interaction.user.id)
|
|
||||||
.then(result => {
|
|
||||||
console.log('Verification result:', result);
|
|
||||||
if (result === 1) {
|
|
||||||
console.log(`${interaction.user.id} is not blacklisted at dangercord, lets continue with the verification process`)
|
|
||||||
// Proceed with further actions
|
|
||||||
} else {
|
|
||||||
console.log(`${interaction.user.id} is blacklisted at dangercord, we will not continue with the verification process`);
|
|
||||||
blacklisted = true; // Set blacklisted to true
|
|
||||||
// Handle the case when user is blacklisted
|
|
||||||
interaction.editReply({
|
|
||||||
content: cfg.messages.cannotContinue,
|
|
||||||
ephemeral: true
|
|
||||||
}).then(() => {
|
|
||||||
// Stop execution here
|
|
||||||
return;
|
|
||||||
}).catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.error('Error:', error);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (blacklisted == true) return
|
|
||||||
|
|
||||||
const buff = await createCaptcha(captcha);
|
|
||||||
const attachment = new AttachmentBuilder(buff, { name: 'captcha.png' });
|
|
||||||
|
|
||||||
const embed = new EmbedBuilder()
|
|
||||||
.setTitle("Captcha Verification")
|
|
||||||
.setDescription(`Please type the captcha below. You have ${cfg.captchaTimeout / 1000} seconds to respond. Attempt ${attempts}/${maxAttempts}`)
|
|
||||||
.setColor('Green')
|
|
||||||
.setImage('attachment://captcha.png')
|
|
||||||
.setTimestamp();
|
|
||||||
|
|
||||||
await interaction.user.send({
|
|
||||||
embeds: [embed], files: [attachment]
|
|
||||||
}).then(async (msg) => {
|
|
||||||
await interaction.editReply({ content: cfg.messages.toVerify, ephemeral: true });
|
|
||||||
const filter = m => !m.author.bot && m.author.id === interaction.user.id && m.channel.id === msg.channel.id;
|
|
||||||
const collector = msg.channel.createMessageCollector({
|
|
||||||
filter,
|
|
||||||
time: cfg.captchaTimeout
|
|
||||||
});
|
|
||||||
|
|
||||||
collector.on('collect', async (m) => {
|
|
||||||
//if member left the server before the verification is done
|
|
||||||
switch (!interaction.guild.members.cache.has(interaction.user.id)) {
|
|
||||||
case true: {
|
|
||||||
await interaction.user.send(cfg.messages.userLeft);
|
|
||||||
collector.stop();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
switch (m.content === captcha) {
|
|
||||||
case true: {
|
|
||||||
validated = true;
|
|
||||||
await interaction.member.roles.add(cfg.guilds[guildId].roleToAdd);
|
|
||||||
await interaction.member.roles.remove(cfg.guilds[guildId].firstRole);
|
|
||||||
await interaction.user.send(cfg.messages.success);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
// If the content doesn't match captcha
|
|
||||||
collector.stop();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
/*
|
|
||||||
if (!interaction.guild.members.cache.has(interaction.user.id)) {
|
|
||||||
await interaction.user.send(cfg.messages.userLeft);
|
|
||||||
collector.stop();
|
|
||||||
} else {
|
|
||||||
if (m.content === captcha) {
|
|
||||||
validated = true;
|
|
||||||
await interaction.member.roles.add(cfg.guilds[guildId].roleToAdd);
|
|
||||||
await interaction.member.roles.remove(cfg.guilds[guildId].firstRole);
|
|
||||||
await interaction.user.send(cfg.messages.success);
|
|
||||||
return
|
|
||||||
} else {
|
|
||||||
// If the content doesn't match captcha
|
|
||||||
collector.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
collector.on('end', async (collected, reason) => {
|
|
||||||
switch (reason) {
|
|
||||||
case 'time':
|
|
||||||
switch (validated) {
|
|
||||||
case false: case null:
|
|
||||||
await interaction.user.send(cfg.messages.tookTooLong);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
if (reason === 'time' && !validated) { // Send timeout message only if not already validated
|
|
||||||
await interaction.user.send(cfg.messages.tookTooLong);
|
|
||||||
} else if (!validated) {
|
|
||||||
// Only generate a new captcha and attempt verification if attempts < maxAttempts
|
|
||||||
const newCaptcha = await generateCaptcha(cfg.captchaCount);
|
|
||||||
await verifyUser(newCaptcha);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
});
|
|
||||||
}).catch(async (err) => {
|
|
||||||
await interaction.editReply({
|
|
||||||
content: cfg.messages.unableToDM,
|
|
||||||
ephemeral: true
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
verifyUser(captcha);
|
verifyUser(captcha);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user