Files
xiao/commands/search/http-cat.js
T
2018-03-19 22:41:40 +00:00

32 lines
899 B
JavaScript

const { Command } = require('discord.js-commando');
const snekfetch = require('snekfetch');
module.exports = class HTTPCatCommand extends Command {
constructor(client) {
super(client, {
name: 'http-cat',
group: 'search',
memberName: 'http-cat',
description: 'Responds with a cat for an HTTP status code.',
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'code',
prompt: 'What code do you want to get the cat of?',
type: 'integer'
}
]
});
}
async run(msg, { code }) {
try {
const { body, headers } = await snekfetch.get(`https://http.cat/${code}.jpg`);
if (headers['content-type'] === 'text/html') return msg.say('Could not find any results.');
return msg.say({ files: [{ attachment: body, name: `${code}.jpg` }] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};