mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
164 lines
4.6 KiB
TypeScript
164 lines
4.6 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db } from "@server/db";
|
|
import { resourceRules, resources } from "@server/db/schemas";
|
|
import { eq } from "drizzle-orm";
|
|
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 {
|
|
isValidCIDR,
|
|
isValidIP,
|
|
isValidUrlGlobPattern
|
|
} from "@server/lib/validators";
|
|
import { OpenAPITags, registry } from "@server/openApi";
|
|
|
|
const createResourceRuleSchema = z
|
|
.object({
|
|
action: z.enum(["ACCEPT", "DROP"]),
|
|
match: z.enum(["CIDR", "IP", "PATH"]),
|
|
value: z.string().min(1),
|
|
priority: z.number().int(),
|
|
enabled: z.boolean().optional()
|
|
})
|
|
.strict();
|
|
|
|
const createResourceRuleParamsSchema = z
|
|
.object({
|
|
resourceId: z
|
|
.string()
|
|
.transform(Number)
|
|
.pipe(z.number().int().positive())
|
|
})
|
|
.strict();
|
|
|
|
registry.registerPath({
|
|
method: "put",
|
|
path: "/resource/{resourceId}/rule",
|
|
description: "Create a resource rule.",
|
|
tags: [OpenAPITags.Resource, OpenAPITags.Rule],
|
|
request: {
|
|
params: createResourceRuleParamsSchema,
|
|
body: {
|
|
content: {
|
|
"application/json": {
|
|
schema: createResourceRuleSchema
|
|
}
|
|
}
|
|
}
|
|
},
|
|
responses: {}
|
|
});
|
|
|
|
export async function createResourceRule(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedBody = createResourceRuleSchema.safeParse(req.body);
|
|
if (!parsedBody.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedBody.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { action, match, value, priority, enabled } = parsedBody.data;
|
|
|
|
const parsedParams = createResourceRuleParamsSchema.safeParse(
|
|
req.params
|
|
);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { resourceId } = parsedParams.data;
|
|
|
|
// Verify that the referenced resource exists
|
|
const [resource] = await db
|
|
.select()
|
|
.from(resources)
|
|
.where(eq(resources.resourceId, resourceId))
|
|
.limit(1);
|
|
|
|
if (!resource) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.NOT_FOUND,
|
|
`Resource with ID ${resourceId} not found`
|
|
)
|
|
);
|
|
}
|
|
|
|
if (!resource.http) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
"Cannot create rule for non-http resource"
|
|
)
|
|
);
|
|
}
|
|
|
|
if (match === "CIDR") {
|
|
if (!isValidCIDR(value)) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
"Invalid CIDR provided"
|
|
)
|
|
);
|
|
}
|
|
} else if (match === "IP") {
|
|
if (!isValidIP(value)) {
|
|
return next(
|
|
createHttpError(HttpCode.BAD_REQUEST, "Invalid IP provided")
|
|
);
|
|
}
|
|
} else if (match === "PATH") {
|
|
if (!isValidUrlGlobPattern(value)) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
"Invalid URL glob pattern provided"
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
// Create the new resource rule
|
|
const [newRule] = await db
|
|
.insert(resourceRules)
|
|
.values({
|
|
resourceId,
|
|
action,
|
|
match,
|
|
value,
|
|
priority,
|
|
enabled
|
|
})
|
|
.returning();
|
|
|
|
return response(res, {
|
|
data: newRule,
|
|
success: true,
|
|
error: false,
|
|
message: "Resource rule created successfully",
|
|
status: HttpCode.CREATED
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|