add anime & manga option to the trivia command and add clear leaderboard command

This commit is contained in:
Ayden Jahola 2024-09-05 21:29:50 +01:00
parent 70ac364608
commit 379afca76b
No known key found for this signature in database
GPG key ID: 71DD90AE4AE92742
3 changed files with 171 additions and 128 deletions

View file

@ -12,7 +12,17 @@ let lastApiCall = 0;
module.exports = {
data: new SlashCommandBuilder()
.setName("trivia")
.setDescription("Play a trivia game about video games"),
.setDescription("Play a trivia game")
.addStringOption((option) =>
option
.setName("category")
.setDescription("Choose a trivia category")
.setRequired(true)
.addChoices(
{ name: "Video Games", value: "15" },
{ name: "Anime & Manga", value: "31" }
)
),
async execute(interaction, client) {
const userId = interaction.user.id;
@ -20,16 +30,19 @@ module.exports = {
const guild = interaction.guild;
const timeLimit = 30000; // Time limit for answering in milliseconds
try {
const categoryId = interaction.options.getString("category");
const categoryName = categoryId === "15" ? "Video Games" : "Anime & Manga";
// Fetch a trivia question from the cache or the API
let triviaQuestion = await TriviaQuestion.findOne({
last_served: { $lt: new Date(Date.now() - QUESTION_EXPIRY) }, // Fetch questions not served recently
category: categoryName, // Filter by category
}).sort({ last_served: 1 });
if (!triviaQuestion || Date.now() - lastApiCall >= API_INTERVAL) {
// Fetch a new trivia question from OTDB
const response = await axios.get(
"https://opentdb.com/api.php?amount=1&category=15" // Category 15 is for Video Games
`https://opentdb.com/api.php?amount=1&category=${categoryId}`
);
triviaQuestion = response.data.results[0];
@ -40,12 +53,14 @@ module.exports = {
question: decode(triviaQuestion.question),
correct_answer: decode(triviaQuestion.correct_answer),
incorrect_answers: triviaQuestion.incorrect_answers.map(decode),
category: categoryName, // Include the category
last_served: null, // Initially not served
});
// Fetch the newly created question
triviaQuestion = await TriviaQuestion.findOne({
question: decode(triviaQuestion.question),
category: categoryName, // Filter by category
});
}
@ -57,9 +72,14 @@ module.exports = {
const question = decode(triviaQuestion.question);
const correctAnswer = decode(triviaQuestion.correct_answer);
const incorrectAnswers = triviaQuestion.incorrect_answers.map(decode);
const allAnswers = [...incorrectAnswers, correctAnswer].sort(
() => Math.random() - 0.5
);
let allAnswers = [...incorrectAnswers, correctAnswer];
// Handle True/False questions specifically
if (triviaQuestion.type === "boolean") {
allAnswers = ["True", "False"];
}
allAnswers = allAnswers.sort(() => Math.random() - 0.5); // Shuffle answers
// Create a mapping of numbers to answers
const answerMap = allAnswers.reduce((map, answer, index) => {
@ -86,12 +106,11 @@ module.exports = {
});
await interaction.reply({
content: `<@${userId}>`,
embeds: [triviaEmbed],
});
// Create a message collector specific to the user
const filter = (response) => {
const answerFilter = (response) => {
const userInput = response.content.trim();
const userAnswerNumber = parseInt(userInput, 10);
const userAnswerText =
@ -106,13 +125,13 @@ module.exports = {
);
};
const collector = interaction.channel.createMessageCollector({
filter,
const answerCollector = interaction.channel.createMessageCollector({
filter: answerFilter,
max: 1,
time: timeLimit,
});
collector.on("collect", async (message) => {
answerCollector.on("collect", async (message) => {
const userInput = message.content.trim();
const userAnswerNumber = parseInt(userInput, 10);
const userAnswer = answerMap[userAnswerNumber] || userInput;
@ -145,26 +164,12 @@ module.exports = {
);
});
collector.on("end", (collected, reason) => {
answerCollector.on("end", (collected, reason) => {
if (reason === "time") {
interaction.followUp(
`<@${userId}> Time's up! You didn't answer in time.`
);
}
});
} catch (error) {
console.error("Error executing trivia command:", error);
if (error.response && error.response.status === 429) {
await interaction.reply({
content: `<@${userId}> The trivia API rate limit has been exceeded. Please try in 5 seconds.`,
ephemeral: true,
});
} else {
await interaction.reply({
content: `<@${userId}> There was an error while executing this command!`,
ephemeral: true,
});
}
}
},
};

View file

@ -0,0 +1,37 @@
const { SlashCommandBuilder } = require("discord.js");
const Leaderboard = require("../../models/Leaderboard");
module.exports = {
data: new SlashCommandBuilder()
.setName("clearleaderboard")
.setDescription("Clears all entries in the trivia leaderboard"),
isModOnly: true,
async execute(interaction) {
try {
const requiredRoleId = process.env.MOD_ROLE_ID;
if (!interaction.member.roles.cache.has(requiredRoleId)) {
await interaction.reply({
content: "You do not have the required role to use this command!",
ephemeral: true,
});
return;
}
// Clear the leaderboard
await Leaderboard.deleteMany({});
// Notify the mod who executed the command
await interaction.reply({
content: "The leaderboard has been cleared successfully.",
ephemeral: true,
});
} catch (error) {
console.error("Error executing clearleaderboard command:", error);
await interaction.reply({
content: "There was an error while executing this command!",
ephemeral: true,
});
}
},
};

View file

@ -4,6 +4,7 @@ const triviaQuestionSchema = new mongoose.Schema({
question: String,
correct_answer: String,
incorrect_answers: [String],
category: String,
last_served: Date, // Track when the question was last served
timestamp: { type: Date, default: Date.now },
});