Improvements

This commit is contained in:
Isaac 2021-03-30 22:27:54 +01:00
parent 245bba0c10
commit 591cc6e0a6
3 changed files with 15 additions and 10 deletions

View File

@ -8,6 +8,9 @@ module.exports = class SettingsCommand extends Command {
super(client, { super(client, {
internal: true, internal: true,
name: i18n('commands.settings.name'), name: i18n('commands.settings.name'),
aliases: [
i18n('commands.settings.aliases.config'),
],
description: i18n('commands.settings.description'), description: i18n('commands.settings.description'),
permissions: ['MANAGE_GUILD'] permissions: ['MANAGE_GUILD']
}); });

View File

@ -22,6 +22,9 @@
"name": "new" "name": "new"
}, },
"settings": { "settings": {
"aliases": {
"config": "config"
},
"description": "Configure Discord Tickets", "description": "Configure Discord Tickets",
"name": "settings", "name": "settings",
"response": { "response": {

View File

@ -66,9 +66,9 @@ module.exports = class CommandManager {
* @param {Message} message - Command message * @param {Message} message - Command message
*/ */
async handle(message) { async handle(message) {
let settings = await message.guild.settings; let settings = await message.guild.settings;
if (!settings) settings = await message.guild.createSettings(); if (!settings) settings = await message.guild.createSettings();
const prefix = settings.command_prefix; const prefix = settings.command_prefix;
const i18n = this.client.i18n.get(settings.locale); const i18n = this.client.i18n.get(settings.locale);
@ -81,7 +81,7 @@ module.exports = class CommandManager {
const cmd = this.commands.find(cmd => cmd.aliases.includes(cmd_name)); const cmd = this.commands.find(cmd => cmd.aliases.includes(cmd_name));
if (!cmd); if (!cmd);
let data = [...raw_args.matchAll(/(\w*)\s?:\s?("(.*)"|[\w<>@!#]*)/gmi)]; let data = [ ...raw_args.matchAll(/(\w+)\??\s?:\s?(["`'](.*)["`'];|[\w<>@!#]+)/gmi) ];
let args = {}; let args = {};
data.forEach(arg => args[arg[1]] = arg[3] || arg[2]); data.forEach(arg => args[arg[1]] = arg[3] || arg[2]);
@ -91,19 +91,19 @@ module.exports = class CommandManager {
return message.channel.send(i18n('no_perm', perms)); return message.channel.send(i18n('no_perm', perms));
} }
let guild_categories = await this.client.db.models.Category.findAll({
where: {
guild: message.guild.id
}
});
if (cmd.staff_only) { if (cmd.staff_only) {
let staff_roles = new Set(); // eslint-disable-line no-undef let staff_roles = new Set(); // eslint-disable-line no-undef
let guild_categories = await this.client.db.models.Category.findAll({
where: {
guild: message.guild.id
}
});
guild_categories.forEach(cat => { guild_categories.forEach(cat => {
cat.roles.forEach(r => staff_roles.add(r)); cat.roles.forEach(r => staff_roles.add(r));
}); });
staff_roles = staff_roles.filter(r => message.member.roles.cache.has(r)); staff_roles = staff_roles.filter(r => message.member.roles.cache.has(r));
if (staff_roles.length === 0) { const not_staff = staff_roles.length === 0;
if (not_staff) {
return message.channel.send(i18n('staff_only')); return message.channel.send(i18n('staff_only'));
} }
} }
@ -115,7 +115,6 @@ module.exports = class CommandManager {
this.client.log.warn(`An error occurred whilst executing the ${cmd_name} command`); this.client.log.warn(`An error occurred whilst executing the ${cmd_name} command`);
this.client.log.error(e); this.client.log.error(e);
} }
} }
}; };