This package has been deprecated

Author message:

CASL is split into few packages. Check CASL repository for more info

casl

1.1.0 • Public • Published

CASL

CASL NPM version CASL Build Status CASL  codecov CASL Code Climate CASL Documentation CASL Join the chat at https://gitter.im/stalniy-casl/casl

CASL (pronounced /ˈkæsəl/, like castle) is an isomorphic authorization JavaScript library which restricts what resources a given user is allowed to access. All permissions are defined in a single location (the Ability class) and not duplicated across controllers, views, and database queries.

Heavily inspired by cancan.

Installation

npm install casl --save

Features

  • supports MongoDB like conditions ($eq, $ne, $in, $all, $gt, $lt, $gte, $lte, $exists, $regex, field dot notation)
  • can construct MongoDB query based on defined abilities
  • supports direct and inverted rules
  • provides mongoose plugin
  • can be easily integrated with any data storage
  • provides ES6 build, so you are able to shake out unused functionality

Getting started

CASL allows you to use any data layer (e.g., mongoose, raw mongodb adapter, sequelize), any HTTP framework (e.g., koa, express, feathersjs) and even any frontend framework (e.g., Vuejs, Angular, React, Ionic) because of its isomorphic nature. Also, it doesn't force you to choose a database (however currently is the best integrated with MongoDB).

Check sidebar in documentation for integration examples.

CASL concentrates all attention at what a user can actually do and allows to create abilities in DSL style. Lets see how

1. Define Abilities

Lets define Ability for a blog website where visitors:

  • can read everything.
  • can manage (i.e., create, update, delete, read) posts which were created by them
  • cannot delete post if it has at least 1 comment
import { AbilityBuilder } from 'casl'
 
const ability = AbilityBuilder.define((can, cannot) => {
  can('read', 'all')
  can('manage', 'Post', { author: loggedInUser.id })
  cannot('delete', 'Post', { 'comments.0': { $exists: true } })
})

Yes, you can use some operators from MongoDB query language to define conditions for your abilities. See Defining Abilities for details.

2. Check Abilities

Later on you can check abilities using can and cannot.

// true if ability allows to read at least one Post
ability.can('read', 'Post')
 
// true if ability does not allow to read a post
const post = new Post({ title: 'What is CASL?' })
ability.cannot('read', post)

Also there is a conveninse method throwUnlessCan which throws ForbiddenError exception in case if action is not allowed on target object:

import { ForbiddenError } from 'casl'
 
try {
  ability.throwUnlessCan('delete', post)
} catch (error) {
  console.log(error instanceof Error) // true
  console.log(error instanceof ForbiddenError) // true
}

See Check Abilities for details.

3. MongoDB integration

CASL provides easy integration with MongoDB database.

const { toMongoQuery, AbilityBuilder } = require('casl')
const { MongoClient } = require('mongodb')
 
const ability = AbilityBuilder.define(can => {
  can('read', 'Post', { author: 'me' })
})
 
MongoClient.connect('mongodb://localhost:27017/blog', function(err, db) {
  const query = toMongoQuery(ability.rulesFor('read', 'Post')) // { $or: [{ author: 'me' }] }
  db.collection('posts').find(query) // find all Posts where author equals 'me'
  db.close();
})

And if you use mongoose, you are lucky because CASL provides mongoose middleware which hides all boilerplate under convenient accessibleBy method.

const { mongoosePlugin, AbilityBuilder } = require('casl')
const mongoose = require('mongoose')
 
mongoose.plugin(mongoosePlugin)
 
const ability = AbilityBuilder.define(can => {
  can('read', 'Post', { author: 'me' })
})
 
const Post = mongoose.model('Post', mongoose.Schema({
  title: String,
  author: String,
  content: String,
  createdAt: Date
}))
 
// by default it asks for `read` rules
// returns mongoose Query, so you can chain it with other conditions
Post.accessibleBy(ability).where({ createdAt: { $gt: Date.now() - 24 * 3600 } })
 
// also you can call it on existing query to enforce visibility.
// In this case it returns empty array because rules does not allow to read Posts of `someoneelse` author
Post.find({ author: 'someoneelse' }).accessibleBy(ability).exec()

See Database integration for details.

4. UI integration

CASL is written in pure ES6 and has no dependencies on Node.js or other environments. That means you can use it on UI side. It may be useful if you need to show/hide some UI functionality based on what user can do in application.

import { Ability } from 'casl'
 
export class Session {
  constructor() {
    this.ability = new Ability()
  }
 
  find() {
    return fetch('https://domain.com/session')
      .then(session => this.ability.update(session.rules))
  }
 
  destroy() {
    return fetch('https://domain.com/session', { method: 'DELETE' })
      .then(() => this.ability.update([]))
  }
}

Read CASL in Aurelia app or Vue ACL with CASL for details.

Documentation

A lot of useful information about CASL can be found in documentation (check sidebar on the right hand ;)!

Want to help?

Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on guidelines for contributing

License

MIT License

Package Sidebar

Install

npm i casl

Weekly Downloads

2,394

Version

1.1.0

License

MIT

Last publish

Collaborators

  • stalniy