2023-12-22 14:41:13 +00:00
|
|
|
import { AttachmentBuilder, CommandInteraction, 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();
|
|
|
|
|
2024-01-05 19:26:44 +00:00
|
|
|
this.CommandBuilder = new SlashCommandBuilder()
|
|
|
|
.setName("drop")
|
|
|
|
.setDescription("Summon a new card drop");
|
2023-09-03 20:27:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public override async execute(interaction: CommandInteraction) {
|
2023-11-10 18:32:08 +00:00
|
|
|
if (!CoreClient.AllowDrops) {
|
2024-01-05 19:26:44 +00:00
|
|
|
await interaction.reply("Bot is currently syncing, please wait until its done.");
|
2023-11-10 18:32:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-01-05 19:26:44 +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) {
|
2024-01-05 19:26:44 +00:00
|
|
|
await interaction.reply("Unable to fetch card, please try again.");
|
2023-12-09 16:48:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2024-01-20 15:43:13 +00:00
|
|
|
await interaction.deferReply();
|
|
|
|
|
2024-01-05 19:26:44 +00:00
|
|
|
const image = readFileSync(path.join(process.env.DATA_DIR!, "cards", randomCard.card.path));
|
2023-12-13 17:32:51 +00:00
|
|
|
const imageFileName = randomCard.card.path.split("/").pop()!;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|