forked from OpenWF/SpaceNinjaServer
feat: custom obstacle course leaderboard (#1326)
Reviewed-on: OpenWF/SpaceNinjaServer#1326
This commit is contained in:
parent
06ce4ac695
commit
5597bfe876
@ -0,0 +1,48 @@
|
|||||||
|
import { getJSONfromString } from "@/src/helpers/stringHelpers";
|
||||||
|
import { Guild } from "@/src/models/guildModel";
|
||||||
|
import { getAccountForRequest } from "@/src/services/loginService";
|
||||||
|
import { logger } from "@/src/utils/logger";
|
||||||
|
import { RequestHandler } from "express";
|
||||||
|
|
||||||
|
export const customObstacleCourseLeaderboardController: RequestHandler = async (req, res) => {
|
||||||
|
const data = getJSONfromString<ICustomObstacleCourseLeaderboardRequest>(String(req.body));
|
||||||
|
const guild = (await Guild.findById(data.g, "DojoComponents"))!;
|
||||||
|
const component = guild.DojoComponents.id(data.c)!;
|
||||||
|
if (req.query.act == "f") {
|
||||||
|
res.json({
|
||||||
|
results: component.Leaderboard ?? []
|
||||||
|
});
|
||||||
|
} else if (req.query.act == "p") {
|
||||||
|
const account = await getAccountForRequest(req);
|
||||||
|
component.Leaderboard ??= [];
|
||||||
|
const entry = component.Leaderboard.find(x => x.n == account.DisplayName);
|
||||||
|
if (entry) {
|
||||||
|
entry.s = data.s!;
|
||||||
|
} else {
|
||||||
|
component.Leaderboard.push({
|
||||||
|
s: data.s!,
|
||||||
|
n: account.DisplayName,
|
||||||
|
r: 0
|
||||||
|
});
|
||||||
|
}
|
||||||
|
component.Leaderboard.sort((a, b) => a.s - b.s); // In this case, the score is the time in milliseconds, so smaller is better.
|
||||||
|
if (component.Leaderboard.length > 10) {
|
||||||
|
component.Leaderboard.shift();
|
||||||
|
}
|
||||||
|
let r = 0;
|
||||||
|
for (const entry of component.Leaderboard) {
|
||||||
|
entry.r = ++r;
|
||||||
|
}
|
||||||
|
await guild.save();
|
||||||
|
res.status(200).end();
|
||||||
|
} else {
|
||||||
|
logger.debug(`data provided to ${req.path}: ${String(req.body)}`);
|
||||||
|
throw new Error(`unknown customObstacleCourseLeaderboard act: ${String(req.query.act)}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
interface ICustomObstacleCourseLeaderboardRequest {
|
||||||
|
g: string;
|
||||||
|
c: string;
|
||||||
|
s?: number; // act=p
|
||||||
|
}
|
@ -9,7 +9,8 @@ import {
|
|||||||
IGuildRank,
|
IGuildRank,
|
||||||
IGuildLogRoomChange,
|
IGuildLogRoomChange,
|
||||||
IGuildLogEntryRoster,
|
IGuildLogEntryRoster,
|
||||||
IGuildLogEntryContributable
|
IGuildLogEntryContributable,
|
||||||
|
IDojoLeaderboardEntry
|
||||||
} from "@/src/types/guildTypes";
|
} from "@/src/types/guildTypes";
|
||||||
import { Document, Model, model, Schema, Types } from "mongoose";
|
import { Document, Model, model, Schema, Types } from "mongoose";
|
||||||
import { fusionTreasuresSchema, typeCountSchema } from "./inventoryModels/inventoryModel";
|
import { fusionTreasuresSchema, typeCountSchema } from "./inventoryModels/inventoryModel";
|
||||||
@ -25,6 +26,15 @@ const dojoDecoSchema = new Schema<IDojoDecoDatabase>({
|
|||||||
RushPlatinum: Number
|
RushPlatinum: Number
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const dojoLeaderboardEntrySchema = new Schema<IDojoLeaderboardEntry>(
|
||||||
|
{
|
||||||
|
s: Number,
|
||||||
|
r: Number,
|
||||||
|
n: String
|
||||||
|
},
|
||||||
|
{ _id: false }
|
||||||
|
);
|
||||||
|
|
||||||
const dojoComponentSchema = new Schema<IDojoComponentDatabase>({
|
const dojoComponentSchema = new Schema<IDojoComponentDatabase>({
|
||||||
pf: { type: String, required: true },
|
pf: { type: String, required: true },
|
||||||
ppf: String,
|
ppf: String,
|
||||||
@ -40,7 +50,8 @@ const dojoComponentSchema = new Schema<IDojoComponentDatabase>({
|
|||||||
RushPlatinum: Number,
|
RushPlatinum: Number,
|
||||||
DestructionTime: Date,
|
DestructionTime: Date,
|
||||||
Decos: [dojoDecoSchema],
|
Decos: [dojoDecoSchema],
|
||||||
DecoCapacity: Number
|
DecoCapacity: Number,
|
||||||
|
Leaderboard: { type: [dojoLeaderboardEntrySchema], default: undefined }
|
||||||
});
|
});
|
||||||
|
|
||||||
const techProjectSchema = new Schema<ITechProjectDatabase>(
|
const techProjectSchema = new Schema<ITechProjectDatabase>(
|
||||||
|
@ -24,6 +24,7 @@ import { contributeToVaultController } from "@/src/controllers/api/contributeToV
|
|||||||
import { createGuildController } from "@/src/controllers/api/createGuildController";
|
import { createGuildController } from "@/src/controllers/api/createGuildController";
|
||||||
import { creditsController } from "@/src/controllers/api/creditsController";
|
import { creditsController } from "@/src/controllers/api/creditsController";
|
||||||
import { customizeGuildRanksController } from "@/src/controllers/api/customizeGuildRanksController";
|
import { customizeGuildRanksController } from "@/src/controllers/api/customizeGuildRanksController";
|
||||||
|
import { customObstacleCourseLeaderboardController } from "@/src/controllers/api/customObstacleCourseLeaderboardController";
|
||||||
import { declineGuildInviteController } from "@/src/controllers/api/declineGuildInviteController";
|
import { declineGuildInviteController } from "@/src/controllers/api/declineGuildInviteController";
|
||||||
import { deleteSessionController } from "@/src/controllers/api/deleteSessionController";
|
import { deleteSessionController } from "@/src/controllers/api/deleteSessionController";
|
||||||
import { destroyDojoDecoController } from "@/src/controllers/api/destroyDojoDecoController";
|
import { destroyDojoDecoController } from "@/src/controllers/api/destroyDojoDecoController";
|
||||||
@ -183,6 +184,7 @@ apiRouter.post("/contributeToDojoComponent.php", contributeToDojoComponentContro
|
|||||||
apiRouter.post("/contributeToVault.php", contributeToVaultController);
|
apiRouter.post("/contributeToVault.php", contributeToVaultController);
|
||||||
apiRouter.post("/createGuild.php", createGuildController);
|
apiRouter.post("/createGuild.php", createGuildController);
|
||||||
apiRouter.post("/customizeGuildRanks.php", customizeGuildRanksController);
|
apiRouter.post("/customizeGuildRanks.php", customizeGuildRanksController);
|
||||||
|
apiRouter.post("/customObstacleCourseLeaderboard.php", customObstacleCourseLeaderboardController);
|
||||||
apiRouter.post("/destroyDojoDeco.php", destroyDojoDecoController);
|
apiRouter.post("/destroyDojoDeco.php", destroyDojoDecoController);
|
||||||
apiRouter.post("/dojoComponentRush.php", dojoComponentRushController);
|
apiRouter.post("/dojoComponentRush.php", dojoComponentRushController);
|
||||||
apiRouter.post("/drones.php", dronesController);
|
apiRouter.post("/drones.php", dronesController);
|
||||||
|
@ -152,6 +152,7 @@ export interface IDojoComponentDatabase
|
|||||||
CompletionLogPending?: boolean;
|
CompletionLogPending?: boolean;
|
||||||
DestructionTime?: Date;
|
DestructionTime?: Date;
|
||||||
Decos?: IDojoDecoDatabase[];
|
Decos?: IDojoDecoDatabase[];
|
||||||
|
Leaderboard?: IDojoLeaderboardEntry[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IDojoDecoClient {
|
export interface IDojoDecoClient {
|
||||||
@ -212,3 +213,9 @@ export interface IGuildLogEntryNumber {
|
|||||||
entryType: number;
|
entryType: number;
|
||||||
details: number;
|
details: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IDojoLeaderboardEntry {
|
||||||
|
s: number; // score
|
||||||
|
r: number; // rank
|
||||||
|
n: string; // displayName
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user