mirror of
https://github.com/outbackdingo/pangolin.git
synced 2026-01-27 18:20:04 +00:00
301 lines
9.8 KiB
TypeScript
301 lines
9.8 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db, TargetHealthCheck, targetHealthCheck } from "@server/db";
|
|
import { newts, resources, sites, Target, targets } 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 { addPeer } from "../gerbil/peers";
|
|
import { isIpInCidr } from "@server/lib/ip";
|
|
import { fromError } from "zod-validation-error";
|
|
import { addTargets } from "../newt/targets";
|
|
import { eq } from "drizzle-orm";
|
|
import { pickPort } from "./helpers";
|
|
import { isTargetValid } from "@server/lib/validators";
|
|
import { OpenAPITags, registry } from "@server/openApi";
|
|
|
|
const createTargetParamsSchema = z
|
|
.object({
|
|
resourceId: z
|
|
.string()
|
|
.transform(Number)
|
|
.pipe(z.number().int().positive())
|
|
})
|
|
.strict();
|
|
|
|
const createTargetSchema = z
|
|
.object({
|
|
siteId: z.number().int().positive(),
|
|
ip: z.string().refine(isTargetValid),
|
|
method: z.string().optional().nullable(),
|
|
port: z.number().int().min(1).max(65535),
|
|
enabled: z.boolean().default(true),
|
|
hcEnabled: z.boolean().optional(),
|
|
hcPath: z.string().min(1).optional().nullable(),
|
|
hcScheme: z.string().optional().nullable(),
|
|
hcMode: z.string().optional().nullable(),
|
|
hcHostname: z.string().optional().nullable(),
|
|
hcPort: z.number().int().positive().optional().nullable(),
|
|
hcInterval: z.number().int().positive().min(5).optional().nullable(),
|
|
hcUnhealthyInterval: z
|
|
.number()
|
|
.int()
|
|
.positive()
|
|
.min(5)
|
|
.optional()
|
|
.nullable(),
|
|
hcTimeout: z.number().int().positive().min(1).optional().nullable(),
|
|
hcHeaders: z
|
|
.array(z.object({ name: z.string(), value: z.string() }))
|
|
.nullable()
|
|
.optional(),
|
|
hcFollowRedirects: z.boolean().optional().nullable(),
|
|
hcMethod: z.string().min(1).optional().nullable(),
|
|
hcStatus: z.number().int().optional().nullable(),
|
|
path: z.string().optional().nullable(),
|
|
pathMatchType: z
|
|
.enum(["exact", "prefix", "regex"])
|
|
.optional()
|
|
.nullable(),
|
|
rewritePath: z.string().optional().nullable(),
|
|
rewritePathType: z
|
|
.enum(["exact", "prefix", "regex", "stripPrefix"])
|
|
.optional()
|
|
.nullable(),
|
|
priority: z.number().int().min(1).max(1000).optional().nullable()
|
|
})
|
|
.strict();
|
|
|
|
export type CreateTargetResponse = Target & TargetHealthCheck;
|
|
|
|
registry.registerPath({
|
|
method: "put",
|
|
path: "/resource/{resourceId}/target",
|
|
description: "Create a target for a resource.",
|
|
tags: [OpenAPITags.Resource, OpenAPITags.Target],
|
|
request: {
|
|
params: createTargetParamsSchema,
|
|
body: {
|
|
content: {
|
|
"application/json": {
|
|
schema: createTargetSchema
|
|
}
|
|
}
|
|
}
|
|
},
|
|
responses: {}
|
|
});
|
|
|
|
export async function createTarget(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedBody = createTargetSchema.safeParse(req.body);
|
|
if (!parsedBody.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedBody.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const targetData = parsedBody.data;
|
|
|
|
const parsedParams = createTargetParamsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { resourceId } = parsedParams.data;
|
|
|
|
// get the resource
|
|
const [resource] = await db
|
|
.select()
|
|
.from(resources)
|
|
.where(eq(resources.resourceId, resourceId));
|
|
|
|
if (!resource) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.NOT_FOUND,
|
|
`Resource with ID ${resourceId} not found`
|
|
)
|
|
);
|
|
}
|
|
|
|
const siteId = targetData.siteId;
|
|
|
|
const [site] = await db
|
|
.select()
|
|
.from(sites)
|
|
.where(eq(sites.siteId, siteId))
|
|
.limit(1);
|
|
|
|
if (!site) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.NOT_FOUND,
|
|
`Site with ID ${siteId} not found`
|
|
)
|
|
);
|
|
}
|
|
|
|
const existingTargets = await db
|
|
.select()
|
|
.from(targets)
|
|
.where(eq(targets.resourceId, resourceId));
|
|
|
|
const existingTarget = existingTargets.find(
|
|
(target) =>
|
|
target.ip === targetData.ip &&
|
|
target.port === targetData.port &&
|
|
target.method === targetData.method &&
|
|
target.siteId === targetData.siteId
|
|
);
|
|
|
|
if (existingTarget) {
|
|
// log a warning
|
|
logger.warn(`Target with IP ${targetData.ip}, port ${targetData.port}, method ${targetData.method} already exists for resource ID ${resourceId}`);
|
|
}
|
|
|
|
let newTarget: Target[] = [];
|
|
let healthCheck: TargetHealthCheck[] = [];
|
|
let targetIps: string[] = [];
|
|
if (site.type == "local") {
|
|
newTarget = await db
|
|
.insert(targets)
|
|
.values({
|
|
resourceId,
|
|
...targetData,
|
|
priority: targetData.priority || 100
|
|
})
|
|
.returning();
|
|
} else {
|
|
// make sure the target is within the site subnet
|
|
if (
|
|
site.type == "wireguard" &&
|
|
!isIpInCidr(targetData.ip, site.subnet!)
|
|
) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
`Target IP is not within the site subnet`
|
|
)
|
|
);
|
|
}
|
|
|
|
const { internalPort, targetIps: newTargetIps } = await pickPort(
|
|
site.siteId!,
|
|
db
|
|
);
|
|
|
|
if (!internalPort) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
`No available internal port`
|
|
)
|
|
);
|
|
}
|
|
|
|
newTarget = await db
|
|
.insert(targets)
|
|
.values({
|
|
resourceId,
|
|
siteId: site.siteId,
|
|
ip: targetData.ip,
|
|
method: targetData.method,
|
|
port: targetData.port,
|
|
internalPort,
|
|
enabled: targetData.enabled,
|
|
path: targetData.path,
|
|
pathMatchType: targetData.pathMatchType,
|
|
rewritePath: targetData.rewritePath,
|
|
rewritePathType: targetData.rewritePathType,
|
|
priority: targetData.priority || 100
|
|
})
|
|
.returning();
|
|
|
|
// add the new target to the targetIps array
|
|
newTargetIps.push(`${targetData.ip}/32`);
|
|
|
|
targetIps = newTargetIps;
|
|
}
|
|
|
|
let hcHeaders = null;
|
|
if (targetData.hcHeaders) {
|
|
hcHeaders = JSON.stringify(targetData.hcHeaders);
|
|
}
|
|
|
|
healthCheck = await db
|
|
.insert(targetHealthCheck)
|
|
.values({
|
|
targetId: newTarget[0].targetId,
|
|
hcEnabled: targetData.hcEnabled ?? false,
|
|
hcPath: targetData.hcPath ?? null,
|
|
hcScheme: targetData.hcScheme ?? null,
|
|
hcMode: targetData.hcMode ?? null,
|
|
hcHostname: targetData.hcHostname ?? null,
|
|
hcPort: targetData.hcPort ?? null,
|
|
hcInterval: targetData.hcInterval ?? null,
|
|
hcUnhealthyInterval: targetData.hcUnhealthyInterval ?? null,
|
|
hcTimeout: targetData.hcTimeout ?? null,
|
|
hcHeaders: hcHeaders,
|
|
hcFollowRedirects: targetData.hcFollowRedirects ?? null,
|
|
hcMethod: targetData.hcMethod ?? null,
|
|
hcStatus: targetData.hcStatus ?? null,
|
|
hcHealth: "unknown"
|
|
})
|
|
.returning();
|
|
|
|
if (site.pubKey) {
|
|
if (site.type == "wireguard") {
|
|
await addPeer(site.exitNodeId!, {
|
|
publicKey: site.pubKey,
|
|
allowedIps: targetIps.flat()
|
|
});
|
|
} else if (site.type == "newt") {
|
|
// get the newt on the site by querying the newt table for siteId
|
|
const [newt] = await db
|
|
.select()
|
|
.from(newts)
|
|
.where(eq(newts.siteId, site.siteId))
|
|
.limit(1);
|
|
|
|
await addTargets(
|
|
newt.newtId,
|
|
newTarget,
|
|
healthCheck,
|
|
resource.protocol,
|
|
resource.proxyPort
|
|
);
|
|
}
|
|
}
|
|
|
|
return response<CreateTargetResponse>(res, {
|
|
data: {
|
|
...newTarget[0],
|
|
...healthCheck[0]
|
|
},
|
|
success: true,
|
|
error: false,
|
|
message: "Target created successfully",
|
|
status: HttpCode.CREATED
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|