2025-06-23 15:02:30 -07:00
|
|
|
import { checkCalendarChallengeCompletion, getCalendarProgress, getInventory } from "@/src/services/inventoryService";
|
2025-04-25 11:53:34 -07:00
|
|
|
import { getAccountIdForRequest } from "@/src/services/loginService";
|
|
|
|
import { handleStoreItemAcquisition } from "@/src/services/purchaseService";
|
|
|
|
import { getWorldState } from "@/src/services/worldStateService";
|
|
|
|
import { IInventoryChanges } from "@/src/types/purchaseTypes";
|
|
|
|
import { RequestHandler } from "express";
|
|
|
|
|
|
|
|
// GET request; query parameters: CompletedEventIdx=0&Iteration=4&Version=19&Season=CST_SUMMER
|
|
|
|
export const completeCalendarEventController: RequestHandler = async (req, res) => {
|
|
|
|
const accountId = await getAccountIdForRequest(req);
|
|
|
|
const inventory = await getInventory(accountId);
|
|
|
|
const calendarProgress = getCalendarProgress(inventory);
|
|
|
|
const currentSeason = getWorldState().KnownCalendarSeasons[0];
|
|
|
|
let inventoryChanges: IInventoryChanges = {};
|
2025-06-23 15:02:30 -07:00
|
|
|
const dayIndex = calendarProgress.SeasonProgress.LastCompletedDayIdx + 1;
|
|
|
|
const day = currentSeason.Days[dayIndex];
|
|
|
|
if (day.events.length != 0) {
|
|
|
|
if (day.events[0].type == "CET_CHALLENGE") {
|
|
|
|
throw new Error(`completeCalendarEvent should not be used for challenges`);
|
|
|
|
}
|
|
|
|
const selection = day.events[parseInt(req.query.CompletedEventIdx as string)];
|
|
|
|
if (selection.type == "CET_REWARD") {
|
|
|
|
inventoryChanges = (await handleStoreItemAcquisition(selection.reward!, inventory)).InventoryChanges;
|
|
|
|
} else if (selection.type == "CET_UPGRADE") {
|
|
|
|
calendarProgress.YearProgress.Upgrades.push(selection.upgrade!);
|
|
|
|
} else if (selection.type != "CET_PLOT") {
|
|
|
|
throw new Error(`unexpected selection type: ${selection.type}`);
|
2025-04-25 11:53:34 -07:00
|
|
|
}
|
|
|
|
}
|
2025-06-23 15:02:30 -07:00
|
|
|
calendarProgress.SeasonProgress.LastCompletedDayIdx = dayIndex;
|
|
|
|
checkCalendarChallengeCompletion(calendarProgress, currentSeason);
|
2025-04-25 11:53:34 -07:00
|
|
|
await inventory.save();
|
|
|
|
res.json({
|
|
|
|
InventoryChanges: inventoryChanges,
|
|
|
|
CalendarProgress: inventory.CalendarProgress
|
|
|
|
});
|
|
|
|
};
|