Doomsday Clock Command

This commit is contained in:
Daniel Odendahl Jr
2017-12-21 17:38:18 +00:00
parent bcf872fa18
commit d936b07a4c
2 changed files with 29 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
const { Command } = require('discord.js-commando');
const snekfetch = require('snekfetch');
const { stripIndents } = require('common-tags');
module.exports = class DoomsdayClockCommand extends Command {
constructor(client) {
super(client, {
name: 'doomsday-clock',
group: 'events',
memberName: 'doomsday-clock',
description: 'Responds with the current time of the Doomsday Clock.'
});
}
async run(msg) {
try {
const { text } = await snekfetch.get('https://thebulletin.org/timeline');
const time = text.match(/IT IS(?: STILL)? (.+) MINUTES TO MIDNIGHT/)[0];
const desc = text.match(/<div class="body-text"><span class="timeline-year">(.+)<\/span>: (.+)<\/div>/);
return msg.say(stripIndents`
**${time}**
${desc[1]}: ${desc[2].replace(/<a href="(?:.+)">(.+)<\/a>/g, '$1').replace(/<\/div>/g, '')}
`);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "60.0.0",
"version": "60.1.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {