const Command = require('../../structures/Command'); const { MessageEmbed } = require('discord.js'); const snekfetch = require('snekfetch'); const { list } = require('../../structures/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.resultCount) 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/TbqzJFs.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.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); } } };