mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-06 20:29:50 +00:00
119 lines
3.5 KiB
TypeScript
119 lines
3.5 KiB
TypeScript
import { db, launcherViews } from "@server/db";
|
|
import { response } from "@server/lib/response";
|
|
import { getFirstString } from "@server/lib/requestParams";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import { and, eq } from "drizzle-orm";
|
|
import { NextFunction, Request, Response } from "express";
|
|
import createHttpError from "http-errors";
|
|
import moment from "moment";
|
|
import { fromZodError } from "zod-validation-error";
|
|
import { z } from "zod";
|
|
import {
|
|
isOrgAdminOrOwner,
|
|
verifyLauncherOrgMembership
|
|
} from "./launcherResourceAccess";
|
|
import { launcherViewConfigSchema } from "./types";
|
|
|
|
const createLauncherViewBodySchema = z.strictObject({
|
|
name: z.string().min(1).max(128),
|
|
config: launcherViewConfigSchema,
|
|
orgWide: z.boolean().optional().default(false)
|
|
});
|
|
|
|
export async function createLauncherView(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const orgId = getFirstString(req.params.orgId);
|
|
const userId = req.user?.userId;
|
|
|
|
if (!userId) {
|
|
return next(
|
|
createHttpError(HttpCode.UNAUTHORIZED, "User not authenticated")
|
|
);
|
|
}
|
|
|
|
if (!orgId) {
|
|
return next(
|
|
createHttpError(HttpCode.BAD_REQUEST, "Invalid organization ID")
|
|
);
|
|
}
|
|
|
|
const parsed = createLauncherViewBodySchema.safeParse(req.body);
|
|
if (!parsed.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromZodError(parsed.error)
|
|
)
|
|
);
|
|
}
|
|
|
|
const { userRoleIds } = await verifyLauncherOrgMembership(
|
|
orgId,
|
|
userId
|
|
);
|
|
|
|
if (parsed.data.orgWide) {
|
|
const canManageOrgWide = await isOrgAdminOrOwner(
|
|
orgId,
|
|
userId,
|
|
userRoleIds
|
|
);
|
|
if (!canManageOrgWide) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.FORBIDDEN,
|
|
"Only administrators can create org-wide views"
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
const now = moment().toISOString();
|
|
const [created] = await db
|
|
.insert(launcherViews)
|
|
.values({
|
|
orgId,
|
|
userId: parsed.data.orgWide ? null : userId,
|
|
name: parsed.data.name,
|
|
config: JSON.stringify(parsed.data.config),
|
|
createdAt: now,
|
|
updatedAt: now
|
|
})
|
|
.returning();
|
|
|
|
return response(res, {
|
|
data: {
|
|
viewId: created.viewId,
|
|
orgId: created.orgId,
|
|
userId: created.userId,
|
|
name: created.name,
|
|
config: launcherViewConfigSchema.parse(
|
|
JSON.parse(created.config)
|
|
),
|
|
createdAt: created.createdAt,
|
|
updatedAt: created.updatedAt,
|
|
isOrgWide: created.userId == null
|
|
},
|
|
success: true,
|
|
error: false,
|
|
message: "Launcher view created successfully",
|
|
status: HttpCode.CREATED
|
|
});
|
|
} catch (error) {
|
|
if (createHttpError.isHttpError(error)) {
|
|
return next(error);
|
|
}
|
|
console.error("Error creating launcher view:", error);
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.INTERNAL_SERVER_ERROR,
|
|
"Internal server error"
|
|
)
|
|
);
|
|
}
|
|
}
|