const Command = require('../../structures/Command'); const { MessageEmbed } = require('discord.js'); const request = require('node-superfetch'); const { shorten, formatNumber } = require('../../util/Util'); module.exports = class UrbanCommand extends Command { constructor(client) { super(client, { name: 'urban', aliases: ['urban-dictionary', 'ud'], group: 'search', memberName: 'urban', description: 'Defines a word, but with Urban Dictionary.', clientPermissions: ['EMBED_LINKS'], credit: [ { name: 'Urban Dictionary', url: 'https://www.urbandictionary.com/', reason: 'API', reasonURL: 'https://github.com/zdict/zdict/wiki/Urban-dictionary-API-documentation' } ], args: [ { key: 'word', prompt: 'What word would you like to look up?', type: 'string' } ] }); } async run(msg, { word }) { try { const { body } = await request .get('http://api.urbandictionary.com/v0/define') .query({ term: word }); if (!body.list.length) return msg.say('Could not find any results.'); const data = body.list[0]; const embed = new MessageEmbed() .setColor(0x32A8F0) .setAuthor('Urban Dictionary', 'https://i.imgur.com/Fo0nRTe.png', 'https://www.urbandictionary.com/') .setURL(data.permalink) .setTitle(data.word) .setDescription(shorten(data.definition.replace(/\[|\]/g, ''))) .setFooter(`👍 ${formatNumber(data.thumbs_up)} 👎 ${formatNumber(data.thumbs_down)}`) .setTimestamp(new Date(data.written_on)) .addField('❯ Example', data.example ? shorten(data.example.replace(/\[|\]/g, ''), 1000) : 'None'); return msg.embed(embed); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); } } };