woomy-v2/bot/commands/Fun/inspire.js

31 lines
1 KiB
JavaScript
Raw Normal View History

const fetch = require('node-fetch');
module.exports = class {
constructor (name, category) {
this.name = name,
this.category = category,
this.enabled = true,
this.devOnly = false,
2021-03-04 01:56:03 +00:00
this.aliases = [],
this.userPerms = [],
this.botPerms = [],
this.cooldown = 2000,
this.help = {
2020-10-29 08:20:45 +00:00
description: 'Generates a random (and likely terrible) inspirational quote.',
arguments: '',
details: '',
examples: null
};
}
run (client, message, args, data) { //eslint-disable-line no-unused-vars
message.channel.sendTyping();
try {
fetch('http://inspirobot.me/api?generate=true', { headers: { 'User-Agent': client.config.userAgent }})
.then(res => res.text())
.then(body => message.channel.createMessage(body));
} catch (err) {
2020-11-10 03:31:49 +00:00
message.channel.createMessage(`${client.emojis.botError} An error has occurred: ${err}`);
}
}
};