mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-21 04:45:41 +02:00
46 lines
1,012 B
TypeScript
46 lines
1,012 B
TypeScript
|
import db from "@server/db";
|
||
|
import { and, eq } from "drizzle-orm";
|
||
|
import { roleResources, userResources } from "@server/db/schema";
|
||
|
|
||
|
export async function canUserAccessResource({
|
||
|
userId,
|
||
|
resourceId,
|
||
|
roleId
|
||
|
}: {
|
||
|
userId: string;
|
||
|
resourceId: number;
|
||
|
roleId: number;
|
||
|
}): Promise<boolean> {
|
||
|
const roleResourceAccess = await db
|
||
|
.select()
|
||
|
.from(roleResources)
|
||
|
.where(
|
||
|
and(
|
||
|
eq(roleResources.resourceId, resourceId),
|
||
|
eq(roleResources.roleId, roleId)
|
||
|
)
|
||
|
)
|
||
|
.limit(1);
|
||
|
|
||
|
if (roleResourceAccess.length > 0) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
const userResourceAccess = await db
|
||
|
.select()
|
||
|
.from(userResources)
|
||
|
.where(
|
||
|
and(
|
||
|
eq(userResources.userId, userId),
|
||
|
eq(userResources.resourceId, resourceId)
|
||
|
)
|
||
|
)
|
||
|
.limit(1);
|
||
|
|
||
|
if (userResourceAccess.length > 0) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|