policy-control
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

policy-control CI codecov

policy-control helps you decide if a user is authorized to act on a resource. No assumptions are made about your data or how you make authorization decisions. With policy-control policies, you are in full control of how your application makes authroizations decisions. Policies allow you to choose what action, resource, data, and rules you need to make a decision and the rest is taken care of.

Getting started

$ yarn add policy-control

Core concepts

User

A user making the request.

Resource

A resource the user is acting on.

Action

The action the user is taking on the resource.

Policies

A policy can be defined for specific resources and actions and when evaluated will process rules to determine whether an action is allowed.

Rules

A rule can load data and evaluates to a boolean response.

Loaders

A loader will load data into the decision context which can be used to help evaluate rules.

Context

Context refers to the data store for our loaders to use. Context can also be primed and cleared as needed.

Decider

A decider can evaluate and reduce a set of policies to an authorization decision.

Authorization Decision

An authorization decision returns a permission response (Allow, Deny, Indeterminate).

Decision Flow

Each authorization decision follows the same flow and can be demonstrated by a simple authorized GET request:

  1. Alice does GET on /post/123.
  2. API receives call and authenticates Alice.
  3. API asks policy control for a decision, Is Alice authorized to read post 123?
  4. Policy Control finds and applies any policies for reading posts.
  5. Each policy loads necessary attributes, evaluates rules, and returns a decision.
  6. Policy decisions are reduced to a final authorization decision (e.g. Allow, Deny, Indeterminate)
  7. If decision is Allow the request is continued, otherwise an authorization error (401) is thrown.

Examples (WIP)

Below are several examples intended to help you see how policy-control can be used in your project:

Core features (WIP)

  • Flexible policies
  • Simple API - no "extras"
  • Effecient data fetching
  • Very lightweight
  • Extensible
  • TypeScript support
  • User/Resource/Action policies
  • Async data loading built-in

Readme

Keywords

none

Package Sidebar

Install

npm i policy-control

Weekly Downloads

82

Version

0.0.9

License

MIT

Unpacked Size

80.6 kB

Total Files

80

Last publish

Collaborators

  • cdriscol