This package has been deprecated

Author message:

Superseded by @yikesable/fastify-acl

@voxpelli/fastify-acl-auth
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-0 • Public • Published

@voxpelli/fastify-acl-auth

Temporary(?) fork of fastify-acl-auth

ACL-like authorization for fastify apps.

With fastify-acl-auth you can secure routes with roles, like admin, superuser, or user:write. Then you just tell the plugin how to determine which roles a user has, and you're set. You can also:

  • Specify any/all functionality (allow if user has any of these roles, allow if users has all of these roles, for example)
  • Specify a hierarchy of roles ("admins" are clearly "users" too, so let them through without explicitly letting "admins" through, for example)
  • Easily use fastify-acl-auth as an authentication strategy with fastify-auth, or anything else really

Usage

NOTE: If you're not familiar with scoping in fastify this plugin isn't going to make much sense to you. I'd highly recommend making sure that you're solid with this concept before proceeding.

ANOTHER NOTE: fastify-acl-auth needs to have a way to know what roles a user has, right? By default it assumes that you have a session provider available at request.session (and that roles are available at request.session.credentials.roles, which you can easily change). In many examples I simulate this with a request decorator (fastify.decorateRequest('session', { ... })), I recommend fastify-server-session in practice.

You can use fastify-acl-auth in a few ways, ways that depend on how you want to structure your application and leverage fastify's scoping.

Simple Example

'use strict'

const fastify = require('fastify')()

const aclFactory = require('@voxpelli/fastify-acl-auth')

const credentials = {
  id: 'bc965eb1-a8a4-4320-9172-726e9a7e83c9',
  username: 'cread',
  roles: 'vendor'
}

fastify.decorateRequest('session', {credentials})

fastify.register(function (fastifyScope, opts, next) {
  fastifyScope.register(
    aclFactory(
      {
        allowedRoles: ['customer']
      }
    )
  )
  // 403
  fastifyScope.get('/customers', function (request, reply) {
    return reply.send('/customers')
  })
  next()
})

fastify.register(function (fastifyScope, opts, next) {
  fastifyScope.register(
    aclFactory(
      {
        allowedRoles: ['vendor']
      }
    )
  )
  // 200
  fastifyScope.get('/vendors', function (request, reply) {
    return reply.send('/vendors')
  })
  next()
})

fastify.listen(8080, function (err) {
  if (err) throw err
  console.log('listening on %s', fastify.server.address().port)
})

Using a Hierarchy

'use strict'

const fastify = require('fastify')()

const aclFactory = require('@voxpelli/fastify-acl-auth')

const hierarchyAcl = aclFactory({hierarchy: ['user', 'admin', 'superuser']})

const credentials = {
  id: 'bc965eb1-a8a4-4320-9172-726e9a7e83c9',
  username: 'cread',
  roles: 'admin'
}

fastify.decorateRequest('session', {credentials})

fastify.register(function (fastifyScope, opts, next) {
  fastifyScope.register(
    hierarchyAcl,
    {
      allowedRoles: ['user']
    }
  )
  // 200, because 'admin' > 'user' in hierarchy
  fastifyScope.get('/user', function (request, reply) {
    return reply.send('/user')
  })
  next()
})

fastify.register(function (fastifyScope, opts, next) {
  fastifyScope.register(
    hierarchyAcl,
    {
      allowedRoles: ['admin']
    }
  )
  // 200
  fastifyScope.get('/admin', function (request, reply) {
    return reply.send('/admin')
  })
  next()
})

fastify.register(function (fastifyScope, opts, next) {
  fastifyScope.register(
    hierarchyAcl,
    {
      allowedRoles: ['superuser']
    }
  )
  // 403
  fastifyScope.get('/superuser', function (request, reply) {
    return reply.send('/superuser')
  })
  next()
})

fastify.listen(8080, function (err) {
  if (err) throw err
  console.log('listening on %s', fastify.server.address().port)
})

API

fastify-acl-auth exports a factory function; a function that makes the plugin that you'll use.

const aclFactory = require('@voxpelli/fastify-acl-auth')

options

options is a simple object with the following properties:

Property Default Type Notes
actualRoles request.session.credentials.roles Array, string, [async] function Since fastify-acl-auth is all about comparing what roles a user actually has to what a route allows then this property is pretty important. This property can be an Array of roles (strings), a role itself (string), or an [async] function that returns an Array of roles (strings).
allowedRoles [] Array, string, [async] function ^ that whole thing. Except this property tells fastify-acl-auth which roles are allowed for a route or routes. (scoping!!!)
any true boolean If true a 200 will be returned if actualRoles contains any of the roles in allowedRoles, 403 otherwise.
all false boolean If true a 200 will be returned iff actualRoles contains ALL of the roles in allowedRoles, 403 otherwise.
hierarchy undefined Array An Array that specifies the privilege hierarchy of roles in order of ascending privilege. For instance, suppose we have hierarchy: ['user', 'admin', 'superuser], allowedRoles : ['admin'], and actualRoles: ['superuser] configured for a route. A user with the superuser role will be able to access that route because the superuser role is of higher privilege than the user and admin roles, as specified in the hierarchy.
pathExempt undefined Array An Array that specifies the path patterns that should be exempt from enforcement; ['/login', '/callback**'] for example. Uses the NPM module url-pattern internally for URL pattern matching.

aclFactory([options])

This will create an instance of fastify-acl-auth. It can be used with fastify.register() just like any other plugin.

fastify.register(aclFactory([options]), [options])

Nope, that's not a typo, options is there twice; aclFactory([options]) is setting the options of your plugin instance, whereas passing options during registration is setting, or overriding, the plugin instance options for that registration of the plugin instance. So you can create an instance of fastify-acl-auth and "carry it around with you" for later use. Passing options when you register the plugin will override the options set when creating the plugin instance with the factory function.

Lots of words, right? This architecture really comes from the architecture (really talking about scoping here) of fastify itself, and should make sense with a basic knowledge of scoping. It's actually very logical when it sinks in.

Package Sidebar

Install

npm i @voxpelli/fastify-acl-auth

Weekly Downloads

4

Version

2.0.0-0

License

MIT

Unpacked Size

20.3 kB

Total Files

17

Last publish

Collaborators

  • voxpelli