Convert everything to superagent properly

This commit is contained in:
Daniel Odendahl Jr
2018-06-08 15:36:21 +00:00
parent 63f3398858
commit b4c815f403
17 changed files with 163 additions and 155 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ module.exports = class ReadQRCodeCommand extends Command {
constructor(client) {
super(client, {
name: 'read-qr-code',
aliases: ['scan-qr-code', 'scan-qr'],
aliases: ['scan-qr-code', 'scan-qr', 'read-qr'],
group: 'analyze',
memberName: 'read-qr-code',
description: 'Reads a QR Code.',
+1
View File
@@ -4,6 +4,7 @@ module.exports = class ZodiacSignCommand extends Command {
constructor(client) {
super(client, {
name: 'zodiac-sign',
aliases: ['zodiac'],
group: 'analyze',
memberName: 'zodiac-sign',
description: 'Responds with the Zodiac Sign for the given month/day.',
+1 -1
View File
@@ -7,7 +7,7 @@ module.exports = class HolidaysCommand extends Command {
constructor(client) {
super(client, {
name: 'holidays',
aliases: ['google-calendar'],
aliases: ['google-calendar', 'holiday'],
group: 'events',
memberName: 'holidays',
description: 'Responds with today\'s holidays.'
+3 -1
View File
@@ -33,7 +33,9 @@ module.exports = class TodayInHistoryCommand extends Command {
async run(msg, { month, day }) {
const date = month && day ? `/${month}/${day}` : '';
try {
const { text } = await request.get(`http://history.muffinlabs.com/date${date}`);
const { text } = await request
.get(`http://history.muffinlabs.com/date${date}`)
.buffer();
const body = JSON.parse(text);
const events = body.data.Events;
const event = events[Math.floor(Math.random() * events.length)];
+2 -2
View File
@@ -44,7 +44,7 @@ module.exports = class AkinatorCommand extends Command {
if (msgs.first().content.toLowerCase() === 'end') break;
ans = answers.indexOf(msgs.first().content.toLowerCase());
}
const guess = await this.finish(msg.channel);
const guess = await this.guess(msg.channel);
if (!guess) return msg.reply('Hmm... I seem to be having a bit of trouble. Check back soon!');
const embed = new MessageEmbed()
.setColor(0xF78B26)
@@ -108,7 +108,7 @@ module.exports = class AkinatorCommand extends Command {
return data;
}
async finish(channel) {
async guess(channel) {
const session = this.sessions.get(channel.id);
const { body } = await request
.get('http://192.99.38.142:8126/ws/list')
+7 -10
View File
@@ -39,7 +39,11 @@ module.exports = class HangmanCommand extends Command {
===========
\`\`\`
`);
const guess = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, {
const filter = res => {
const choice = res.content.toLowerCase();
return res.author.id === msg.author.id && !confirmation.includes(choice) && !incorrect.includes(choice);
};
const guess = await msg.channel.awaitMessages(filter, {
max: 1,
time: 30000
});
@@ -49,21 +53,14 @@ module.exports = class HangmanCommand extends Command {
}
const choice = guess.first().content.toLowerCase();
if (choice === 'end') break;
if (choice.length > 1) {
if (word === choice) break;
else await msg.say('Nope, that\'s not the word, try again!');
points++;
} else if (confirmation.includes(choice) || incorrect.includes(choice)) {
await msg.say('You have already picked that letter!');
} else if (word.includes(choice)) {
await msg.say('Nice job!');
if (choice.length > 1) break;
if (word.includes(choice)) {
for (let i = 0; i < word.length; i++) {
if (word[i] !== choice) continue; // eslint-disable-line max-depth
confirmation.push(word[i]);
display[i] = word[i];
}
} else {
await msg.say('Nope!');
incorrect.push(choice);
points++;
}
+1 -2
View File
@@ -35,7 +35,7 @@ module.exports = class OsuSignatureCommand extends Command {
async run(msg, { user, color }) {
try {
const { body, text } = await request
const { body } = await request
.get('https://lemmmy.pw/osusig/sig.php')
.query({
colour: color,
@@ -48,7 +48,6 @@ module.exports = class OsuSignatureCommand extends Command {
onlineindicator: '',
xpbar: ''
});
if (text.includes('<b>Warning</b>')) return msg.say('Could not find any results.');
return msg.say({ files: [{ attachment: body, name: 'osu-signature.png' }] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
+32 -15
View File
@@ -1,7 +1,5 @@
const Command = require('../../structures/Command');
const request = require('superagent');
const { list } = require('../../util/Util');
const codes = require('../../assets/json/currency');
module.exports = class CurrencyCommand extends Command {
constructor(client) {
@@ -11,7 +9,6 @@ module.exports = class CurrencyCommand extends Command {
group: 'number-edit',
memberName: 'currency',
description: 'Converts money from one currency to another.',
details: `**Codes**: ${codes.join(', ')}`,
args: [
{
key: 'amount',
@@ -20,34 +17,54 @@ module.exports = class CurrencyCommand extends Command {
},
{
key: 'base',
prompt: `What currency code do you want to use as the base? Either ${list(codes, 'or')}.`,
prompt: 'What currency code do you want to use as the base?',
type: 'string',
oneOf: codes,
parse: base => base.toUpperCase()
},
{
key: 'target',
prompt: `What currency code do you want to convert to? Either ${list(codes, 'or')}.`,
prompt: 'What currency code do you want to convert to?',
type: 'string',
oneOf: codes,
parse: target => target.toUpperCase()
}
]
});
this.currencies = null;
this.rates = new Map();
}
async run(msg, { base, target, amount }) {
if (base === target) return msg.say(`Converting ${base} to ${target} is the same value, dummy.`);
try {
const { body } = await request
.get('http://api.fixer.io/latest')
.query({
base,
symbols: target
});
return msg.say(`${amount} ${base} is ${amount * body.rates[target]} ${target}.`);
if (!this.currencies) await this.fetchCurrencies();
base = this.currencies[base] || this.currencies.find($ => $.currencyName.toLowerCase() === base);
if (!base) return msg.say('Invalid base.');
target = this.currencies[target] || this.currencies.find($ => $.currencyName.toLowerCase() === target);
if (!target) return msg.say('Invalid target.');
if (base.id === target.id) return msg.say(`Converting ${base.id} to ${target.id} is the same value, dummy.`);
const rate = await this.fetchRate(base, target);
return msg.say(`${amount} ${base.id} is ${amount * rate} ${target.id}.`);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
async fetchCurrencies() {
const { body } = await request.get('https://free.currencyconverterapi.com/api/v5/currencies');
this.currencies = body.results;
return body.results;
}
async fetchRate(base, target) {
const query = `${base.id}_${target.id}`;
if (this.rates.has(query)) return this.rates.get(query);
const { body } = await request
.get('https://free.currencyconverterapi.com/api/v5/convert')
.query({
q: query,
compact: 'ultra'
});
this.rates.set(query, body[query]);
return body[query];
}
};
+1 -2
View File
@@ -33,8 +33,7 @@ module.exports = class RedditCommand extends Command {
**${post.title}**
<https://www.reddit.com${post.permalink}>
${post.ups}
${post.downs}
${post.ups}${post.downs}
`);
} catch (err) {
if (err.status === 403) return msg.say('This subreddit is private.');
+2 -2
View File
@@ -21,10 +21,10 @@ module.exports = class HttpCatCommand extends Command {
async run(msg, { code }) {
try {
const { body, headers } = await request.get(`https://http.cat/${code}.jpg`);
if (headers['content-type'] === 'text/html') return msg.say('Could not find any results.');
const { body } = await request.get(`https://http.cat/${code}.jpg`);
return msg.say({ files: [{ attachment: body, name: `${code}.jpg` }] });
} catch (err) {
if (err.status === 404) return msg.say('Could not find any results.');
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
+48
View File
@@ -0,0 +1,48 @@
const Command = require('../../structures/Command');
const { MessageEmbed } = require('discord.js');
const request = require('superagent');
const { shorten } = require('../../util/Util');
module.exports = class KitsuAnimeCommand extends Command {
constructor(client) {
super(client, {
name: 'kitsu-anime',
aliases: ['my-anime-list-anime', 'mal-anime', 'anime'],
group: 'search',
memberName: 'kitsu-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 { body } = await request
.get('https://kitsu.io/api/edge/anime')
.query({ 'filter[text]': query });
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/lVqooyd.png', 'https://kitsu.io/explore/anime')
.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 || '???', true)
.addField(' Start Date', data.startDate ? new Date(data.startDate).toDateString() : '???', true)
.addField(' End Date', data.endDate ? new Date(data.endDate).toDateString() : '???', true);
return msg.embed(embed);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+48
View File
@@ -0,0 +1,48 @@
const Command = require('../../structures/Command');
const { MessageEmbed } = require('discord.js');
const request = require('superagent');
const { shorten } = require('../../util/Util');
module.exports = class KitsuMangaCommand extends Command {
constructor(client) {
super(client, {
name: 'kitsu-manga',
aliases: ['my-anime-list-manga', 'mal-manga', 'manga'],
group: 'search',
memberName: 'kitsu-manga',
description: 'Searches Kitsu.io for your query, getting manga results.',
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'query',
prompt: 'What manga would you like to search for?',
type: 'string'
}
]
});
}
async run(msg, { query }) {
try {
const { body } = await request
.get('https://kitsu.io/api/edge/manga')
.query({ 'filter[text]': query });
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/lVqooyd.png', 'https://kitsu.io/explore/manga')
.setURL(`https://kitsu.io/manga/${data.slug}`)
.setThumbnail(data.posterImage ? data.posterImage.original : null)
.setTitle(data.canonicalTitle)
.setDescription(shorten(data.synopsis))
.addField(' Type', `${data.subtype} - ${data.status}`, true)
.addField(' Volumes / Chapters', `${data.volumeCount || '???'} / ${data.chapterCount || '???'}`, true)
.addField(' Start Date', data.startDate ? new Date(data.startDate).toDateString() : '???', true)
.addField(' End Date', data.endDate ? new Date(data.endDate).toDateString() : '???', true);
return msg.embed(embed);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
-54
View File
@@ -1,54 +0,0 @@
const Command = require('../../structures/Command');
const { MessageEmbed } = require('discord.js');
const request = require('superagent');
const { parseString } = require('xml2js');
const { promisify } = require('util');
const xml = promisify(parseString);
const { shorten, base64, cleanXML } = require('../../util/Util');
const { MAL_USERNAME, MAL_PASSWORD } = process.env;
module.exports = class MyAnimeListAnimeCommand extends Command {
constructor(client) {
super(client, {
name: 'my-anime-list-anime',
aliases: ['mal-anime', 'anime'],
group: 'search',
memberName: 'my-anime-list-anime',
description: 'Searches My Anime List 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 request
.get('https://myanimelist.net/api/anime/search.xml')
.query({ q: query })
.set({ Authorization: `Basic ${base64(`${MAL_USERNAME}:${MAL_PASSWORD}`)}` });
const body = await xml(text);
const data = body.anime.entry[0];
const embed = new MessageEmbed()
.setColor(0x2D54A2)
.setAuthor('My Anime List', 'https://i.imgur.com/5rivpMM.png', 'https://myanimelist.net/')
.setURL(`https://myanimelist.net/anime/${data.id[0]}`)
.setThumbnail(data.image[0])
.setTitle(data.title[0])
.setDescription(shorten(cleanXML(data.synopsis[0])))
.addField(' Type', `${data.type[0]} - ${data.status[0]}`, true)
.addField(' Episodes', data.episodes[0], true)
.addField(' Start Date', data.start_date[0] !== '0000-00-00' ? data.start_date[0] : '???', true)
.addField(' End Date', data.end_date[0] !== '0000-00-00' ? data.end_date[0] : '???', true);
return msg.embed(embed);
} catch (err) {
if (err.message === 'Parse Error') return msg.say('Could not find any results.');
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
-55
View File
@@ -1,55 +0,0 @@
const Command = require('../../structures/Command');
const { MessageEmbed } = require('discord.js');
const request = require('superagent');
const { parseString } = require('xml2js');
const { promisify } = require('util');
const xml = promisify(parseString);
const { shorten, base64, cleanXML } = require('../../util/Util');
const { MAL_USERNAME, MAL_PASSWORD } = process.env;
module.exports = class MyAnimeListMangaCommand extends Command {
constructor(client) {
super(client, {
name: 'my-anime-list-manga',
aliases: ['mal-manga', 'manga'],
group: 'search',
memberName: 'my-anime-list-manga',
description: 'Searches My Anime List for your query, getting manga results.',
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'query',
prompt: 'What manga would you like to search for?',
type: 'string'
}
]
});
}
async run(msg, { query }) {
try {
const { text } = await request
.get('https://myanimelist.net/api/manga/search.xml')
.query({ q: query })
.set({ Authorization: `Basic ${base64(`${MAL_USERNAME}:${MAL_PASSWORD}`)}` });
const body = await xml(text);
const data = body.manga.entry[0];
const embed = new MessageEmbed()
.setColor(0x2D54A2)
.setAuthor('My Anime List', 'https://i.imgur.com/5rivpMM.png', 'https://myanimelist.net/')
.setURL(`https://myanimelist.net/manga/${data.id[0]}`)
.setThumbnail(data.image[0])
.setTitle(data.title[0])
.setDescription(shorten(cleanXML(data.synopsis[0])))
.addField(' Type', `${data.type[0]} - ${data.status[0]}`, true)
.addField(' Volumes / Chapters',
`${Number.parseInt(data.volumes[0], 10) || '???'} / ${Number.parseInt(data.chapters[0], 10) || '???'}`, true)
.addField(' Start Date', data.start_date[0] !== '0000-00-00' ? data.start_date[0] : '???', true)
.addField(' End Date', data.end_date[0] !== '0000-00-00' ? data.end_date[0] : '???', true);
return msg.embed(embed);
} catch (err) {
if (err.message === 'Parse Error') return msg.say('Could not find any results.');
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -51,7 +51,7 @@ module.exports = class NeopetsItemCommand extends Command {
const price = text.match(/([0-9,]+) (NP|NC)/);
const url = `https://items.jellyneo.net/item/${id[1]}/`;
const details = await request.get(url);
const detailsText = details.raw.toString();
const detailsText = details.text;
return {
id: id[1],
url,
@@ -3,13 +3,13 @@ const { MessageEmbed } = require('discord.js');
const request = require('superagent');
const { shorten } = require('../../util/Util');
module.exports = class VocaloidCommand extends Command {
module.exports = class VocaDBCommand extends Command {
constructor(client) {
super(client, {
name: 'vocaloid',
aliases: ['vocadb', 'vocaloid-song', 'vocaloid-music'],
name: 'vocadb',
aliases: ['vocaloid', 'vocaloid-song', 'vocaloid-music'],
group: 'search',
memberName: 'vocaloid',
memberName: 'vocadb',
description: 'Searches VocaDB for your query.',
clientPermissions: ['EMBED_LINKS'],
args: [
+11 -5
View File
@@ -35,11 +35,17 @@ module.exports = class DECTalkCommand extends Command {
if (this.client.voiceConnections.has(channel.guild.id)) return msg.say('I am already playing a sound.');
try {
const connection = await channel.join();
const data = await request
.get('http://tts.cyzon.us/tts')
.query({ text })
.redirects(0);
const dispatcher = connection.play(`http://tts.cyzon.us${data.headers.location}`);
let url = 'http://tts.cyzon.us';
try {
await request
.get('http://tts.cyzon.us/tts')
.query({ text })
.redirects(0);
} catch (err) {
if (err.reponse.headers.location) url += err.response.headers.location;
else throw err;
}
const dispatcher = connection.play(url);
dispatcher.once('finish', () => channel.leave());
dispatcher.once('error', () => channel.leave());
return null;