mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
69 lines
2.4 KiB
JavaScript
69 lines
2.4 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const { stripIndents } = require('common-tags');
|
|
const { wait } = require('../../structures/Util');
|
|
|
|
module.exports = class LockdownCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'lockdown',
|
|
group: 'moderation',
|
|
memberName: 'lockdown',
|
|
description: 'Prevents users from posting in the current channel, or removes a lockdown.',
|
|
guildOnly: true,
|
|
clientPermissions: ['ADMINISTRATOR'],
|
|
userPermissions: ['ADMINISTRATOR'],
|
|
args: [
|
|
{
|
|
key: 'action',
|
|
prompt: 'What action should be performed? Either start or stop.',
|
|
type: 'string',
|
|
default: 'start',
|
|
validate: action => {
|
|
if (['start', 'stop'].includes(action.toLowerCase())) return true;
|
|
return 'Invalid action, please enter either start or stop.';
|
|
},
|
|
parse: action => action.toLowerCase()
|
|
},
|
|
{
|
|
key: 'time',
|
|
prompt: 'How long should the channel be locked down (in minutes)?',
|
|
type: 'integer',
|
|
default: '',
|
|
validate: time => {
|
|
if (time > 0 && time < 11) return true;
|
|
return 'Please keep the time under 10 minutes.';
|
|
},
|
|
parse: time => time * 60000
|
|
}
|
|
]
|
|
});
|
|
|
|
this.channels = new Set();
|
|
}
|
|
|
|
async run(msg, args) { // eslint-disable-line consistent-return
|
|
const { action, time } = args;
|
|
if (action === 'start') {
|
|
if (this.channels.has(msg.channel.id)) return msg.say('This channel is already locked down.');
|
|
await msg.channel.overwritePermissions(msg.guild.defaultRole, { SEND_MESSAGES: false });
|
|
this.channels.add(msg.channel.id);
|
|
await msg.say(stripIndents`
|
|
Lockdown started, users without overwrites can no longer post messages.
|
|
${time ? `Please wait ${time / 60000} minutes.` : 'Please use `lockdown stop` to end the lockdown.'}
|
|
`);
|
|
if (!time) return null;
|
|
await wait(time);
|
|
if (!this.channels.has(msg.channel.id)) return null;
|
|
await msg.channel.overwritePermissions(msg.guild.defaultRole, { SEND_MESSAGES: null });
|
|
this.channels.delete(msg.channel.id);
|
|
return msg.say('Lockdown ended, all users can now post messages.');
|
|
}
|
|
if (action === 'stop') {
|
|
if (!this.channels.has(msg.channel.id)) return msg.say('This channel is not locked down.');
|
|
await msg.channel.overwritePermissions(msg.guild.defaultRole, { SEND_MESSAGES: null });
|
|
this.channels.delete(msg.channel.id);
|
|
return msg.say('Lockdown ended, all users can now post messages.');
|
|
}
|
|
}
|
|
};
|