TheOchulus/commands/100-games/beatlist.js

49 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-12-27 23:27:55 +01:00
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
2024-02-11 22:05:07 +01:00
const { getUserRegistration, getBeatenGames, checkGameStorageId } = require('../../databaseHelperFunctions.js');
2023-12-27 23:27:55 +01:00
const { getGameJson } = require('../../igdbHelperFunctions.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('beatlist')
.setDescription('Show the list of games you have beaten.')
.addUserOption(option => option.setName('user').setDescription('The user to check')),
async execute(interaction) {
2024-01-01 00:29:08 +01:00
await interaction.reply({ content: 'Searching for user...', ephemeral: true });
2023-12-27 23:27:55 +01:00
let user = interaction.user;
const userOption = interaction.options.getUser('user');
if (userOption) {
user = userOption;
}
const userDatabaseEntry = await getUserRegistration(user);
2024-01-01 00:29:08 +01:00
if (!userDatabaseEntry) return interaction.followUp({ content: `Issue checking registration with "${user.username}".`, ephemeral: true });
2023-12-27 23:27:55 +01:00
2024-02-11 22:05:07 +01:00
const beatenGamesDatabaseEntries = await getBeatenGames(userDatabaseEntry.id);
2023-12-27 23:27:55 +01:00
let desc = '';
if (!beatenGamesDatabaseEntries || beatenGamesDatabaseEntries.length == 0) {
desc = `${user.displayName} has not beaten any games yet.`;
} else {
2024-02-28 19:02:18 +01:00
desc = desc.concat('__Total: ', beatenGamesDatabaseEntries.length, '/100__\n\n');
for (let i = 0; i < beatenGamesDatabaseEntries.length; i++) {
const gameid = await checkGameStorageId(beatenGamesDatabaseEntries[i].gameId);
const res = await getGameJson(`where id = ${ gameid.igdb_id }; fields *;`);
const game = res[0];
2024-02-28 19:02:18 +01:00
desc = desc.concat('**#', (i + 1), '** ', game.name, '\n');
}
2023-12-27 23:27:55 +01:00
}
const embed = new EmbedBuilder()
.setColor(0x6441a5)
2024-02-28 19:02:18 +01:00
.setThumbnail(user.avatarURL())
.setTitle(`${user.displayName}'s Beaten Games`)
2023-12-27 23:27:55 +01:00
.setDescription(desc)
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
.setTimestamp();
return interaction.followUp({ embeds: [embed] });
},
};