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 CardDropHelper from "../helpers/CardDropHelper";
|
|
|
|
import { readFileSync } from "fs";
|
|
|
|
import { CoreClient } from "../client/client";
|
|
|
|
import { v4 } from "uuid";
|
2023-09-05 20:45:33 +01:00
|
|
|
import Card from "../database/entities/card/Card";
|
2023-10-20 17:33:22 +01:00
|
|
|
import Inventory from "../database/entities/app/Inventory";
|
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-11-10 18:27:02 +00:00
|
|
|
const randomCard = await CardDropHelper.GetRandomCard();
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const image = readFileSync(randomCard.Path);
|
|
|
|
|
2023-09-04 13:02:02 +01:00
|
|
|
await interaction.deferReply();
|
|
|
|
|
|
|
|
const attachment = new AttachmentBuilder(image, { name: randomCard.FileName });
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-10-20 17:33:22 +01:00
|
|
|
const inventory = await Inventory.FetchOneByCardNumberAndUserId(interaction.user.id, randomCard.CardNumber);
|
|
|
|
const quantityClaimed = inventory ? inventory.Quantity : 0;
|
|
|
|
|
2023-10-27 16:02:02 +01:00
|
|
|
const embed = CardDropHelper.GenerateDropEmbed(randomCard, quantityClaimed || 0);
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const claimId = v4();
|
|
|
|
|
2023-10-27 16:02:02 +01:00
|
|
|
const row = CardDropHelper.GenerateDropButtons(randomCard, claimId, interaction.user.id);
|
2023-09-03 20:27:29 +01:00
|
|
|
|
2023-09-05 20:05:29 +01:00
|
|
|
try {
|
|
|
|
await interaction.editReply({
|
|
|
|
embeds: [ embed ],
|
|
|
|
files: [ attachment ],
|
|
|
|
components: [ row ],
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
|
|
|
|
if (e instanceof DiscordAPIError) {
|
|
|
|
await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. Code: ${e.code}`);
|
|
|
|
} else {
|
|
|
|
await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. Code: UNKNOWN`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-03 20:27:29 +01:00
|
|
|
CoreClient.ClaimId = claimId;
|
|
|
|
}
|
|
|
|
}
|