mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const snekfetch = require('snekfetch');
|
|
const { list } = require('../../structures/Util');
|
|
const codes = require('../../assets/json/currency');
|
|
|
|
module.exports = class CurrencyCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'currency',
|
|
group: 'num-edit',
|
|
memberName: 'currency',
|
|
description: 'Converts a number from one currency to another.',
|
|
details: `**Codes:** ${codes.join(', ')}`,
|
|
args: [
|
|
{
|
|
key: 'base',
|
|
prompt: `What currency code do you want to use as the base? Either ${list(codes, 'or')}.`,
|
|
type: 'string',
|
|
validate: base => {
|
|
if (codes.includes(base.toUpperCase())) return true;
|
|
return `Invalid base, please enter either ${list(codes, 'or')}.`;
|
|
},
|
|
parse: base => base.toUpperCase()
|
|
},
|
|
{
|
|
key: 'target',
|
|
prompt: `What currency code do you want to convert to? Either ${list(codes, 'or')}.`,
|
|
type: 'string',
|
|
validate: target => {
|
|
if (codes.includes(target.toUpperCase())) return true;
|
|
return `Invalid target, please enter either ${list(codes, 'or')}.`;
|
|
},
|
|
parse: target => target.toUpperCase()
|
|
},
|
|
{
|
|
key: 'amount',
|
|
prompt: 'How much money should be converted? Do not use symbols.',
|
|
type: 'float'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
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 snekfetch
|
|
.get('http://api.fixer.io/latest')
|
|
.query({
|
|
base,
|
|
symbols: target
|
|
});
|
|
return msg.say(`${amount} ${base} is ${amount * body.rates[target]} ${target}.`);
|
|
} catch (err) {
|
|
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|