118 lines
3.4 KiB
TypeScript
118 lines
3.4 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db } from "@server/db";
|
|
import { siteResources, sites, SiteResource } from "@server/db";
|
|
import response from "@server/lib/response";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import { eq, and } from "drizzle-orm";
|
|
import { fromError } from "zod-validation-error";
|
|
import logger from "@server/logger";
|
|
import { OpenAPITags, registry } from "@server/openApi";
|
|
|
|
const listSiteResourcesParamsSchema = z
|
|
.object({
|
|
siteId: z.string().transform(Number).pipe(z.number().int().positive()),
|
|
orgId: z.string()
|
|
})
|
|
.strict();
|
|
|
|
const listSiteResourcesQuerySchema = z.object({
|
|
limit: z
|
|
.string()
|
|
.optional()
|
|
.default("100")
|
|
.transform(Number)
|
|
.pipe(z.number().int().positive()),
|
|
offset: z
|
|
.string()
|
|
.optional()
|
|
.default("0")
|
|
.transform(Number)
|
|
.pipe(z.number().int().nonnegative())
|
|
});
|
|
|
|
export type ListSiteResourcesResponse = {
|
|
siteResources: SiteResource[];
|
|
};
|
|
|
|
registry.registerPath({
|
|
method: "get",
|
|
path: "/org/{orgId}/site/{siteId}/resources",
|
|
description: "List site resources for a site.",
|
|
tags: [OpenAPITags.Client, OpenAPITags.Org],
|
|
request: {
|
|
params: listSiteResourcesParamsSchema,
|
|
query: listSiteResourcesQuerySchema
|
|
},
|
|
responses: {}
|
|
});
|
|
|
|
export async function listSiteResources(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedParams = listSiteResourcesParamsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedParams.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const parsedQuery = listSiteResourcesQuerySchema.safeParse(req.query);
|
|
if (!parsedQuery.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromError(parsedQuery.error).toString()
|
|
)
|
|
);
|
|
}
|
|
|
|
const { siteId, orgId } = parsedParams.data;
|
|
const { limit, offset } = parsedQuery.data;
|
|
|
|
// Verify the site exists and belongs to the org
|
|
const site = await db
|
|
.select()
|
|
.from(sites)
|
|
.where(and(eq(sites.siteId, siteId), eq(sites.orgId, orgId)))
|
|
.limit(1);
|
|
|
|
if (site.length === 0) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.NOT_FOUND,
|
|
"Site not found"
|
|
)
|
|
);
|
|
}
|
|
|
|
// Get site resources
|
|
const siteResourcesList = await db
|
|
.select()
|
|
.from(siteResources)
|
|
.where(and(
|
|
eq(siteResources.siteId, siteId),
|
|
eq(siteResources.orgId, orgId)
|
|
))
|
|
.limit(limit)
|
|
.offset(offset);
|
|
|
|
return response(res, {
|
|
data: { siteResources: siteResourcesList },
|
|
success: true,
|
|
error: false,
|
|
message: "Site resources retrieved successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error("Error listing site resources:", error);
|
|
return next(createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "Failed to list site resources"));
|
|
}
|
|
}
|