feat: collectible series #1025
27
src/controllers/api/startCollectibleEntryController.ts
Normal file
27
src/controllers/api/startCollectibleEntryController.ts
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
import { getJSONfromString } from "@/src/helpers/stringHelpers";
|
||||||
|
import { getInventory } from "@/src/services/inventoryService";
|
||||||
|
import { getAccountIdForRequest } from "@/src/services/loginService";
|
||||||
|
import { IIncentiveState } from "@/src/types/inventoryTypes/inventoryTypes";
|
||||||
|
import { RequestHandler } from "express";
|
||||||
|
|
||||||
|
export const startCollectibleEntryController: RequestHandler = async (req, res) => {
|
||||||
|
const accountId = await getAccountIdForRequest(req);
|
||||||
|
const inventory = await getInventory(accountId);
|
||||||
|
const request = getJSONfromString<IStartCollectibleEntryRequest>(String(req.body));
|
||||||
|
inventory.CollectibleSeries ??= [];
|
||||||
|
inventory.CollectibleSeries.push({
|
||||||
|
CollectibleType: request.target,
|
||||||
|
Count: 0,
|
||||||
|
Tracking: "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||||
|
ReqScans: request.reqScans,
|
||||||
|
IncentiveStates: request.other
|
||||||
|
});
|
||||||
|
await inventory.save();
|
||||||
|
res.status(200).end();
|
||||||
|
};
|
||||||
|
|
||||||
|
interface IStartCollectibleEntryRequest {
|
||||||
|
target: string;
|
||||||
|
reqScans: number;
|
||||||
|
other: IIncentiveState[];
|
||||||
|
}
|
@ -71,7 +71,9 @@ import {
|
|||||||
ILibraryDailyTaskInfo,
|
ILibraryDailyTaskInfo,
|
||||||
IDroneDatabase,
|
IDroneDatabase,
|
||||||
IDroneClient,
|
IDroneClient,
|
||||||
IAlignment
|
IAlignment,
|
||||||
|
ICollectibleEntry,
|
||||||
|
IIncentiveState
|
||||||
} from "../../types/inventoryTypes/inventoryTypes";
|
} from "../../types/inventoryTypes/inventoryTypes";
|
||||||
import { IOid } from "../../types/commonTypes";
|
import { IOid } from "../../types/commonTypes";
|
||||||
import {
|
import {
|
||||||
@ -943,6 +945,26 @@ const calenderProgressSchema = new Schema<ICalendarProgress>(
|
|||||||
{ _id: false }
|
{ _id: false }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const incentiveStateSchema = new Schema<IIncentiveState>(
|
||||||
|
{
|
||||||
|
threshold: Number,
|
||||||
|
complete: Boolean,
|
||||||
|
sent: Boolean
|
||||||
|
},
|
||||||
|
{ _id: false }
|
||||||
|
);
|
||||||
|
|
||||||
|
const collectibleEntrySchema = new Schema<ICollectibleEntry>(
|
||||||
|
{
|
||||||
|
CollectibleType: String,
|
||||||
|
Count: Number,
|
||||||
|
Tracking: String,
|
||||||
|
ReqScans: Number,
|
||||||
|
IncentiveStates: [incentiveStateSchema]
|
||||||
|
},
|
||||||
|
{ _id: false }
|
||||||
|
);
|
||||||
|
|
||||||
const pendingCouponSchema = new Schema<IPendingCouponDatabase>(
|
const pendingCouponSchema = new Schema<IPendingCouponDatabase>(
|
||||||
{
|
{
|
||||||
Expiry: { type: Date, default: new Date(0) },
|
Expiry: { type: Date, default: new Date(0) },
|
||||||
@ -1286,7 +1308,7 @@ const inventorySchema = new Schema<IInventoryDatabase, InventoryDocumentProps>(
|
|||||||
RecentVendorPurchases: [Schema.Types.Mixed],
|
RecentVendorPurchases: [Schema.Types.Mixed],
|
||||||
Robotics: [Schema.Types.Mixed],
|
Robotics: [Schema.Types.Mixed],
|
||||||
UsedDailyDeals: [Schema.Types.Mixed],
|
UsedDailyDeals: [Schema.Types.Mixed],
|
||||||
CollectibleSeries: [Schema.Types.Mixed],
|
CollectibleSeries: { type: [collectibleEntrySchema], default: undefined },
|
||||||
HasResetAccount: { type: Boolean, default: false },
|
HasResetAccount: { type: Boolean, default: false },
|
||||||
|
|
||||||
//Discount Coupon
|
//Discount Coupon
|
||||||
|
@ -76,6 +76,7 @@ import { setShipFavouriteLoadoutController } from "@/src/controllers/api/setShip
|
|||||||
import { setSupportedSyndicateController } from "@/src/controllers/api/setSupportedSyndicateController";
|
import { setSupportedSyndicateController } from "@/src/controllers/api/setSupportedSyndicateController";
|
||||||
import { setWeaponSkillTreeController } from "@/src/controllers/api/setWeaponSkillTreeController";
|
import { setWeaponSkillTreeController } from "@/src/controllers/api/setWeaponSkillTreeController";
|
||||||
import { shipDecorationsController } from "@/src/controllers/api/shipDecorationsController";
|
import { shipDecorationsController } from "@/src/controllers/api/shipDecorationsController";
|
||||||
|
import { startCollectibleEntryController } from "@/src/controllers/api/startCollectibleEntryController";
|
||||||
import { startDojoRecipeController } from "@/src/controllers/api/startDojoRecipeController";
|
import { startDojoRecipeController } from "@/src/controllers/api/startDojoRecipeController";
|
||||||
import { startLibraryDailyTaskController } from "@/src/controllers/api/startLibraryDailyTaskController";
|
import { startLibraryDailyTaskController } from "@/src/controllers/api/startLibraryDailyTaskController";
|
||||||
import { startLibraryPersonalTargetController } from "@/src/controllers/api/startLibraryPersonalTargetController";
|
import { startLibraryPersonalTargetController } from "@/src/controllers/api/startLibraryPersonalTargetController";
|
||||||
@ -181,6 +182,7 @@ apiRouter.post("/setShipCustomizations.php", setShipCustomizationsController);
|
|||||||
apiRouter.post("/setShipFavouriteLoadout.php", setShipFavouriteLoadoutController);
|
apiRouter.post("/setShipFavouriteLoadout.php", setShipFavouriteLoadoutController);
|
||||||
apiRouter.post("/setWeaponSkillTree.php", setWeaponSkillTreeController);
|
apiRouter.post("/setWeaponSkillTree.php", setWeaponSkillTreeController);
|
||||||
apiRouter.post("/shipDecorations.php", shipDecorationsController);
|
apiRouter.post("/shipDecorations.php", shipDecorationsController);
|
||||||
|
apiRouter.post("/startCollectibleEntry.php", startCollectibleEntryController);
|
||||||
apiRouter.post("/startDojoRecipe.php", startDojoRecipeController);
|
apiRouter.post("/startDojoRecipe.php", startDojoRecipeController);
|
||||||
apiRouter.post("/startRecipe.php", startRecipeController);
|
apiRouter.post("/startRecipe.php", startRecipeController);
|
||||||
apiRouter.post("/stepSequencers.php", stepSequencersController);
|
apiRouter.post("/stepSequencers.php", stepSequencersController);
|
||||||
|
@ -315,7 +315,7 @@ export interface IInventoryClient extends IDailyAffiliations, InventoryClientEqu
|
|||||||
UsedDailyDeals: any[];
|
UsedDailyDeals: any[];
|
||||||
LibraryPersonalTarget: string;
|
LibraryPersonalTarget: string;
|
||||||
LibraryPersonalProgress: ILibraryPersonalProgress[];
|
LibraryPersonalProgress: ILibraryPersonalProgress[];
|
||||||
CollectibleSeries: ICollectibleSery[];
|
CollectibleSeries?: ICollectibleEntry[];
|
||||||
LibraryAvailableDailyTaskInfo?: ILibraryDailyTaskInfo;
|
LibraryAvailableDailyTaskInfo?: ILibraryDailyTaskInfo;
|
||||||
LibraryActiveDailyTaskInfo?: ILibraryDailyTaskInfo;
|
LibraryActiveDailyTaskInfo?: ILibraryDailyTaskInfo;
|
||||||
HasResetAccount: boolean;
|
HasResetAccount: boolean;
|
||||||
@ -364,7 +364,7 @@ export interface IChallengeProgress {
|
|||||||
Completed?: string[];
|
Completed?: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ICollectibleSery {
|
export interface ICollectibleEntry {
|
||||||
CollectibleType: string;
|
CollectibleType: string;
|
||||||
Count: number;
|
Count: number;
|
||||||
Tracking: string;
|
Tracking: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user