Files
xiao/commands/portal/send.js
T
2018-05-30 12:04:21 +00:00

36 lines
1.3 KiB
JavaScript

const Command = require('../../structures/Command');
module.exports = class PortalSendCommand extends Command {
constructor(client) {
super(client, {
name: 'portal-send',
aliases: ['send-portal-message', 'portal-message', 'send-portal-msg', 'portal-msg'],
group: 'portal',
memberName: 'send',
description: 'Send a message to a portal channel.',
args: [
{
key: 'message',
prompt: 'What message would you like to send?',
type: 'string',
max: 1000
}
]
});
}
async run(msg, { message }) {
if (/discord(\.gg|app\.com\/invite|\.me)\//gi.test(message)) return msg.reply('Please do not send invites.');
let channels = this.client.provider.get('global', 'portals', []).filter(c => this.client.channels.has(c));
if (msg.channel.type === 'text') channels = channels.filter(channel => !msg.guild.channels.has(channel));
if (!channels.length) return msg.reply('No channels have an open portal...');
const channel = this.client.channels.get(channels[Math.floor(Math.random() * channels.length)]);
try {
await channel.send(`**${msg.author.tag} (${msg.channel.type !== 'text' ? 'DM' : msg.guild.name})**: ${message}`);
return msg.say(`Message sent to **${channel.name}** in **${channel.guild.name}**!`);
} catch (err) {
return msg.reply('Failed to send the message. Try again later!');
}
}
};