This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Liam e87d73bbdf
Some checks failed
Deploy Website / deploy (push) Waiting to run
Deploy Backend / deploy (push) Has been cancelled
LETS GO BABY
2024-10-09 01:17:00 +01:00

55 lines
1.5 KiB
TypeScript

import { Controller, Get } from "elysia-decorators";
import { PlayerService } from "../service/player.service";
import { t } from "elysia";
import { PlayerHistory } from "@ssr/common/types/player/player-history";
import { PlayerTrackedSince } from "@ssr/common/types/player/player-tracked-since";
@Controller("/player")
export default class PlayerController {
@Get("/history/:id", {
config: {},
params: t.Object({
id: t.String({ required: true }),
}),
query: t.Object({
createIfMissing: t.Boolean({ default: false, required: false }),
}),
})
public async getPlayer({
params: { id },
query: { createIfMissing },
}: {
params: { id: string };
query: { createIfMissing: boolean };
}): Promise<{ statistics: Record<string, PlayerHistory> }> {
const player = await PlayerService.getPlayer(id, createIfMissing);
return { statistics: player.getHistoryPreviousDays(50) };
}
@Get("/tracked/:id", {
config: {},
params: t.Object({
id: t.String({ required: true }),
}),
})
public async getTrackedStatus({
params: { id },
query: { createIfMissing },
}: {
params: { id: string };
query: { createIfMissing: boolean };
}): Promise<PlayerTrackedSince> {
try {
const player = await PlayerService.getPlayer(id, createIfMissing);
return {
tracked: true,
daysTracked: player.getDaysTracked(),
};
} catch {
return {
tracked: false,
};
}
}
}