mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
139 lines
3.9 KiB
TypeScript
139 lines
3.9 KiB
TypeScript
import { Request, Response, NextFunction } from "express";
|
|
import { z } from "zod";
|
|
import { db } from "@server/db";
|
|
import { idp, roles, userOrgs, users } from "@server/db/schemas";
|
|
import response from "@server/lib/response";
|
|
import HttpCode from "@server/types/HttpCode";
|
|
import createHttpError from "http-errors";
|
|
import { sql } from "drizzle-orm";
|
|
import logger from "@server/logger";
|
|
import { fromZodError } from "zod-validation-error";
|
|
import { OpenAPITags, registry } from "@server/openApi";
|
|
import { eq } from "drizzle-orm";
|
|
|
|
const listUsersParamsSchema = z
|
|
.object({
|
|
orgId: z.string()
|
|
})
|
|
.strict();
|
|
|
|
const listUsersSchema = z
|
|
.object({
|
|
limit: z
|
|
.string()
|
|
.optional()
|
|
.default("1000")
|
|
.transform(Number)
|
|
.pipe(z.number().int().nonnegative()),
|
|
offset: z
|
|
.string()
|
|
.optional()
|
|
.default("0")
|
|
.transform(Number)
|
|
.pipe(z.number().int().nonnegative())
|
|
})
|
|
.strict();
|
|
|
|
async function queryUsers(orgId: string, limit: number, offset: number) {
|
|
return await db
|
|
.select({
|
|
id: users.userId,
|
|
email: users.email,
|
|
emailVerified: users.emailVerified,
|
|
dateCreated: users.dateCreated,
|
|
orgId: userOrgs.orgId,
|
|
username: users.username,
|
|
name: users.name,
|
|
type: users.type,
|
|
roleId: userOrgs.roleId,
|
|
roleName: roles.name,
|
|
isOwner: userOrgs.isOwner,
|
|
idpName: idp.name,
|
|
idpId: users.idpId
|
|
})
|
|
.from(users)
|
|
.leftJoin(userOrgs, eq(users.userId, userOrgs.userId))
|
|
.leftJoin(roles, eq(userOrgs.roleId, roles.roleId))
|
|
.leftJoin(idp, eq(users.idpId, idp.idpId))
|
|
.where(eq(userOrgs.orgId, orgId))
|
|
.limit(limit)
|
|
.offset(offset);
|
|
}
|
|
|
|
export type ListUsersResponse = {
|
|
users: NonNullable<Awaited<ReturnType<typeof queryUsers>>>;
|
|
pagination: { total: number; limit: number; offset: number };
|
|
};
|
|
|
|
registry.registerPath({
|
|
method: "get",
|
|
path: "/org/{orgId}/users",
|
|
description: "List users in an organization.",
|
|
tags: [OpenAPITags.Org, OpenAPITags.User],
|
|
request: {
|
|
params: listUsersParamsSchema,
|
|
query: listUsersSchema
|
|
},
|
|
responses: {}
|
|
});
|
|
|
|
export async function listUsers(
|
|
req: Request,
|
|
res: Response,
|
|
next: NextFunction
|
|
): Promise<any> {
|
|
try {
|
|
const parsedQuery = listUsersSchema.safeParse(req.query);
|
|
if (!parsedQuery.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromZodError(parsedQuery.error)
|
|
)
|
|
);
|
|
}
|
|
const { limit, offset } = parsedQuery.data;
|
|
|
|
const parsedParams = listUsersParamsSchema.safeParse(req.params);
|
|
if (!parsedParams.success) {
|
|
return next(
|
|
createHttpError(
|
|
HttpCode.BAD_REQUEST,
|
|
fromZodError(parsedParams.error)
|
|
)
|
|
);
|
|
}
|
|
|
|
const { orgId } = parsedParams.data;
|
|
|
|
const usersWithRoles = await queryUsers(
|
|
orgId.toString(),
|
|
limit,
|
|
offset
|
|
);
|
|
|
|
const [{ count }] = await db
|
|
.select({ count: sql<number>`count(*)` })
|
|
.from(users);
|
|
|
|
return response<ListUsersResponse>(res, {
|
|
data: {
|
|
users: usersWithRoles,
|
|
pagination: {
|
|
total: count,
|
|
limit,
|
|
offset
|
|
}
|
|
},
|
|
success: true,
|
|
error: false,
|
|
message: "Users retrieved successfully",
|
|
status: HttpCode.OK
|
|
});
|
|
} catch (error) {
|
|
logger.error(error);
|
|
return next(
|
|
createHttpError(HttpCode.INTERNAL_SERVER_ERROR, "An error occurred")
|
|
);
|
|
}
|
|
}
|