1
0
Fork 0
cloudservices/src/commands/lock.ts

28 lines
1.0 KiB
TypeScript
Raw Normal View History

import fs from 'fs-extra';
import { Message } from 'eris';
import Client from '../Client';
import Command from '../class/Command';
2019-10-15 19:10:37 -04:00
import Util from '../Util';
export default class Lock extends Command {
2019-10-15 19:10:37 -04:00
util: Util = new Util(this.client)
constructor(client: Client) {
super(client);
this.name = 'lock';
this.description = 'Locks an account.';
this.permissions = { roles: ['608095934399643649', '521312697896271873'] };
2019-10-15 18:38:49 -04:00
this.enabled = true;
}
2019-10-15 18:38:49 -04:00
public async run(message: Message, args: string[]) { // eslint-disable-line
2019-10-15 19:10:37 -04:00
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...***`);
} catch (error) {
return this.util.handleError(error, message, this);
}
}
}