add unlock command

merge-requests/1/merge
Matthew 2019-10-26 13:06:40 -04:00
parent 06c4390549
commit be6866fbd3
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 55 additions and 0 deletions

55
src/commands/unlock.ts Normal file
View File

@ -0,0 +1,55 @@
import uuid from 'uuid/v4';
import moment from 'moment';
import { Message } from 'eris';
import { Client } from '..';
import { Command, RichEmbed } from '../class';
export default class Unlock extends Command {
constructor(client: Client) {
super(client);
this.name = 'unlock';
this.description = 'Unlocks an account.';
this.permissions = { roles: ['608095934399643649', '521312697896271873'] };
this.enabled = true;
}
public async run(message: Message, args: string[]) { // eslint-disable-line
try {
const account = await this.client.db.Account.findOne({ $or: [{ account: args[0] }, { userID: args[0].replace(/[<@!>]/gi, '') }] });
if (!account) return message.channel.createMessage(`***${this.client.stores.emojis.error} Cannot find user.***`);
const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Locking account...***`);
if (!account.locked) return edit.edit(`***${this.client.stores.emojis.error} This account is already unlocked.***`);
if (account.username === 'matthew' || account.root) return edit.edit(`***${this.client.stores.emojis.error} Permission denied.***`);
await this.client.util.exec(`unlock ${account.username}`);
const moderation = new this.client.db.Moderation({
username: account.username,
userID: account.userID,
logID: uuid(),
moderatorID: message.author.id,
reason: args.slice(1).join(' '),
type: 3,
date: new Date(),
});
await moderation.save();
edit.edit(`***${this.client.stores.emojis.success} Account ${account.username} has been unlocked by Supervisor ${message.author.username}#${message.author.discriminator}.***`);
const embed = new RichEmbed();
embed.setTitle('Account Infraction | UnLock');
embed.setColor(15158332);
embed.addField('User', `${account.username} | <@${account.userID}>`, true);
embed.addField('Supervisor', `<@${message.author.id}>`, true);
if (args.slice(1).join(' ').length > 0) embed.addField('Reason', args.slice(1).join(' '), true);
embed.setFooter(this.client.user.username, this.client.user.avatarURL);
embed.setTimestamp();
// @ts-ignore
this.client.getDMChannel(account.userID).then((user) => {
// @ts-ignore
user.createMessage({ embed });
});
// @ts-ignore
this.client.createMessage('580950455581147146', { embed });
} catch (error) {
await this.client.util.handleError(error, message, this);
}
}
}