mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-30 17:51:36 +00:00
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import response from "@server/lib/response";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import logger from "@server/logger";
|
|
import { fromError } from "zod-validation-error";
|
|
import {
|
|
getCachedStatusHistory,
|
|
statusHistoryQuerySchema,
|
|
StatusHistoryResponse
|
|
} from "@server/lib/statusHistory";
|
|
|
|
const siteParamsSchema = z.object({
|
|
siteId: z.string().transform((v) => parseInt(v, 10))
|
|
});
|
|
|
|
export async function getSiteStatusHistory(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedParams = siteParamsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
const parsedQuery = statusHistoryQuerySchema.safeParse(req.query);
|
|
if (!parsedQuery.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedQuery.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const entityType = "site";
|
|
const entityId = parsedParams.data.siteId;
|
|
const { days } = parsedQuery.data;
|
|
|
|
const data = await getCachedStatusHistory(entityType, entityId, days);
|
|
|
|
return response<StatusHistoryResponse>(res, {
|
|
data,
|
|
success: true,
|
|
error: false,
|
|
message: "Status history retrieved successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
} |