2023-10-27 16:02:02 +01:00
|
|
|
import { AttachmentBuilder, CommandInteraction, DiscordAPIError, SlashCommandBuilder } from "discord.js";
|
2023-09-03 20:27:29 +01:00
|
|
|
import { Command } from "../type/command";
|
|
|
|
import { readFileSync } from "fs";
|
|
|
|
import { CoreClient } from "../client/client";
|
|
|
|
import { v4 } from "uuid";
|
2023-10-20 17:33:22 +01:00
|
|
|
import Inventory from "../database/entities/app/Inventory";
|
2023-11-12 20:53:50 +00:00
|
|
|
import Config from "../database/entities/app/Config";
|
2023-12-09 16:48:20 +00:00
|
|
|
import CardDropHelperMetadata from "../helpers/CardDropHelperMetadata";
|
|
|
|
import path from "path";
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
export default class Drop extends Command {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
super.CommandBuilder = new SlashCommandBuilder()
|
|
|
|
.setName('drop')
|
|
|
|
.setDescription('Summon a new card drop');
|
|
|
|
}
|
|
|
|
|
|
|
|
public override async execute(interaction: CommandInteraction) {
|
2023-11-10 18:32:08 +00:00
|
|
|
if (!CoreClient.AllowDrops) {
|
|
|
|
await interaction.reply('Bot is currently syncing, please wait until its done.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-09 16:48:20 +00:00
|
|
|
if (await Config.GetValue('safemode') == "true") {
|
|
|
|
await interaction.reply('Safe Mode has been activated, please resync to continue.');
|
2023-11-12 20:53:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-09 16:48:20 +00:00
|
|
|
const randomCard = CardDropHelperMetadata.GetRandomCard();
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-12-09 16:48:20 +00:00
|
|
|
if (!randomCard) {
|
|
|
|
await interaction.reply('Unable to fetch card, please try again.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2023-12-13 17:32:51 +00:00
|
|
|
let image: Buffer;
|
|
|
|
const imageFileName = randomCard.card.path.split("/").pop()!;
|
|
|
|
|
2023-12-09 16:48:20 +00:00
|
|
|
image = readFileSync(path.join(process.cwd(), 'cards', randomCard.card.path));
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
await interaction.deferReply();
|
2023-09-04 13:02:02 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
const attachment = new AttachmentBuilder(image, { name: imageFileName });
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
const inventory = await Inventory.FetchOneByCardNumberAndUserId(interaction.user.id, randomCard.card.id);
|
|
|
|
const quantityClaimed = inventory ? inventory.Quantity : 0;
|
2023-10-20 17:33:22 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
const embed = CardDropHelperMetadata.GenerateDropEmbed(randomCard, quantityClaimed, imageFileName);
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
const claimId = v4();
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
const row = CardDropHelperMetadata.GenerateDropButtons(randomCard, claimId, interaction.user.id);
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-09-05 20:05:29 +01:00
|
|
|
await interaction.editReply({
|
|
|
|
embeds: [ embed ],
|
|
|
|
files: [ attachment ],
|
|
|
|
components: [ row ],
|
|
|
|
});
|
2023-12-13 17:32:51 +00:00
|
|
|
|
|
|
|
CoreClient.ClaimId = claimId;
|
|
|
|
|
2023-09-05 20:05:29 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
|
2023-12-13 17:32:51 +00:00
|
|
|
await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. (${randomCard.card.id})`);
|
2023-09-05 20:05:29 +01:00
|
|
|
}
|
|
|
|
|
2023-09-03 20:27:29 +01:00
|
|
|
}
|
|
|
|
}
|