Files
xiao/commands/search/itunes.js
T
2017-10-24 19:02:27 +00:00

71 lines
2.0 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 { list } = require('../../util/Util');
const countries = ['us', 'jp'];
module.exports = class ITunesCommand extends Command {
constructor(client) {
super(client, {
name: 'itunes',
aliases: ['song', 'music', 'apple-music', 'itunes-music'],
group: 'search',
memberName: 'itunes',
description: 'Searches iTunes for your query.',
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'country',
prompt: `What country should results be obtained for? Either ${list(countries, 'or')}.`,
type: 'string',
validate: country => {
if (countries.includes(country.toLowerCase())) return true;
return `Invalid country, please enter either ${list(countries, 'or')}.`;
},
parse: country => country.toLowerCase()
},
{
key: 'query',
prompt: 'What song would you like to search for?',
type: 'string'
}
]
});
}
async run(msg, { country, query }) {
try {
const { text } = await snekfetch
.get('https://itunes.apple.com/search')
.query({
term: query,
media: 'music',
entity: 'song',
limit: 1,
explicit: msg.channel.nsfw ? 'yes' : 'no',
country
});
const body = JSON.parse(text);
if (!body.results.length) return msg.say('Could not find any results.');
const data = body.results[0];
const embed = new MessageEmbed()
.setColor(0xFEFEFE)
.setAuthor('iTunes', 'https://i.imgur.com/PR29ow0.jpg')
.setURL(data.trackViewUrl)
.setThumbnail(data.artworkUrl100)
.setTitle(data.trackName)
.addField(' Artist',
data.artistName, true)
.addField(' Album',
data.collectionName, true)
.addField(' Release Date',
new Date(data.releaseDate).toDateString(), true)
.addField(' Genre',
data.primaryGenreName, true);
return msg.embed(embed);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};