Add RecentBeat command
This commit is contained in:
parent
4be5e867cc
commit
e81668c514
|
@ -0,0 +1,41 @@
|
||||||
|
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
||||||
|
const { getCoverURL, getGameJson } = require('../../igdbHelperFunctions.js');
|
||||||
|
const { getUserRegistration, getRecentGameEntry } = require('../../databaseHelperFunctions.js');
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
data: new SlashCommandBuilder()
|
||||||
|
.setName('recentbeat')
|
||||||
|
.setDescription('Get the most recent game you have beat.')
|
||||||
|
.addUserOption(option => option.setName('user').setDescription('The user to check')),
|
||||||
|
async execute(interaction) {
|
||||||
|
let user = interaction.user;
|
||||||
|
const userOption = interaction.options.getUser('user');
|
||||||
|
|
||||||
|
if (userOption) {
|
||||||
|
user = userOption;
|
||||||
|
}
|
||||||
|
|
||||||
|
const userDatabaseEntry = await getUserRegistration(user);
|
||||||
|
if (!userDatabaseEntry) return interaction.reply({ content: `Issue checking registration with "${interaction.user.username}".`, ephemeral: true });
|
||||||
|
|
||||||
|
const gameDatabaseEntry = await getRecentGameEntry(userDatabaseEntry.id);
|
||||||
|
if (!gameDatabaseEntry) return interaction.reply({ content: 'No game found.', ephemeral: true });
|
||||||
|
|
||||||
|
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 coverUrl = await getCoverURL(game.cover);
|
||||||
|
|
||||||
|
const embed = new EmbedBuilder()
|
||||||
|
.setColor(0xFFD700)
|
||||||
|
.setAuthor({ name: `${user.displayName}'s most recent beat game!`, iconURL: user.avatarURL() })
|
||||||
|
.setTitle(game.name)
|
||||||
|
.setThumbnail(`${coverUrl}`)
|
||||||
|
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
|
||||||
|
.setTimestamp()
|
||||||
|
.addFields({ name: 'Description', value: `${game.summary}` });
|
||||||
|
|
||||||
|
return interaction.reply({ embeds: [embed] });
|
||||||
|
},
|
||||||
|
};
|
|
@ -2,17 +2,7 @@ const { Users, Games, BeatenGames } = require ('./dbObjects.js');
|
||||||
|
|
||||||
async function checkUserRegistration(user) {
|
async function checkUserRegistration(user) {
|
||||||
|
|
||||||
let u = await Users.findOne({ where: { discord_id: user.id } })
|
const u = await Users.findOne({ where: { discord_id: user.id } })
|
||||||
.catch((err) => {
|
|
||||||
console.log(err);
|
|
||||||
});
|
|
||||||
|
|
||||||
if (u) return true;
|
|
||||||
|
|
||||||
await Users.create({ discord_id: user.id, username: user.username })
|
|
||||||
.then((data) => {
|
|
||||||
u = data;
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
});
|
});
|
||||||
|
@ -164,6 +154,24 @@ async function getLeaderboardEntries() {
|
||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function getRecentGameEntry(userId) {
|
||||||
|
const beatenGameEntry = await BeatenGames.findOne({ where: { userId: userId }, order: [ [ 'createdAt', 'DESC' ]] })
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!beatenGameEntry) return false;
|
||||||
|
|
||||||
|
const game = await Games.findOne({ where: { id: beatenGameEntry.gameId } })
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (game) return game;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
checkUserRegistration,
|
checkUserRegistration,
|
||||||
getUserRegistration,
|
getUserRegistration,
|
||||||
|
@ -174,4 +182,5 @@ module.exports = {
|
||||||
deleteBeatenGameNum,
|
deleteBeatenGameNum,
|
||||||
checkGameStorageId,
|
checkGameStorageId,
|
||||||
getLeaderboardEntries,
|
getLeaderboardEntries,
|
||||||
|
getRecentGameEntry,
|
||||||
};
|
};
|
Loading…
Reference in New Issue