mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-06 04:24:14 +00:00
Handle crud to newt with new hcs
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
import { Request, Response, NextFunction } from "express";
|
||||
import { z } from "zod";
|
||||
import { db, targetHealthCheck } from "@server/db";
|
||||
import { db, targetHealthCheck, newts, sites } from "@server/db";
|
||||
import response from "@server/lib/response";
|
||||
import HttpCode from "@server/types/HttpCode";
|
||||
import createHttpError from "http-errors";
|
||||
@@ -21,6 +21,7 @@ import logger from "@server/logger";
|
||||
import { fromError } from "zod-validation-error";
|
||||
import { OpenAPITags, registry } from "@server/openApi";
|
||||
import { and, eq, isNull } from "drizzle-orm";
|
||||
import { removeStandaloneHealthCheck } from "@server/routers/newt/targets";
|
||||
|
||||
const paramsSchema = z
|
||||
.object({
|
||||
@@ -91,6 +92,21 @@ export async function deleteHealthCheck(
|
||||
)
|
||||
);
|
||||
|
||||
// Remove health check from newt if the site is a newt site
|
||||
const [newt] = await db
|
||||
.select()
|
||||
.from(newts)
|
||||
.where(eq(newts.siteId, existing.siteId))
|
||||
.limit(1);
|
||||
|
||||
if (newt) {
|
||||
await removeStandaloneHealthCheck(
|
||||
newt.newtId,
|
||||
healthCheckId,
|
||||
newt.version
|
||||
);
|
||||
}
|
||||
|
||||
return response<null>(res, {
|
||||
data: null,
|
||||
success: true,
|
||||
|
||||
Reference in New Issue
Block a user