Files
xiao/commands/analyze/gender.js
T
Daniel Odendahl Jr 45c8d62dd5 Credit Command
2019-04-14 00:03:38 +00:00

40 lines
1017 B
JavaScript

const Command = require('../../structures/Command');
const request = require('node-superfetch');
module.exports = class GenderCommand extends Command {
constructor(client) {
super(client, {
name: 'gender',
aliases: ['guess-gender', 'gender-guess'],
group: 'analyze',
memberName: 'gender',
description: 'Determines the gender of a name.',
credit: [
{
name: 'Genderize.io',
url: 'https://genderize.io/'
}
],
args: [
{
key: 'name',
prompt: 'What name do you want to determine the gender of?',
type: 'string'
}
]
});
}
async run(msg, { name }) {
try {
const { body } = await request
.get(`https://api.genderize.io/`)
.query({ name });
if (!body.gender) return msg.say(`I have no idea what gender ${body.name} is.`);
return msg.say(`I'm ${body.probability * 100}% sure ${body.name} is a ${body.gender} name.`);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};