♻️ (builder) Remove barrel export and flatten folder arch
This commit is contained in:
83
apps/builder/src/helpers/databaseRules.ts
Normal file
83
apps/builder/src/helpers/databaseRules.ts
Normal file
@@ -0,0 +1,83 @@
|
||||
import {
|
||||
CollaborationType,
|
||||
Plan,
|
||||
Prisma,
|
||||
User,
|
||||
WorkspaceRole,
|
||||
} from '@typebot.io/prisma'
|
||||
import prisma from '@/lib/prisma'
|
||||
import { NextApiResponse } from 'next'
|
||||
import { env, isNotEmpty } from '@typebot.io/lib'
|
||||
import { forbidden } from '@typebot.io/lib/api'
|
||||
|
||||
export const canWriteTypebots = (
|
||||
typebotIds: string[] | string,
|
||||
user: Pick<User, 'email' | 'id'>
|
||||
): Prisma.TypebotWhereInput =>
|
||||
isNotEmpty(env('E2E_TEST'))
|
||||
? { id: typeof typebotIds === 'string' ? typebotIds : { in: typebotIds } }
|
||||
: {
|
||||
id: typeof typebotIds === 'string' ? typebotIds : { in: typebotIds },
|
||||
OR: [
|
||||
{
|
||||
workspace: {
|
||||
members: {
|
||||
some: { userId: user.id, role: { not: WorkspaceRole.GUEST } },
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
collaborators: {
|
||||
some: { userId: user.id, type: { not: CollaborationType.READ } },
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
export const canReadTypebots = (
|
||||
typebotIds: string | string[],
|
||||
user: Pick<User, 'email' | 'id'>
|
||||
) => ({
|
||||
id: typeof typebotIds === 'string' ? typebotIds : { in: typebotIds },
|
||||
workspace:
|
||||
user.email === process.env.ADMIN_EMAIL || isNotEmpty(env('E2E_TEST'))
|
||||
? undefined
|
||||
: {
|
||||
members: {
|
||||
some: { userId: user.id },
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
export const canEditGuests = (user: User, typebotId: string) => ({
|
||||
id: typebotId,
|
||||
workspace: {
|
||||
members: {
|
||||
some: { userId: user.id, role: { not: WorkspaceRole.GUEST } },
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
export const canPublishFileInput = async ({
|
||||
userId,
|
||||
workspaceId,
|
||||
res,
|
||||
}: {
|
||||
userId: string
|
||||
workspaceId: string
|
||||
res: NextApiResponse
|
||||
}) => {
|
||||
const workspace = await prisma.workspace.findFirst({
|
||||
where: { id: workspaceId, members: { some: { userId } } },
|
||||
select: { plan: true },
|
||||
})
|
||||
if (!workspace) {
|
||||
forbidden(res, 'workspace not found')
|
||||
return false
|
||||
}
|
||||
if (workspace?.plan === Plan.FREE) {
|
||||
forbidden(res, 'You need to upgrade your plan to use file input blocks')
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
Reference in New Issue
Block a user