koa-roles
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/koa-roles package

2.0.0 • Public • Published

koa-roles

NPM version build status Test coverage Gittip David deps npm download

koa version of connect-roles

Install

$ npm install koa-roles

Usage

const Roles = require('koa-roles');
const koa = require('koa');
const app = new koa();
 
const user = new Roles({
  async failureHandler(ctx, action) {
    // optional function to customise code that runs when
    // user fails authorisation
    ctx.status = 403;
    var t = ctx.accepts('json', 'html');
    if (=== 'json') {
      ctx.body = {
        message: 'Access Denied - You don\'t have permission to: ' + action
      };
    } else if (=== 'html') {
      ctx.render('access-denied', {action: action});
    } else {
      ctx.body = 'Access Denied - You don\'t have permission to: ' + action;
    }
  }
});
 
app.use(user.middleware());
 
// anonymous users can only access the home page
// returning false stops any more rules from being
// considered
user.use(async (ctx, action) => {
  return ctx.user || action === 'access home page';
});
 
// moderator users can access private page, but
// they might not be the only ones so we don't return
// false if the user isn't a moderator
user.use('access private page', ctx => {
  if (ctx.user.role === 'moderator') {
    return true;
  }
})
 
//admin users can access all pages
user.use((ctx, action) => {
  if (ctx.user.role === 'admin') {
    return true;
  }
});
 
app.get('/', user.can('access home page'), async ctx => {
  await ctx.render('private');
});
app.get('/private', user.can('access private page'), async ctx => {
  await ctx.render('private');
});
app.get('/admin', user.can('access admin page'), async ctx => {
  await ctx.render('admin');
});
 
app.listen(3000);

License

MIT

Package Sidebar

Install

npm i koa-roles

Weekly Downloads

346

Version

2.0.0

License

MIT

Last publish

Collaborators

  • dead-horse
  • fengmk2
  • popomore