2024-03-18 21:39:26 +01:00
|
|
|
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
|
|
|
const { getUserRegistration, getBeatenGameCount, getPlanningGameCount, getPlayingGameCount, getRecentBeatenGameEntry, getBeatenGames, getRecentEntry } = require('../../databaseHelperFunctions');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('user')
|
|
|
|
.setDescription('Get the users info for the 100 Game Challenge')
|
|
|
|
.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-03-18 21:39:26 +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-03-18 21:39:26 +01:00
|
|
|
|
|
|
|
const planNum = await getPlanningGameCount(userDatabaseEntry);
|
|
|
|
const playNum = await getPlayingGameCount(userDatabaseEntry);
|
|
|
|
const beatNum = await getBeatenGameCount(userDatabaseEntry);
|
|
|
|
const gameDatabaseEntry = await getRecentBeatenGameEntry(userDatabaseEntry.id);
|
|
|
|
const beatenGamesDatabaseEntries = await getBeatenGames(userDatabaseEntry.id);
|
|
|
|
const recentEntry = await getRecentEntry(userDatabaseEntry.id);
|
|
|
|
|
|
|
|
const embed = new EmbedBuilder();
|
|
|
|
embed.setColor(0x6441a5);
|
|
|
|
embed.setTitle(`User Info for ${user.displayName}`);
|
|
|
|
embed.setThumbnail(user.avatarURL());
|
2024-03-18 21:47:58 +01:00
|
|
|
embed.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() });
|
2024-03-18 21:39:26 +01:00
|
|
|
|
2024-03-18 21:47:32 +01:00
|
|
|
if (planNum >= 0) embed.addFields({ name: 'Planned', value: `${planNum} game(s)`, inline: true });
|
|
|
|
if (playNum >= 0) embed.addFields({ name: 'Now Playing', value: `${playNum} game(s)`, inline: true });
|
|
|
|
if (beatNum >= 0) embed.addFields({ name: 'Beaten', value: `${beatNum}/100 (${100 - beatNum} game(s) remaining)`, inline: true });
|
2024-03-18 21:39:26 +01:00
|
|
|
if (gameDatabaseEntry) embed.addFields({ name: 'Last Beat Game', value: `${gameDatabaseEntry.name}`, inline: true });
|
|
|
|
|
|
|
|
if (beatenGamesDatabaseEntries && beatenGamesDatabaseEntries.length > 0) {
|
|
|
|
const today = new Date();
|
|
|
|
const start = new Date(2024, 0, 1);
|
|
|
|
const days = (today - start) / (1000 * 60 * 60 * 24);
|
|
|
|
const timepergame = days / beatenGamesDatabaseEntries.length;
|
2024-06-11 00:39:10 +02:00
|
|
|
embed.addFields({ name: 'Average Beat Interval', value: `${Math.round(timepergame)} days`, inline: true });
|
2024-03-18 21:39:26 +01:00
|
|
|
const finishdate = new Date();
|
|
|
|
finishdate.setDate(start.getDate() + (timepergame * 100));
|
|
|
|
const date = finishdate.toLocaleDateString('en-GB', { year: 'numeric', month: '2-digit', day: '2-digit' }).replace(/\//g, '/');
|
|
|
|
embed.addFields({ name: 'Estimated Finish Date', value: `${date}`, inline: true });
|
|
|
|
}
|
|
|
|
|
2024-07-13 17:38:37 +02:00
|
|
|
if (recentEntry) embed.addFields({ name: 'Last Updated', value: `${recentEntry.statusLastChanged.toLocaleDateString('en-GB', { year: 'numeric', month: '2-digit', day: '2-digit' }).replace(/\//g, '/')}`, inline: true });
|
2024-03-18 21:39:26 +01:00
|
|
|
|
2024-03-28 22:12:28 +01:00
|
|
|
return interaction.editReply({ embeds: [embed] });
|
2024-03-18 21:39:26 +01:00
|
|
|
},
|
|
|
|
};
|