2023-11-27 00:02:34 +01:00
|
|
|
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
|
2023-11-18 01:35:28 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('beatgame')
|
|
|
|
.setDescription('Log a game that you have beat towards the 100 game challenge!')
|
|
|
|
.addStringOption(option => option.setName('gamename').setDescription('The name of the game.'))
|
|
|
|
.addNumberOption(option => option.setName('gameid').setDescription('The IGDB game id.').setMinValue(0))
|
|
|
|
.addStringOption(option => option.setName('datestarted').setDescription('The date you started playing the game (today if empty).'))
|
|
|
|
.addStringOption(option => option.setName('datebeaten').setDescription('The date you beat the game (today if empty).'))
|
|
|
|
.addStringOption(option => option.setName('platform').setDescription('The platform the game was released on.')),
|
|
|
|
async execute(interaction) {
|
|
|
|
const gamename = interaction.options.getString('gamename');
|
|
|
|
const gameid = interaction.options.getNumber('gameid');
|
|
|
|
const platform = interaction.options.getString('platform');
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
if (!gamename && !gameid) return interaction.reply('No gamename or gameid supplied, please supply an option to register a game!');
|
2023-11-28 23:04:08 +01:00
|
|
|
|
|
|
|
let body = '';
|
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
if (gameid) {
|
2023-11-28 23:04:08 +01:00
|
|
|
body = body.concat('where id = ', gameid, '; ');
|
2023-11-27 00:02:34 +01:00
|
|
|
} else if (gamename) {
|
2023-11-28 23:04:08 +01:00
|
|
|
body = body.concat('search "', gamename, '"; ');
|
2023-11-27 00:02:34 +01:00
|
|
|
}
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
body = body.concat('fields *;');
|
2023-11-28 23:04:08 +01:00
|
|
|
|
|
|
|
const res = await getGameJson(body);
|
|
|
|
|
|
|
|
if (!res[0]) return interaction.reply('No game found for the options supplied.');
|
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
const coverUrl = await getCoverURL(res[0].cover);
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
.setColor(0xFFD700)
|
|
|
|
.setAuthor({ name: `${interaction.user.displayName} beat a new game!`, iconURL: interaction.user.avatarURL() })
|
|
|
|
.setTitle(`${res[0].name} beaten!`)
|
|
|
|
.setThumbnail(`${coverUrl}`)
|
|
|
|
.setDescription(`${interaction.user.displayName} has beaten 69 games, they have 31 games remaining.`)
|
|
|
|
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
|
|
|
|
.setTimestamp();
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-27 00:02:34 +01:00
|
|
|
return interaction.reply({ embeds: [embed] });
|
|
|
|
},
|
|
|
|
};
|
2023-11-20 23:07:44 +01:00
|
|
|
|
|
|
|
async function getGameJson(body) {
|
|
|
|
let res;
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-20 23:07:44 +01:00
|
|
|
await fetch(
|
2023-11-28 23:04:08 +01:00
|
|
|
'https://api.igdb.com/v4/games',
|
2023-11-20 23:07:44 +01:00
|
|
|
{ method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Client-ID': `${process.env.igdbClientId}`,
|
|
|
|
'Authorization': `Bearer ${process.env.igdbAccessToken}`,
|
|
|
|
},
|
2023-11-28 23:04:08 +01:00
|
|
|
body: body,
|
2023-11-20 23:07:44 +01:00
|
|
|
})
|
|
|
|
.then(response => response.json())
|
|
|
|
.then(response => {
|
|
|
|
res = response;
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getPlatformID(platform) {
|
2023-11-28 23:04:08 +01:00
|
|
|
|
2023-11-20 23:07:44 +01:00
|
|
|
await fetch(
|
2023-11-28 23:04:08 +01:00
|
|
|
'https://api.igdb.com/v4/platforms',
|
2023-11-20 23:07:44 +01:00
|
|
|
{ method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Client-ID': `${process.env.igdbClientId}`,
|
|
|
|
'Authorization': `Bearer ${process.env.igdbAccessToken}`,
|
|
|
|
},
|
2023-11-28 23:04:08 +01:00
|
|
|
body: `where name = "${platform}", alternative_name = "${platform}"; fields id;`,
|
2023-11-20 23:07:44 +01:00
|
|
|
})
|
|
|
|
.then(response => response.json())
|
|
|
|
.then(response => {
|
|
|
|
return response;
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getCoverURL(id) {
|
2023-11-28 23:04:08 +01:00
|
|
|
let url = 'https://upload.wikimedia.org/wikipedia/commons/d/d1/Image_not_available.png';
|
2023-11-20 23:07:44 +01:00
|
|
|
|
|
|
|
await fetch(
|
2023-11-28 23:04:08 +01:00
|
|
|
'https://api.igdb.com/v4/covers',
|
2023-11-20 23:07:44 +01:00
|
|
|
{ method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Client-ID': `${process.env.igdbClientId}`,
|
|
|
|
'Authorization': `Bearer ${process.env.igdbAccessToken}`,
|
|
|
|
},
|
2023-11-28 23:04:08 +01:00
|
|
|
body: `where id = ${id}; fields url;`,
|
2023-11-20 23:07:44 +01:00
|
|
|
})
|
|
|
|
.then(response => response.json())
|
|
|
|
.then(response => {
|
|
|
|
if (response[0]) {
|
|
|
|
url = 'https:'.concat(response[0].url);
|
|
|
|
}
|
|
|
|
})
|
2023-11-27 00:02:34 +01:00
|
|
|
.then(response => {
|
|
|
|
url = url.replace('t_thumb', 't_1080p_2x');
|
|
|
|
})
|
2023-11-20 23:07:44 +01:00
|
|
|
.catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
return url;
|
2023-11-20 00:59:41 +01:00
|
|
|
}
|