mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
78 lines
2.7 KiB
JavaScript
78 lines
2.7 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const { stripIndents } = require('common-tags');
|
|
const snekfetch = require('snekfetch');
|
|
const { shuffle, list } = require('../../util/Util');
|
|
const types = ['multiple', 'boolean'];
|
|
const difficulties = ['easy', 'medium', 'hard'];
|
|
|
|
module.exports = class QuizCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'quiz',
|
|
aliases: ['jeopardy'],
|
|
group: 'games',
|
|
memberName: 'quiz',
|
|
description: 'Answer a quiz question.',
|
|
details: stripIndents`
|
|
**Types**: ${types.join(', ')}
|
|
**Difficulties**: ${difficulties.join(', ')}
|
|
`,
|
|
args: [
|
|
{
|
|
key: 'type',
|
|
prompt: `Which type of question would you like to have? Either ${list(types, 'or')}.`,
|
|
type: 'string',
|
|
validate: type => {
|
|
if (types.includes(type.toLowerCase())) return true;
|
|
return `Invalid type, please enter either ${list(types, 'or')}.`;
|
|
},
|
|
parse: type => type.toLowerCase()
|
|
},
|
|
{
|
|
key: 'difficulty',
|
|
prompt: `What should the difficulty of the game be? Either ${list(difficulties, 'or')}.`,
|
|
type: 'string',
|
|
default: '',
|
|
validate: difficulty => {
|
|
if (difficulties.includes(difficulty.toLowerCase())) return true;
|
|
return `Invalid difficulty, please enter either ${list(difficulties, 'or')}.`;
|
|
},
|
|
parse: difficulty => difficulty.toLowerCase()
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg, { type, difficulty }) {
|
|
try {
|
|
const { body } = await snekfetch
|
|
.get('https://opentdb.com/api.php')
|
|
.query({
|
|
amount: 1,
|
|
type,
|
|
encode: 'url3986',
|
|
difficulty
|
|
});
|
|
if (!body.results) return msg.reply('Oh no, a question could not be fetched. Try again later!');
|
|
const answers = body.results[0].incorrect_answers.map(answer => decodeURIComponent(answer.toLowerCase()));
|
|
const correct = decodeURIComponent(body.results[0].correct_answer.toLowerCase());
|
|
answers.push(correct);
|
|
await msg.say(stripIndents`
|
|
**You have 15 seconds to answer this question.**
|
|
_${decodeURIComponent(body.results[0].category)}_
|
|
${decodeURIComponent(body.results[0].question)}
|
|
${type === 'boolean' ? 'True or False?' : ''}${type === 'multiple' ? `${list(shuffle(answers), 'or')}?` : ''}
|
|
`);
|
|
const msgs = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, {
|
|
max: 1,
|
|
time: 15000
|
|
});
|
|
if (!msgs.size) return msg.say(`Sorry, time is up! It was ${correct}.`);
|
|
if (msgs.first().content.toLowerCase() !== correct) return msg.say(`Nope, sorry, it's ${correct}.`);
|
|
return msg.say('Nice job! 10/10! You deserve some cake!');
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|