Files
xiao/commands/edit-text/dec-talk.js
T
Dragon Fire bd83ef0b6e Fix
2020-05-04 22:14:42 -04:00

73 lines
2.2 KiB
JavaScript

const Command = require('../../structures/Command');
const request = require('node-superfetch');
module.exports = class DECTalkCommand extends Command {
constructor(client) {
super(client, {
name: 'dec-talk',
aliases: ['text-to-speech', 'tts'],
group: 'edit-text',
memberName: 'dec-talk',
description: 'The world\'s best Text-to-Speech.',
guildOnly: true,
throttling: {
usages: 1,
duration: 10
},
userPermissions: ['CONNECT', 'SPEAK'],
clientPermissions: ['ADD_REACTIONS', 'READ_MESSAGE_HISTORY'],
credit: [
{
name: 'calzoneman',
url: 'https://github.com/calzoneman',
reason: 'API',
reasonURL: 'https://github.com/calzoneman/aeiou'
},
{
name: 'Digital Equipment Corporation',
url: 'http://gordonbell.azurewebsites.net/digital/timeline/tmlnhome.htm',
reason: 'Original DECTalk Software'
},
{
name: 'NASA',
url: 'https://www.nasa.gov/',
reason: 'Original "Moonbase Alpha" Game',
reasonURL: 'https://store.steampowered.com/app/39000/Moonbase_Alpha/'
}
],
args: [
{
key: 'text',
prompt: 'What text do you want to say?',
type: 'string',
max: 1024
}
]
});
}
async run(msg, { text }) {
const voiceChannel = msg.member.voice.channel;
if (!voiceChannel) return msg.say('Please enter a voice channel first.');
if (!voiceChannel.permissionsFor(this.client.user).has(['CONNECT', 'SPEAK'])) {
return msg.say('Missing the "Connect" or "Speak" permission for the voice channel.');
}
if (!voiceChannel.joinable) return msg.say('Your voice channel is not joinable.');
if (this.client.voice.connections.has(voiceChannel.guild.id)) return msg.say('I am already playing a sound.');
try {
const connection = await voiceChannel.join();
const { url } = await request
.get('http://tts.cyzon.us/tts')
.query({ text });
const dispatcher = connection.play(url);
await msg.react('🔉');
dispatcher.once('finish', () => voiceChannel.leave());
dispatcher.once('error', () => voiceChannel.leave());
return null;
} catch (err) {
voiceChannel.leave();
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};