Skip to content
forked from seeden/rbac

Hierarchical Role Based Access Control for NodeJS

Notifications You must be signed in to change notification settings

blueflagbj/rbac

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RBAC

(Hierarchical Role Based Access Control)

Quality Dependencies Gitter chat Gittip

RBAC is the authorization library for NodeJS.

Motivation

I needed hierarchical role based access control for my projects based on ExpressJS. I had one requirement. This structure must be permanently stored in various storages. For example in memory or Mongoose. Because there is a lot of options for storing of data and many of them are asynchronous. I created asynchronous API. Please, if you found any bug or you need custom API, create an issue or pull request.

Documentation

Link to Documentation

Install

npm install rbac

Usage

var RBAC = require('rbac');
var rbac = new RBAC({
    roles        : ['superadmin', 'admin', 'user', 'guest'],
    permissions  : {
        user     : ['create', 'delete'],
        password : ['change', 'forgot'],
        article  : ['create'],
        rbac     : ['update']
    },
    grants: {
        guest: ['create_user', 'forgot_password'],
        user: ['change_password'],
        admin: ['user', 'delete_user', 'update_rbac'],
        superadmin: ['admin']
    }
}, function(err, rbac) {
    if(err) {
        throw err;
    }
}); 

Usage with express

var express = require('express');
var RBAC = require('rbac');
var secure = require('rbac/controllers/express');

//your custom controller for express
function adminController(req, res, next) {
    res.send('Hello admin');
}

var app = express();
var rbac = new RBAC({
    roles: ['admin', 'user']  
}, function(err, rbac) {
    if(err) throw err;

    //setup express routes
    app.use('/admin', secure.hasRole(rbac, 'admin'), adminController);
});

Check permissions

rbac.can('admin', 'create', 'article', function(err, can) {
    if(err) {
        throw err; //process error
    }
        
    if(can) {
        console.log('Admin is able create article');    
    }
});

//or you can use instance of admin role

rbac.getRole('admin', function(err, admin) {
    if(err) {
        throw err; //process error
    }

    if(!admin) {
        return console.log('Role does not exists');
    }

    admin.can('create', 'article', function(err, can) {
        if(err) throw err; //process error
        
        if(can) {
            console.log('Admin is able create article');    
        }
    }); 
});

Mongoose user model

Please take a look on plugin mongoose-hrbac

Build documentation

npm run doc

Running Tests

npm run test        

Build

npm run build     

Credits

License

The MIT License (MIT)

Copyright (c) 2015 Zlatko Fedor zlatkofedor@cherrysro.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Hierarchical Role Based Access Control for NodeJS

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%