const { Command } = require('discord.js-commando'); const { RichEmbed } = require('discord.js'); const request = require('superagent'); module.exports = class TodayCommand extends Command { constructor(client) { super(client, { name: 'today', group: 'random', memberName: 'today', description: 'Tells you what happened today in history.' }); } async run(msg) { if (msg.channel.type !== 'dm') if (!msg.channel.permissionsFor(this.client.user).has('EMBED_LINKS')) return msg.say('This Command requires the `Embed Links` Permission.'); try { const { text } = await request .get('http://history.muffinlabs.com/date') .buffer(true); const parsed = JSON.parse(text); const events = parsed.data.Events; const event = events[Math.floor(Math.random() * events.length)]; const embed = new RichEmbed() .setColor(0x9797FF) .setURL(parsed.url) .setTitle(`On this day (${parsed.date})...`) .setTimestamp() .setDescription(`${event.year}: ${event.text}`); return msg.embed(embed); } catch (err) { return msg.say(err); } } };