Files
xiao/commands/search/anime.js
T
Daniel Odendahl Jr ffa05f01ff structures -> util
2017-10-13 21:46:29 +00:00

54 lines
1.7 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');
const { shorten } = require('../../util/Util');
module.exports = class AnimeCommand extends Command {
constructor(client) {
super(client, {
name: 'anime',
aliases: ['my-anime-list-anime', 'mal-anime', 'kitsu-anime'],
group: 'search',
memberName: 'anime',
description: 'Searches Kitsu.io for your query, getting anime results.',
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'query',
prompt: 'What anime would you like to search for?',
type: 'string'
}
]
});
}
async run(msg, { query }) {
try {
const { text } = await snekfetch
.get('https://kitsu.io/api/edge/anime')
.query({ 'filter[text]': query });
const body = JSON.parse(text);
if (!body.data.length) return msg.say('Could not find any results.');
const data = body.data[0].attributes;
const embed = new MessageEmbed()
.setColor(0xF75239)
.setAuthor('Kitsu.io', 'https://i.imgur.com/y7nDpqR.png')
.setURL(`https://kitsu.io/anime/${data.slug}`)
.setThumbnail(data.posterImage ? data.posterImage.original : null)
.setTitle(data.canonicalTitle)
.setDescription(shorten(data.synopsis))
.addField(' Type',
`${data.showType} - ${data.status}`, true)
.addField(' Episodes',
data.episodeCount || 'N/A', true)
.addField(' Start Date',
data.startDate ? new Date(data.startDate).toDateString() : 'N/A', true)
.addField(' End Date',
data.endDate ? new Date(data.endDate).toDateString() : 'N/A', true);
return msg.embed(embed);
} catch (err) {
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};