import { Request, Response, NextFunction } from "express"; import { z } from "zod"; import { db, resources } from "@server/db"; import { userResources } 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 { fromError } from "zod-validation-error"; import { eq, and } from "drizzle-orm"; import { OpenAPITags, registry } from "@server/openApi"; const addUserToResourceBodySchema = z .object({ userId: z.string() }) .strict(); const addUserToResourceParamsSchema = z .object({ resourceId: z .string() .transform(Number) .pipe(z.number().int().positive()) }) .strict(); registry.registerPath({ method: "post", path: "/resource/{resourceId}/users/add", description: "Add a single user to a resource.", tags: [OpenAPITags.Resource, OpenAPITags.User], request: { params: addUserToResourceParamsSchema, body: { content: { "application/json": { schema: addUserToResourceBodySchema } } } }, responses: {} }); export async function addUserToResource( req: Request, res: Response, next: NextFunction ): Promise { try { const parsedBody = addUserToResourceBodySchema.safeParse(req.body); if (!parsedBody.success) { return next( createHttpError( HttpCode.BAD_REQUEST, fromError(parsedBody.error).toString() ) ); } const { userId } = parsedBody.data; const parsedParams = addUserToResourceParamsSchema.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)) .limit(1); if (!resource) { return next( createHttpError(HttpCode.NOT_FOUND, "Resource not found") ); } // Check if user already exists in resource const existingEntry = await db .select() .from(userResources) .where( and( eq(userResources.resourceId, resourceId), eq(userResources.userId, userId) ) ); if (existingEntry.length > 0) { return next( createHttpError( HttpCode.CONFLICT, "User already assigned to resource" ) ); } await db.insert(userResources).values({ userId, resourceId }); return response(res, { data: {}, success: true, error: false, message: "User added to resource successfully", status: HttpCode.CREATED }); } catch (error) { logger.error(error); return next( createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred") ); } }