All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. - Add the winston package to handle logging - Add logging to the project's logic #146 ## Type of change Please delete options that are not relevant. - [x] New feature (non-breaking change which adds functionality) # How Has This Been Tested? Please describe the tests that you ran to verify the changes. Provide instructions so we can reproduce. Please also list any relevant details to your test configuration. # Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that provde my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules Reviewed-on: https://gitea.vylpes.xyz/External/card-drop/pulls/183 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
75 lines
No EOL
2.8 KiB
TypeScript
75 lines
No EOL
2.8 KiB
TypeScript
import { AttachmentBuilder, CommandInteraction, SlashCommandBuilder } from "discord.js";
|
|
import { Command } from "../type/command";
|
|
import { readFileSync } from "fs";
|
|
import { CoreClient } from "../client/client";
|
|
import { v4 } from "uuid";
|
|
import Inventory from "../database/entities/app/Inventory";
|
|
import Config from "../database/entities/app/Config";
|
|
import CardDropHelperMetadata from "../helpers/CardDropHelperMetadata";
|
|
import path from "path";
|
|
import AppLogger from "../client/appLogger";
|
|
|
|
export default class Drop extends Command {
|
|
constructor() {
|
|
super();
|
|
|
|
this.CommandBuilder = new SlashCommandBuilder()
|
|
.setName("drop")
|
|
.setDescription("Summon a new card drop");
|
|
}
|
|
|
|
public override async execute(interaction: CommandInteraction) {
|
|
if (!CoreClient.AllowDrops) {
|
|
await interaction.reply("Bot is currently syncing, please wait until its done.");
|
|
return;
|
|
}
|
|
|
|
if (await Config.GetValue("safemode") == "true") {
|
|
AppLogger.LogWarn("Commands/Drop", "Safe Mode is active, refusing to send next drop.");
|
|
|
|
await interaction.reply("Safe Mode has been activated, please resync to continue.");
|
|
return;
|
|
}
|
|
|
|
const randomCard = CardDropHelperMetadata.GetRandomCard();
|
|
|
|
if (!randomCard) {
|
|
AppLogger.LogWarn("Commands/Drop", "Unable to fetch card, please try again. (randomCard is null)");
|
|
|
|
await interaction.reply("Unable to fetch card, please try again.");
|
|
return;
|
|
}
|
|
|
|
await interaction.deferReply();
|
|
|
|
try {
|
|
const image = readFileSync(path.join(process.env.DATA_DIR!, "cards", randomCard.card.path));
|
|
const imageFileName = randomCard.card.path.split("/").pop()!;
|
|
|
|
const attachment = new AttachmentBuilder(image, { name: imageFileName });
|
|
|
|
const inventory = await Inventory.FetchOneByCardNumberAndUserId(interaction.user.id, randomCard.card.id);
|
|
const quantityClaimed = inventory ? inventory.Quantity : 0;
|
|
|
|
const embed = CardDropHelperMetadata.GenerateDropEmbed(randomCard, quantityClaimed, imageFileName);
|
|
|
|
const claimId = v4();
|
|
|
|
const row = CardDropHelperMetadata.GenerateDropButtons(randomCard, claimId, interaction.user.id);
|
|
|
|
await interaction.editReply({
|
|
embeds: [ embed ],
|
|
files: [ attachment ],
|
|
components: [ row ],
|
|
});
|
|
|
|
CoreClient.ClaimId = claimId;
|
|
|
|
} catch (e) {
|
|
AppLogger.LogError("Commands/Drop", `Error sending next drop for card ${randomCard.card.id}: ${e}`);
|
|
|
|
await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. (${randomCard.card.id})`);
|
|
}
|
|
|
|
}
|
|
} |