2025-01-06 05:35:36 +01:00
|
|
|
import { getJSONfromString } from "@/src/helpers/stringHelpers";
|
2025-02-25 04:38:47 -08:00
|
|
|
import { crackRelic } from "@/src/helpers/relicHelper";
|
|
|
|
import { getInventory } from "@/src/services/inventoryService";
|
2025-01-06 05:35:36 +01:00
|
|
|
import { getAccountIdForRequest } from "@/src/services/loginService";
|
2025-02-25 04:38:47 -08:00
|
|
|
import { IVoidTearParticipantInfo } from "@/src/types/requestTypes";
|
2025-01-06 05:35:36 +01:00
|
|
|
import { RequestHandler } from "express";
|
|
|
|
|
|
|
|
export const getVoidProjectionRewardsController: RequestHandler = async (req, res) => {
|
|
|
|
const accountId = await getAccountIdForRequest(req);
|
2025-01-24 14:27:10 +01:00
|
|
|
const data = getJSONfromString<IVoidProjectionRewardRequest>(String(req.body));
|
2025-02-25 04:38:47 -08:00
|
|
|
|
|
|
|
if (data.ParticipantInfo.QualifiesForReward && !data.ParticipantInfo.HaveRewardResponse) {
|
|
|
|
const inventory = await getInventory(accountId);
|
|
|
|
await crackRelic(inventory, data.ParticipantInfo);
|
|
|
|
await inventory.save();
|
|
|
|
}
|
|
|
|
|
2025-01-06 05:35:36 +01:00
|
|
|
const response: IVoidProjectionRewardResponse = {
|
|
|
|
CurrentWave: data.CurrentWave,
|
|
|
|
ParticipantInfo: data.ParticipantInfo,
|
|
|
|
DifficultyTier: data.DifficultyTier
|
|
|
|
};
|
|
|
|
res.json(response);
|
|
|
|
};
|
|
|
|
|
|
|
|
interface IVoidProjectionRewardRequest {
|
|
|
|
CurrentWave: number;
|
2025-02-25 04:38:47 -08:00
|
|
|
ParticipantInfo: IVoidTearParticipantInfo;
|
2025-01-06 05:35:36 +01:00
|
|
|
VoidTier: string;
|
|
|
|
DifficultyTier: number;
|
|
|
|
VoidProjectionRemovalHash: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IVoidProjectionRewardResponse {
|
|
|
|
CurrentWave: number;
|
2025-02-25 04:38:47 -08:00
|
|
|
ParticipantInfo: IVoidTearParticipantInfo;
|
2025-01-06 05:35:36 +01:00
|
|
|
DifficultyTier: number;
|
|
|
|
}
|