Allows to query accessible records using Prisma client based on CASL rules
npm install @casl/prisma


This package allows to define [CASL] permissions on [Prisma] models using Prisma WhereInput. And that brings a lot of power in terms of permission management in SQL world:
1. We can use Prisma Query to define permissions, no need to learn MongoDB query language anymore.
2. Additionally, we can ask our SQL database questions like: "Which records can be read?" or "Which records can be updated?".
``sh`
npm install @casl/prisma @casl/abilityor
yarn add @casl/prisma @casl/abilityor
pnpm add @casl/prisma @casl/ability
This package is a bit different from all others because it provides a custom createPrismaAbility factory function that is configured to check permissions using Prisma WhereInput:
`ts
import { User, Post, Prisma } from '@prisma/client';
import { PureAbility, AbilityBuilder, subject } from '@casl/ability';
import { createPrismaAbility, PrismaQuery, Subjects } from '@casl/prisma';
type AppAbility = PureAbility<[string, Subjects<{
User: User,
Post: Post
}>], PrismaQuery>;
const { can, cannot, build } = new AbilityBuilder
can('read', 'Post', { authorId: 1 });
cannot('read', 'Post', { title: { startsWith: '[WIP]:' } });
const ability = build();
ability.can('read', 'Post');
ability.can('read', subject('Post', { title: '...', authorId: 1 })));
`
> See CASL guide to learn how to define abilities. Everything is the same except of conditions language.
> If you generate Prisma Client with the Prisma 7 prisma-client generator, swap @prisma/client imports for the path of your generated client (for example ./prisma/generated/client).
Because Prisma returns DTO objects without exposing any type information on it, we need to use subject helper to provide that type manually, so CASL can understand what rules to apply to passed in object.
Unfortunately, there is no easy way to automate this, except of adding additional column to all models. For more details, check this issue.
> To get more details about object type detection, please read CASL Subject type detection
@casl/prisma uses ucast to interpret Prisma WhereInput in JavaScript runtime. However, there are few caveats:has
- equality of JSON columns is not implemented
- equality of array/list columns is not implemented (however operators like , hasSome and hasEvery should be more than enough)every
- when defining conditions on relation, always specify one of operators (, none, some, is or isNot)
Interpreter throws a ParsingQueryError in cases it receives invalid parameters for query operators or if some operation is not supported.
Prisma 7 moves connection details into prisma.config.ts and no longer loads .env files automatically. Add a config next to your schema so prisma generate keeps working:
`ts
// prisma.config.ts
import 'dotenv/config';
import { defineConfig } from 'prisma/config';
export default defineConfig({
schema: './schema.prisma',
datasource: {
// fall back to a local URL so generate does not fail in CI
url: process.env.DATABASE_URL ?? 'postgresql://postgres:postgres@localhost:5432/postgres',
},
});
`
If you stay on the legacy prisma-client-js generator, the default @prisma/client import keeps working. With Prisma 7's new prisma-client generator (JS engine), the generated client lives in a custom output folder—see the section below to point CASL at it.
One nice feature of [Prisma] and [CASL] integration is that we can get all records from the database our user has access to. To do this, just use accessibleBy helper function:
`ts
// ability is a PrismaAbility instance created in the example above
const accessiblePosts = await prisma.post.findMany({
where: accessibleBy(ability).Post
});
`
That function accepts Ability instance and action (defaults to read), returns an object with keys that corresponds to Prisma model names and values being aggregated from permission rules WhereInput objects.
Important: in case user doesn't have ability to access any posts, accessibleBy throws ForbiddenError, so be ready to catch it!
To combine this with business logic conditions, just use AND:
`ts`
const accessiblePosts = await prisma.post.findMany({
where: {
AND: [
accessibleBy(ability).Post,
{ / business related conditions / }
]
}
})
The package is written in TypeScript what provides comprehensive IDE hints and compile time validation.
> Makes sure to call prisma generate. @casl/prisma uses Prisma generated types, so if client is not generated nothing will work.
Additionally, there are several helpers that makes it easy to work with Prisma and CASL:
It's a generic type that provides Prisma.ModelWhereInput in generic way. We need to pass inside a named model:
`ts
import { User } from '@prisma/client';
import { Model, PrismaQuery } from '@casl/prisma';
// almost the same as Prisma.UserWhereInput except that it's a higher order type
type UserWhereInput = PrismaQuery
`
Just gives a name to a model. That name is stored using ForcedSubject helper from @casl/ability. To use a separate column or another strategy to name models, don't use this helper because it only works in combination with subject helper.
Creates a union of all possible subjects out of passed in object:
`ts
import { User } from '@prisma/client';
import { Subjects } from '@casl/prisma';
type AppSubjects = Subjects<{
User: User
}>; // 'User' | Model
`
To support rule definition for all, we just need to explicitly do it:
`ts
type AppSubjects = 'all' | Subjects<{
User: User
}>; // 'User' | Model
type AppAbility = PureAbility<[string, AppSubjects], PrismaQuery>;
`
Prisma 7's prisma-client generator writes the client into a custom directory, so @prisma/client no longer re-exports your project types. Point CASL at the generated namespace with a small wrapper:
`prisma`
// schema.prisma
generator client {
provider = "prisma-client"
output = "../src/generated/client"
}
`ts
// prisma.config.ts
import 'dotenv/config';
import { defineConfig } from 'prisma/config';
export default defineConfig({
schema: './schema.prisma',
datasource: { url: process.env.DATABASE_URL! },
});
`
`ts
// src/casl-prisma.ts
import {
accessibleBy,
createPrismaAbilityFor,
Model,
PrismaQueryOf,
Subjects,
WhereInputOf,
} from '@casl/prisma';
import { Prisma } from './generated/client';
export { ParsingQueryError, prismaQuery } from '@casl/prisma';
export const createPrismaAbility = createPrismaAbilityFor
export type PrismaQuery
export type WhereInput
export type AppSubjects = Subjects<{
User: Prisma.User,
Post: Prisma.Post,
}>;
`
If you stay on the legacy prisma-client-js generator for Prisma 6.x compatibility, the default @casl/prisma` entrypoint keeps working.
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on guidelines for [contributing].
If you'd like to help us sustain our community and project, consider to become a financial contributor on Open Collective
> See Support CASL for details
[contributing]: https://github.com/stalniy/casl/blob/master/CONTRIBUTING.md
[Prisma]: https://prisma.io/
[CASL]: https://github.com/stalniy/casl