mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 00:36:06 +00:00
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
/*
|
|
* This file is part of a proprietary work.
|
|
*
|
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This file is licensed under the Fossorial Commercial License.
|
|
* You may not use this file except in compliance with the License.
|
|
* Unauthorized use, copying, modification, or distribution is strictly prohibited.
|
|
*
|
|
* This file is not licensed under the AGPLv3.
|
|
*/
|
|
|
|
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db } from "@server/db";
|
|
import { sites } from "@server/db";
|
|
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 { eq, and } from "drizzle-orm";
|
|
import {
|
|
fireSiteOnlineAlert,
|
|
fireSiteOfflineAlert
|
|
} from "#private/lib/alerts/events/siteEvents";
|
|
|
|
const paramsSchema = z.strictObject({
|
|
orgId: z.string().nonempty(),
|
|
siteId: z.coerce.number().int().positive()
|
|
});
|
|
|
|
const bodySchema = z.strictObject({
|
|
eventType: z.enum(["site_online", "site_offline"])
|
|
});
|
|
|
|
export type TriggerSiteAlertResponse = {
|
|
success: true;
|
|
};
|
|
|
|
export async function triggerSiteAlert(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedParams = paramsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
const { orgId, siteId } = parsedParams.data;
|
|
|
|
const parsedBody = bodySchema.safeParse(req.body);
|
|
if (!parsedBody.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedBody.error).toString()
|
|
)
|
|
);
|
|
}
|
|
const { eventType } = parsedBody.data;
|
|
|
|
// Verify the site exists and belongs to the org
|
|
const [site] = await db
|
|
.select()
|
|
.from(sites)
|
|
.where(and(eq(sites.siteId, siteId), eq(sites.orgId, orgId)))
|
|
.limit(1);
|
|
|
|
if (!site) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.NOT_FOUND,
|
|
`Site ${siteId} not found in organization ${orgId}`
|
|
)
|
|
);
|
|
}
|
|
|
|
if (eventType === "site_online") {
|
|
await fireSiteOnlineAlert(orgId, siteId, site.name ?? undefined);
|
|
} else {
|
|
await fireSiteOfflineAlert(orgId, siteId, site.name ?? undefined);
|
|
}
|
|
|
|
return response<TriggerSiteAlertResponse>(res, {
|
|
data: { success: true },
|
|
success: true,
|
|
error: false,
|
|
message: "Alert triggered successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|