2023-10-27 16:02:02 +01:00
|
|
|
import { AttachmentBuilder, ButtonInteraction, DiscordAPIError } from "discord.js";
|
2023-09-03 20:27:29 +01:00
|
|
|
import { ButtonEvent } from "../type/buttonEvent";
|
|
|
|
import CardDropHelper from "../helpers/CardDropHelper";
|
|
|
|
import { readFileSync } from "fs";
|
|
|
|
import { v4 } from "uuid";
|
|
|
|
import { CoreClient } from "../client/client";
|
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 Reroll extends ButtonEvent {
|
|
|
|
public override async execute(interaction: ButtonInteraction) {
|
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-09-03 20:27:29 +01:00
|
|
|
if (!interaction.guild || !interaction.guildId) return;
|
|
|
|
|
2023-09-05 19:42:07 +01:00
|
|
|
let randomCard = await CardDropHelper.GetRandomCard();
|
|
|
|
|
|
|
|
if (process.env.DROP_RARITY && Number(process.env.DROP_RARITY) > 0) {
|
|
|
|
randomCard = await CardDropHelper.GetRandomCardByRarity(Number(process.env.DROP_RARITY));
|
|
|
|
}
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const image = readFileSync(randomCard.Path);
|
|
|
|
|
2023-09-09 18:49:44 +01:00
|
|
|
await interaction.deferReply();
|
|
|
|
|
2023-09-04 13:02:02 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|