Files
xiao/commands/random/currency.js
T
Daniel Odendahl Jr 64cf12bdf5 Meow
2017-05-05 14:01:20 +00:00

58 lines
2.1 KiB
JavaScript

const { Command } = require('discord.js-commando');
const request = require('superagent');
const codes = require('./currencycodes');
module.exports = class CurrencyCommand extends Command {
constructor(client) {
super(client, {
name: 'currency',
group: 'random',
memberName: 'currentUser',
description: 'Converts from one currency to another.',
details: `**Codes:** ${codes.join(', ')}`,
args: [
{
key: 'base',
prompt: 'What currency code do you want to use as the base?',
type: 'string',
validate: base => {
if(codes[base.toUpperCase()])
return true;
return `${base} is not a valid currency code. Use \`help currency\` to view a list of codes.`;
},
parse: base => base.toUpperCase()
},
{
key: 'to',
prompt: 'What currency code do you want to convert to?',
type: 'string',
validate: to => {
if(codes[to.toUpperCase()])
return true;
return `${to} is not a valid currency code. Use \`help currency\` to view a list of codes.`;
},
parse: code => code.toUpperCase()
},
{
key: 'amount',
prompt: 'How much money should be converted? Do not use symbols.',
type: 'integer'
}
]
});
}
async run(msg, args) {
const { base, to, amount } = args;
try {
const { body } = await request
.get(`http://api.fixer.io/latest?base=${base}`);
const rate = body[to];
const converted = rate * amount;
return msg.say(`${amount} ${base} is ${converted} ${to}.`);
} catch(err) {
return msg.say('An Unknown Error Occurred.');
}
}
};