Files
xiao/commands/events/today-in-history.js
T
2018-02-22 11:56:49 +00:00

55 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
module.exports = class TodayInHistoryCommand extends Command {
constructor(client) {
super(client, {
name: 'today-in-history',
aliases: ['event', 'today', 'history'],
group: 'events',
memberName: 'today-in-history',
description: 'Responds with an event that occurred today in history.',
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'month',
prompt: 'What month would you like to get an event for?',
type: 'month',
default: ''
},
{
key: 'day',
prompt: 'What day would you like to get an event for?',
type: 'integer',
default: '',
min: 1,
max: 31
}
]
});
}
async run(msg, { month, day }) {
const date = month && day ? `/${month}/${day}` : '';
try {
const { text } = await snekfetch.get(`http://history.muffinlabs.com/date${date}`);
const body = JSON.parse(text);
const events = body.data.Events;
const event = events[Math.floor(Math.random() * events.length)];
const embed = new MessageEmbed()
.setColor(0x9797FF)
.setURL(body.url)
.setTitle(`On this day (${body.date})...`)
.setTimestamp()
.setDescription(`${event.year}: ${event.text}`)
.addField(' See More',
event.links.map(link => `[${link.title}](${link.link.replace(/\)/g, '%29')})`).join(', '));
return msg.embed(embed);
} catch (err) {
if (err.status === 404 || err.status === 500) return msg.say('Invalid date.');
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};