Compare commits

...

3 Commits

2 changed files with 26 additions and 7 deletions

View File

@ -1,5 +1,6 @@
const { SlashCommandBuilder } = require('discord.js');
const { getUserRegistration, deleteBeatenGameNum, checkGameStorageId } = require('../../databaseHelperFunctions.js');
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
const { getUserRegistration, deleteBeatenGameNum, checkGameStorageId, getRecentGameEntry, deleteBeatenGameId, getBeatenGameCount } = require('../../databaseHelperFunctions.js');
const { getCoverURL, getGameJson } = require('../../igdbHelperFunctions.js');
module.exports = {
data: new SlashCommandBuilder()
@ -16,14 +17,32 @@ module.exports = {
result = await deleteBeatenGameNum(beatGameNumber, userDatabaseEntry);
}
else {
// TODO: Delete most recent game entry.
const recentGame = await getRecentGameEntry(userDatabaseEntry.id);
result = await deleteBeatenGameId(recentGame.id, userDatabaseEntry);
}
if (result) {
const game = await checkGameStorageId(result.gameId);
return interaction.reply(`${game.name} successfully deleted`);
const gameDatabaseEntry = await checkGameStorageId(result.gameId);
const body = `where id = ${ gameDatabaseEntry.igdb_id }; fields *;`;
const res = await getGameJson(body);
if (!res) return interaction.reply({ content: 'No game found.', ephemeral: true });
const game = res[0];
const num = await getBeatenGameCount(userDatabaseEntry);
const coverUrl = await getCoverURL(game.cover);
const embed = new EmbedBuilder()
.setColor(0xFF0000)
.setAuthor({ name: `${interaction.user.displayName} deleted a game!`, iconURL: interaction.user.avatarURL() })
.setTitle(`${game.name} deleted!`)
.setThumbnail(`${coverUrl}`)
.setDescription(`${interaction.user.displayName} has beaten ${num} games, they have ${100 - num} games remaining.`)
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
.setTimestamp();
return interaction.reply({ embeds: [embed] });
}
return interaction.reply({ content: 'Unable to delete entry / No entry found.', ephemeral: true });
},
};
};

View File

@ -101,7 +101,7 @@ async function getBeatenGameCount(user) {
}
async function deleteBeatenGameId(id, user) {
const bg = await BeatenGames.findOne({ where: { id: id, userId: user.id } })
const bg = await BeatenGames.findOne({ where: { gameId: id, userId: user.id } })
.catch((err) => {
console.log(err);
});