0.0.5 • Published 3 years ago

@openteamsinc/scoped-rbac v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Node.js CI

js_scoped_rbac

A rich and flexible library for role-based access control within distinct access control scopes supporting Typescript and Javascript

Motivation

  • Support multiple security contexts within an application, rather than having the application serve as the single security context.
  • Support a model of security context that can be enforced at the query level within the database. For example - list all resources within the contexts the user is authorized to list resources.
  • Support assignment of roles within a security context.
  • Support an extensible mechanism for conditional policy expressions for permissions.
  • Support a JSON representation of the total permissions granted to a user for all security contexts that can be shared with browser and other clients to enable permissions-informed disclosure UI and UX

Support multiple security contexts within an application

Most RBAC systems provide a simple permission model to answer permissions. For example, is the user authorized to POST a comment. In an application that supports multiple security contexts the relevant context is an additional parameter required to determine if the user is authorized; that is is the user authorized to POST a comment to this project vs another project. A user may be authorized to POST a comment to one project, but not another.

Support an extensible mechanism for conditional policy expressions

Another limitation of most RBAC systems is the simplicity of their permissions - you are either authorized to perform an action or not. Supporting an extensible mechanism for conditional policy expression means that a permission may be conditionally granted dependant upon a variety of factors. For example, you may be granted the permission to comment within a project only when a target resource within the scope of that project is "open for community comments" vs "open for drafter comments".

Support JSON representation of total permissions granted

If a user has permission to perform an action, such as update a resource, it should be possible for a client to determine that this is the case and be able to decide whether to disclose editing capability for the resource to the user. That is, if I'm not authorized to edit a resource the UI shouldn't offer me the opportunity to edit the resource.

Providing a JSON representation of the user's total permissions, and a Javascript implementation of the permissions policy engine, can provide a much richer user experience.