mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-28 14:44:55 +02:00
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import response from "@server/lib/response";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import logger from "@server/logger";
|
|
import { generateId } from "@server/auth/sessions/app";
|
|
import { getNextAvailableClientSubnet } from "@server/lib/ip";
|
|
import config from "@server/lib/config";
|
|
import { z } from "zod";
|
|
import { fromError } from "zod-validation-error";
|
|
|
|
export type PickClientDefaultsResponse = {
|
|
olmId: string;
|
|
olmSecret: string;
|
|
subnet: string;
|
|
};
|
|
|
|
const pickClientDefaultsSchema = z
|
|
.object({
|
|
orgId: z.string()
|
|
})
|
|
.strict();
|
|
|
|
export async function pickClientDefaults(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedParams = pickClientDefaultsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { orgId } = parsedParams.data;
|
|
|
|
const olmId = generateId(15);
|
|
const secret = generateId(48);
|
|
|
|
const newSubnet = await getNextAvailableClientSubnet(orgId);
|
|
|
|
const subnet = newSubnet.split("/")[0];
|
|
|
|
return response<PickClientDefaultsResponse>(res, {
|
|
data: {
|
|
olmId: olmId,
|
|
olmSecret: secret,
|
|
subnet: subnet
|
|
},
|
|
success: true,
|
|
error: false,
|
|
message: "Organization retrieved successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|