WIP: Implement adding to the users inventory on confirm
Some checks failed
Test / build (push) Failing after 41s
Some checks failed
Test / build (push) Failing after 41s
This commit is contained in:
parent
ad0d2aef08
commit
1f5a19f101
2 changed files with 32 additions and 0 deletions
|
@ -2,6 +2,8 @@ import {ButtonInteraction} from "discord.js";
|
||||||
import AppLogger from "../../client/appLogger";
|
import AppLogger from "../../client/appLogger";
|
||||||
import EffectHelper from "../../helpers/EffectHelper";
|
import EffectHelper from "../../helpers/EffectHelper";
|
||||||
import EmbedColours from "../../constants/EmbedColours";
|
import EmbedColours from "../../constants/EmbedColours";
|
||||||
|
import User from "../../database/entities/app/User";
|
||||||
|
import {EffectDetails} from "../../constants/EffectDetails";
|
||||||
|
|
||||||
export default class Buy {
|
export default class Buy {
|
||||||
public static async Execute(interaction: ButtonInteraction) {
|
public static async Execute(interaction: ButtonInteraction) {
|
||||||
|
@ -28,6 +30,13 @@ export default class Buy {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const effectDetail = EffectDetails.get(id);
|
||||||
|
|
||||||
|
if (!effectDetail) {
|
||||||
|
AppLogger.LogError("Buy Confirm", "Effect detail not found!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const quantityNumber = Number(quantity);
|
const quantityNumber = Number(quantity);
|
||||||
|
|
||||||
if (!quantityNumber || quantityNumber < 1) {
|
if (!quantityNumber || quantityNumber < 1) {
|
||||||
|
@ -35,6 +44,25 @@ export default class Buy {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const totalCost = effectDetail.cost * quantityNumber;
|
||||||
|
|
||||||
|
const user = await User.FetchOneById(User, interaction.user.id);
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
AppLogger.LogError("Buy Confirm", "Unable to find user");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (user.Currency < totalCost) {
|
||||||
|
interaction.reply(`You don't have enough currency to buy this! You have \`${user.Currency} Currency\` and need \`${totalCost} Currency\`!`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
user.RemoveCurrency(totalCost);
|
||||||
|
await user.Save(User, user);
|
||||||
|
|
||||||
|
await EffectHelper.AddEffectToUserInventory(interaction.user.id, id, quantityNumber);
|
||||||
|
|
||||||
const generatedEmbed = await EffectHelper.GenerateEffectBuyEmbed(interaction.user.id, id, quantityNumber, true);
|
const generatedEmbed = await EffectHelper.GenerateEffectBuyEmbed(interaction.user.id, id, quantityNumber, true);
|
||||||
|
|
||||||
if (typeof generatedEmbed == "string") {
|
if (typeof generatedEmbed == "string") {
|
||||||
|
|
|
@ -244,6 +244,10 @@ describe("Confirm", () => {
|
||||||
expect(interaction.update).not.toHaveBeenCalled();
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test.todo("GIVEN user is not found, EXPECT error");
|
||||||
|
|
||||||
|
test.todo("GIVEN user does not have enough currency, EXPECT error");
|
||||||
|
|
||||||
test("GIVEN GenerateEffectBuyEmbed returns with a string, EXPECT error replied", async () => {
|
test("GIVEN GenerateEffectBuyEmbed returns with a string, EXPECT error replied", async () => {
|
||||||
// Assert
|
// Assert
|
||||||
interaction.customId += " id 1";
|
interaction.customId += " id 1";
|
||||||
|
|
Loading…
Reference in a new issue