Compare commits
3 Commits
13b0825627
...
9212469616
Author | SHA1 | Date | |
---|---|---|---|
9212469616 | |||
311a463d46 | |||
b448a46249 |
@ -1,5 +1,6 @@
|
|||||||
const { SlashCommandBuilder } = require('discord.js');
|
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
||||||
const { getUserRegistration, deleteBeatenGameNum, checkGameStorageId } = require('../../databaseHelperFunctions.js');
|
const { getUserRegistration, deleteBeatenGameNum, checkGameStorageId, getRecentGameEntry, deleteBeatenGameId, getBeatenGameCount } = require('../../databaseHelperFunctions.js');
|
||||||
|
const { getCoverURL, getGameJson } = require('../../igdbHelperFunctions.js');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
data: new SlashCommandBuilder()
|
data: new SlashCommandBuilder()
|
||||||
@ -16,14 +17,32 @@ module.exports = {
|
|||||||
result = await deleteBeatenGameNum(beatGameNumber, userDatabaseEntry);
|
result = await deleteBeatenGameNum(beatGameNumber, userDatabaseEntry);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// TODO: Delete most recent game entry.
|
const recentGame = await getRecentGameEntry(userDatabaseEntry.id);
|
||||||
|
result = await deleteBeatenGameId(recentGame.id, userDatabaseEntry);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result) {
|
if (result) {
|
||||||
const game = await checkGameStorageId(result.gameId);
|
const gameDatabaseEntry = await checkGameStorageId(result.gameId);
|
||||||
return interaction.reply(`${game.name} successfully deleted`);
|
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 });
|
return interaction.reply({ content: 'Unable to delete entry / No entry found.', ephemeral: true });
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -101,7 +101,7 @@ async function getBeatenGameCount(user) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function deleteBeatenGameId(id, 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) => {
|
.catch((err) => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user