mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-22 00:52:50 -06:00
Co-authored-by: Dhruwang Jariwala <67850763+Dhruwang@users.noreply.github.com> Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
102 lines
3.2 KiB
TypeScript
102 lines
3.2 KiB
TypeScript
import "server-only";
|
|
import { teamCache } from "@/lib/cache/team";
|
|
import { TTeamPermission } from "@/modules/ee/teams/project-teams/types/team";
|
|
import { TTeamRole } from "@/modules/ee/teams/team-list/types/team";
|
|
import { Prisma } from "@prisma/client";
|
|
import { cache as reactCache } from "react";
|
|
import { prisma } from "@formbricks/database";
|
|
import { cache } from "@formbricks/lib/cache";
|
|
import { membershipCache } from "@formbricks/lib/membership/cache";
|
|
import { validateInputs } from "@formbricks/lib/utils/validate";
|
|
import { ZId, ZString } from "@formbricks/types/common";
|
|
import { DatabaseError, UnknownError } from "@formbricks/types/errors";
|
|
|
|
export const getProjectPermissionByUserId = reactCache(
|
|
async (userId: string, projectId: string): Promise<TTeamPermission | null> =>
|
|
cache(
|
|
async () => {
|
|
validateInputs([userId, ZString], [projectId, ZString]);
|
|
|
|
try {
|
|
const projectMemberships = await prisma.projectTeam.findMany({
|
|
where: {
|
|
projectId,
|
|
team: {
|
|
teamUsers: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!projectMemberships) return null;
|
|
let highestPermission: TTeamPermission | null = null;
|
|
|
|
for (const membership of projectMemberships) {
|
|
if (membership.permission === "manage") {
|
|
highestPermission = "manage";
|
|
} else if (membership.permission === "readWrite" && highestPermission !== "manage") {
|
|
highestPermission = "readWrite";
|
|
} else if (
|
|
membership.permission === "read" &&
|
|
highestPermission !== "manage" &&
|
|
highestPermission !== "readWrite"
|
|
) {
|
|
highestPermission = "read";
|
|
}
|
|
}
|
|
|
|
return highestPermission;
|
|
} catch (error) {
|
|
if (error instanceof Prisma.PrismaClientKnownRequestError) {
|
|
console.error(error);
|
|
throw new DatabaseError(error.message);
|
|
}
|
|
|
|
throw new UnknownError("Error while fetching membership");
|
|
}
|
|
},
|
|
[`getProjectPermissionByUserId-${userId}-${projectId}`],
|
|
{
|
|
tags: [teamCache.tag.byUserId(userId), teamCache.tag.byProjectId(projectId)],
|
|
}
|
|
)()
|
|
);
|
|
|
|
export const getTeamRoleByTeamIdUserId = reactCache(
|
|
async (teamId: string, userId: string): Promise<TTeamRole | null> =>
|
|
cache(
|
|
async () => {
|
|
validateInputs([teamId, ZId], [userId, ZId]);
|
|
try {
|
|
const teamUser = await prisma.teamUser.findUnique({
|
|
where: {
|
|
teamId_userId: {
|
|
teamId,
|
|
userId,
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!teamUser) {
|
|
return null;
|
|
}
|
|
|
|
return teamUser.role;
|
|
} catch (error) {
|
|
if (error instanceof Prisma.PrismaClientKnownRequestError) {
|
|
throw new DatabaseError(error.message);
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
},
|
|
[`getTeamMembershipByTeamIdUserId-${teamId}-${userId}`],
|
|
{
|
|
tags: [teamCache.tag.byId(teamId), membershipCache.tag.byUserId(userId)],
|
|
}
|
|
)()
|
|
);
|