diff --git a/src/commands/index.ts b/src/commands/index.ts index c4c951d..4e449fc 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -35,6 +35,7 @@ export { default as roleinfo } from './roleinfo'; export { default as score } from './score'; export { default as sip } from './sip'; export { default as site } from './site'; +export { default as slowmode } from './slowmode'; export { default as stats } from './stats'; export { default as storemessages } from './storemessages'; export { default as sysinfo } from './sysinfo'; diff --git a/src/commands/slowmode.ts b/src/commands/slowmode.ts new file mode 100644 index 0000000..729ff89 --- /dev/null +++ b/src/commands/slowmode.ts @@ -0,0 +1,34 @@ +import { Message, GuildTextableChannel } from 'eris'; +import moment, { unitOfTime } from 'moment'; +import { Client, Command } from '../class'; + +export default class Slowmode extends Command { + regex: RegExp; + + constructor(client: Client) { + super(client); + this.name = 'slowmode'; + this.description = 'Set slowmode to a channel.'; + this.usage = 'slowmode '; + this.permissions = 1; + this.guildOnly = true; + this.enabled = true; + this.regex = /[a-z]+|[^a-z]+/gi; + } + + public async run(message: Message, args: string[]) { + try { + if (!args[0]) return this.client.commands.get('help').run(message, [this.name]); + + const [length, unit] = args[0].match(this.regex); + if (Number.isNaN(Number(length))) return this.error(message.channel, 'Could not determine the slowmode time.'); + const momentSeconds: number = Math.round(moment.duration(length, unit as unitOfTime.Base || 's').asSeconds()); + + if (momentSeconds > 21600 || momentSeconds < 0) return this.error(message.channel, 'Slowmode must be between 0 seconds and 6 hours.'); + + return message.channel.edit({ rateLimitPerUser: momentSeconds }).then((c) => message.addReaction(':success:477618704155410452')); + } catch (err) { + return this.client.util.handleError(err, message, this); + } + } +}