fix: catch missing role errors (closes #518)

This commit is contained in:
Isaac 2024-03-03 20:10:45 +00:00
parent f4ff01398e
commit c09972f3cf
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33
8 changed files with 104 additions and 157 deletions

View File

@ -340,7 +340,6 @@ misc:
Sorry, an unexpected error occurred. Sorry, an unexpected error occurred.
Please give this information to an administrator. Please give this information to an administrator.
fields: fields:
code: Error code
identifier: Identifier identifier: Identifier
title: ⚠️ Something went wrong title: ⚠️ Something went wrong
expired: expired:
@ -375,6 +374,15 @@ misc:
ratelimited: ratelimited:
description: Try again in a few seconds. description: Try again in a few seconds.
title: 🐢 Please slow down title: 🐢 Please slow down
role_error:
description: Sorry, the operation failed because of an invalid configuration.
fields:
for_admins:
name: For server administrators
value: >
An invalid user or role was supplied, which usually means a staff role has been deleted.
[Click here]({url}) for resolution instructions.
title: ⚠️ Something went wrong
unknown_category: unknown_category:
description: Please try a different category. description: Please try a different category.
title: ❌ That ticket category doesn't exist title: ❌ That ticket category doesn't exist

View File

@ -76,7 +76,7 @@ process.on('uncaughtException', (error, origin) => {
log.error(error); log.error(error);
}); });
process.on('warning', warning => log.warn(warning.stack)); process.on('warning', warning => log.warn(warning.stack || warning));
const client = new Client(config, log); const client = new Client(config, log);
client.login().then(() => { client.login().then(() => {

80
src/lib/error.js Normal file
View File

@ -0,0 +1,80 @@
const { getSUID } = require('./logging');
const {
EmbedBuilder,
codeBlock,
} = require('discord.js');
/**
*
* @param {Object} event
* @param {import("discord.js").Interaction<"cached">} event.interaction
* @param {Error} event.error
* @returns
*/
module.exports.handleInteractionError = async event => {
const {
interaction,
error,
} = event;
const { client } = interaction;
const ref = getSUID();
client.log.error.buttons(ref);
if (interaction.isAnySelectMenu()) {
client.log.error.menus(`"${event.menu.id}" menu execution error:`, error);
} else if (interaction.isButton()) {
client.log.error.buttons(`"${event.button.id}" button execution error:`, error);
} else if (interaction.isModalSubmit()) {
client.log.error.modals(`"${event.modal.id}" modal execution error:`, error);
} else if (interaction.isCommand()) {
client.log.error.commands(`"${event.command.name}" command execution error:`, error);
}
let locale = null;
if (interaction.guild) {
locale = (await client.prisma.guild.findUnique({
select: { locale: true },
where: { id: interaction.guild.id },
})).locale;
}
const getMessage = client.i18n.getLocale(locale);
const data = {
components: [],
embeds: [],
};
if (/Supplied parameter is not a User nor a Role/.test(error.message)) {
data.embeds.push(
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.role_error.title'))
.setDescription(getMessage('misc.role_error.description'))
.addFields([
{
name: getMessage('misc.role_error.fields.for_admins.name'),
value: getMessage('misc.role_error.fields.for_admins.value', { url: 'https://discordtickets.app/self-hosting/troubleshooting/#invalid-user-or-role' }),
},
]),
);
} else {
data.embeds.push(
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.error.title'))
.setDescription(getMessage('misc.error.description'))
.addFields([
{
name: getMessage('misc.error.fields.identifier'),
value: codeBlock(ref),
},
]),
);
}
return interaction.reply(data).catch(() => interaction.editReply(data));
};

View File

@ -77,12 +77,12 @@ module.exports.sendToHouston = async client => {
client.log.success('Posted client stats'); client.log.success('Posted client stats');
client.log.debug(res); client.log.debug(res);
} catch (res) { } catch (res) {
client.log.warn('The following error is not important and can be safely ignored');
try { try {
const json = await res.json(); const json = await res.json();
client.log.error('An error occurred whilst posting stats:', json); client.log.error('An error occurred whilst posting stats:', json);
} catch (error) { } catch (error) {
client.log.error('An error occurred whilst posting stats and the response couldn\'t be parsed'); client.log.error('An error occurred whilst posting stats and the response couldn\'t be parsed:', error.message);
client.log.error(error.message);
} }
client.log.debug(res); client.log.debug(res);
} }

View File

@ -1,9 +1,5 @@
const { Listener } = require('@eartharoid/dbf'); const { Listener } = require('@eartharoid/dbf');
const { const { handleInteractionError } = require('../../lib/error');
EmbedBuilder,
codeBlock,
} = require('discord.js');
const { getSUID } = require('../../lib/logging');
module.exports = class extends Listener { module.exports = class extends Listener {
constructor(client, options) { constructor(client, options) {
@ -14,38 +10,7 @@ module.exports = class extends Listener {
}); });
} }
async run({ async run(...params) {
button, return handleInteractionError(...params);
error,
interaction,
}) {
const ref = getSUID();
this.client.log.error.buttons(ref);
this.client.log.error.buttons(`"${button.id}" button execution error:`, error);
let locale = null;
if (interaction.guild) {
locale = (await this.client.prisma.guild.findUnique({
select: { locale: true },
where: { id: interaction.guild.id },
})).locale;
}
const getMessage = this.client.i18n.getLocale(locale);
const data = {
components: [],
embeds: [
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.error.title'))
.setDescription(getMessage('misc.error.description'))
.addFields([
{
name: getMessage('misc.error.fields.identifier'),
value: codeBlock(' ' + ref + ' '),
},
]),
],
};
interaction.reply(data).catch(() => interaction.editReply(data));
} }
}; };

View File

@ -1,9 +1,5 @@
const { Listener } = require('@eartharoid/dbf'); const { Listener } = require('@eartharoid/dbf');
const { const { handleInteractionError } = require('../../lib/error');
EmbedBuilder,
codeBlock,
} = require('discord.js');
const { getSUID } = require('../../lib/logging');
module.exports = class extends Listener { module.exports = class extends Listener {
constructor(client, options) { constructor(client, options) {
@ -14,38 +10,7 @@ module.exports = class extends Listener {
}); });
} }
async run({ async run(...params) {
command, return handleInteractionError(...params);
error,
interaction,
}) {
const ref = getSUID();
this.client.log.error.commands(ref);
this.client.log.error.commands(`"${command.name}" command execution error:`, error);
let locale = null;
if (interaction.guild) {
locale = (await this.client.prisma.guild.findUnique({
select: { locale: true },
where: { id: interaction.guild.id },
})).locale;
}
const getMessage = this.client.i18n.getLocale(locale);
const data = {
components: [],
embeds: [
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.error.title'))
.setDescription(getMessage('misc.error.description'))
.addFields([
{
name: getMessage('misc.error.fields.identifier'),
value: codeBlock(' ' + ref + ' '),
},
]),
],
};
interaction.reply(data).catch(() => interaction.editReply(data));
} }
}; };

View File

@ -1,9 +1,5 @@
const { Listener } = require('@eartharoid/dbf'); const { Listener } = require('@eartharoid/dbf');
const { const { handleInteractionError } = require('../../lib/error');
EmbedBuilder,
codeBlock,
} = require('discord.js');
const { getSUID } = require('../../lib/logging');
module.exports = class extends Listener { module.exports = class extends Listener {
constructor(client, options) { constructor(client, options) {
@ -14,38 +10,7 @@ module.exports = class extends Listener {
}); });
} }
async run({ async run(...params) {
menu, return handleInteractionError(...params);
error,
interaction,
}) {
const ref = getSUID();
this.client.log.error.menus(ref);
this.client.log.error.menus(`"${menu.id}" menu execution error:`, error);
let locale = null;
if (interaction.guild) {
locale = (await this.client.prisma.guild.findUnique({
select: { locale: true },
where: { id: interaction.guild.id },
})).locale;
}
const getMessage = this.client.i18n.getLocale(locale);
const data = {
components: [],
embeds: [
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.error.title'))
.setDescription(getMessage('misc.error.description'))
.addFields([
{
name: getMessage('misc.error.fields.identifier'),
value: codeBlock(' ' + ref + ' '),
},
]),
],
};
interaction.reply(data).catch(() => interaction.editReply(data));
} }
}; };

View File

@ -1,10 +1,5 @@
const { Listener } = require('@eartharoid/dbf'); const { Listener } = require('@eartharoid/dbf');
const { const { handleInteractionError } = require('../../lib/error');
EmbedBuilder,
codeBlock,
} = require('discord.js');
const { getSUID } = require('../../lib/logging');
module.exports = class extends Listener { module.exports = class extends Listener {
constructor(client, options) { constructor(client, options) {
super(client, { super(client, {
@ -14,38 +9,7 @@ module.exports = class extends Listener {
}); });
} }
async run({ async run(...params) {
modal, return handleInteractionError(...params);
error,
interaction,
}) {
const ref = getSUID();
this.client.log.error.modals(ref);
this.client.log.error.modals(`"${modal.id}" modal execution error:`, error);
let locale = null;
if (interaction.guild) {
locale = (await this.client.prisma.guild.findUnique({
select: { locale: true },
where: { id: interaction.guild.id },
})).locale;
}
const getMessage = this.client.i18n.getLocale(locale);
const data = {
components: [],
embeds: [
new EmbedBuilder()
.setColor('Orange')
.setTitle(getMessage('misc.error.title'))
.setDescription(getMessage('misc.error.description'))
.addFields([
{
name: getMessage('misc.error.fields.identifier'),
value: codeBlock(' ' + ref + ' '),
},
]),
],
};
interaction.reply(data).catch(() => interaction.editReply(data));
} }
}; };