2024-02-11 22:05:24 +01:00
|
|
|
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
|
|
|
const { getUserRegistration, getPlanningGames, checkGameStorageId } = require('../../databaseHelperFunctions.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('plannedgames')
|
|
|
|
.setDescription('Show the list of games you are currently planning to play.')
|
|
|
|
.addUserOption(option => option.setName('user').setDescription('The user to check')),
|
|
|
|
async execute(interaction) {
|
2024-03-28 22:12:28 +01:00
|
|
|
await interaction.deferReply();
|
2024-02-11 22:05:24 +01:00
|
|
|
|
|
|
|
let user = interaction.user;
|
|
|
|
const userOption = interaction.options.getUser('user');
|
|
|
|
|
|
|
|
if (userOption) {
|
|
|
|
user = userOption;
|
|
|
|
}
|
|
|
|
|
|
|
|
const userDatabaseEntry = await getUserRegistration(user);
|
2024-03-28 22:12:28 +01:00
|
|
|
if (!userDatabaseEntry) return interaction.editReply({ content: `Issue checking registration with "${user.username}".`, ephemeral: true });
|
2024-02-11 22:05:24 +01:00
|
|
|
|
|
|
|
const databaseEntries = await getPlanningGames(userDatabaseEntry.id);
|
|
|
|
let desc = '';
|
|
|
|
|
2024-02-14 20:17:02 +01:00
|
|
|
if (!databaseEntries || databaseEntries.length == 0) {
|
|
|
|
desc = `${user.displayName} currently has no planned games.`;
|
|
|
|
} else {
|
2024-03-18 20:54:35 +01:00
|
|
|
desc = desc.concat('__Total: ', databaseEntries.length, '__\n');
|
2024-02-28 19:02:18 +01:00
|
|
|
|
2024-02-14 20:17:02 +01:00
|
|
|
for (let i = 0; i < databaseEntries.length; i++) {
|
2024-06-09 22:58:41 +02:00
|
|
|
const game = await checkGameStorageId(databaseEntries[i].gameId);
|
2024-02-28 19:02:18 +01:00
|
|
|
desc = desc.concat('**#', (i + 1), '** ', game.name, '\n');
|
2024-02-14 20:17:02 +01:00
|
|
|
}
|
2024-02-11 22:05:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
.setColor(0x6441a5)
|
2024-02-28 19:02:18 +01:00
|
|
|
.setThumbnail(user.avatarURL())
|
|
|
|
.setTitle(`${user.displayName}'s Planned Games`)
|
2024-02-11 22:05:24 +01:00
|
|
|
.setDescription(desc)
|
|
|
|
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
|
|
|
|
.setTimestamp();
|
|
|
|
|
2024-03-28 22:12:28 +01:00
|
|
|
return interaction.editReply({ embeds: [embed] });
|
2024-02-11 22:05:24 +01:00
|
|
|
},
|
|
|
|
};
|