mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
60 lines
2.2 KiB
JavaScript
60 lines
2.2 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { RichEmbed } = require('discord.js');
|
|
|
|
module.exports = class WarnCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'warn',
|
|
group: 'moderation',
|
|
memberName: 'warn',
|
|
description: 'Warns a user and logs the warn to the mod_logs.',
|
|
guildOnly: true,
|
|
args: [
|
|
{
|
|
key: 'member',
|
|
prompt: 'What member do you want to warn?',
|
|
type: 'member'
|
|
},
|
|
{
|
|
key: 'reason',
|
|
prompt: 'What do you want to set the reason as?',
|
|
type: 'string',
|
|
validate: reason => {
|
|
if (reason.length < 140)
|
|
return true;
|
|
return `Please keep your reason under 140 characters, you have ${reason.length}.`;
|
|
}
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
hasPermission(msg) {
|
|
return msg.member.hasPermission('KICK_MEMBERS') || msg.member.roles.exists('name', msg.guild.settings.get('staffRole', 'Server Staff'));
|
|
}
|
|
|
|
async run(msg, args) {
|
|
const modlogs = msg.guild.channels.find('name', msg.guild.settings.get('modLog', 'mod_logs'));
|
|
if (!modlogs)
|
|
return msg.say('This Command requires a channel named `mod_logs` or one custom set with the `modchannel` command.');
|
|
if (!modlogs.permissionsFor(this.client.user).has('EMBED_LINKS'))
|
|
return msg.say('This Command requires the `Embed Links` Permission.');
|
|
const { member, reason } = args;
|
|
try {
|
|
await msg.say(':ok_hand:');
|
|
const embed = new RichEmbed()
|
|
.setAuthor(msg.author.tag, msg.author.displayAvatarURL)
|
|
.setColor(0xFFFF00)
|
|
.setTimestamp()
|
|
.setDescription(
|
|
`**Member:** ${member.user.tag} (${member.id})
|
|
**Action:** Warn
|
|
**Reason:** ${reason}`
|
|
);
|
|
return modlogs.send({embed});
|
|
} catch (err) {
|
|
return msg.say('An Unknown Error Occurred.');
|
|
}
|
|
}
|
|
};
|