All Projects → node-casbin → express-authz

node-casbin / express-authz

Licence: Apache-2.0 license
express-authz is an authorization middleware for Express.js based on Casbin

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to express-authz

sequelize-adapter
Sequelize adapter for Casbin
Stars: ✭ 51 (-15%)
Mutual labels:  authorization, casbin, node-casbin
Laravel Authz
An authorization library that supports access control models like ACL, RBAC, ABAC in Laravel.
Stars: ✭ 136 (+126.67%)
Mutual labels:  authorization, casbin
Node Casbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Node.js and Browser
Stars: ✭ 1,757 (+2828.33%)
Mutual labels:  authorization, casbin
Etcd Watcher
Etcd watcher for Casbin
Stars: ✭ 157 (+161.67%)
Mutual labels:  authorization, casbin
Casbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Golang
Stars: ✭ 10,872 (+18020%)
Mutual labels:  authorization, casbin
Jcasbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Java
Stars: ✭ 1,335 (+2125%)
Mutual labels:  authorization, casbin
Think Authz
An authorization library that supports access control models like ACL, RBAC, ABAC in ThinkPHP 6.0 .
Stars: ✭ 155 (+158.33%)
Mutual labels:  authorization, casbin
Openstack Policy Editor
A Casbin Policy Editor for OpenStack
Stars: ✭ 28 (-53.33%)
Mutual labels:  authorization, casbin
Casbin Server
Casbin as a Service (CaaS)
Stars: ✭ 171 (+185%)
Mutual labels:  authorization, casbin
Protobuf Adapter
Google Protocol Buffers adapter for Casbin
Stars: ✭ 185 (+208.33%)
Mutual labels:  authorization, casbin
Mongodb Adapter
MongoDB adapter for Casbin
Stars: ✭ 194 (+223.33%)
Mutual labels:  authorization, casbin
Chi Authz
chi-authz is an authorization middleware for Chi
Stars: ✭ 248 (+313.33%)
Mutual labels:  authorization, casbin
Egg Authz
egg-authz is an authorization middleware for Egg.js based on Casbin
Stars: ✭ 50 (-16.67%)
Mutual labels:  authorization, casbin
Casbin Cpp
An authorization library that supports access control models like ACL, RBAC, ABAC in C/C++
Stars: ✭ 113 (+88.33%)
Mutual labels:  authorization, casbin
Casbin Editor
Web-based model & policy editor for Casbin
Stars: ✭ 45 (-25%)
Mutual labels:  authorization, casbin
Negroni Authz
negroni-authz is an authorization middleware for Negroni
Stars: ✭ 152 (+153.33%)
Mutual labels:  authorization, casbin
Beego Authz
Beego's RBAC & ABAC Authorization middleware based on Casbin
Stars: ✭ 208 (+246.67%)
Mutual labels:  authorization, casbin
Casbin.net
An authorization library that supports access control models like ACL, RBAC, ABAC in .NET (C#)
Stars: ✭ 535 (+791.67%)
Mutual labels:  authorization, casbin
Pycasbin
An authorization library that supports access control models like ACL, RBAC, ABAC in Python
Stars: ✭ 625 (+941.67%)
Mutual labels:  authorization, casbin
Redis Adapter
Redis adapter for Casbin
Stars: ✭ 167 (+178.33%)
Mutual labels:  authorization, casbin

Express-Authz

NPM version NPM download codebeat badge GitHub Actions Coverage Status Release Gitter

Express-Authz is an authorization middleware for Express, it's based on Node-Casbin: https://github.com/casbin/node-casbin.

Installation

use casbin v2.x

npm install casbin@2 casbin-express-authz@1 --save

use casbin v3.x

npm install casbin@3 casbin-express-authz@2 --save

or you can simply use,

npm install express casbin casbin-express-authz --save

Usage with Basic HTTP Authentication

By default casbin-authz supports HTTP Basic Authentication of the form Authentication: Basic {Base64Encoded(username:password)}

Usage with Other HTTP Authentication

To use other HTTP Authentication like Bearer/Digest you can use a custom middleware to define the res.locals.username variable and casbin-authz will automatically pick up the value from the variable.

const { newEnforcer } = require('casbin');
const express = require('express');
const { authz } = require('casbin-express-authz');

const app = express();
const enforcer = await newEnforcer('examples/authz_model.conf', 'examples/authz_policy.csv');

// set userinfo
app.use((req, res, next) => {
  res.locals.username = getUsernameFromToken(); // Your custom function for retrieving username
  next();
});

// use authz middleware
app.use(authz({ newEnforcer: enforcer }));

// response
app.use((req, res, next) => {
  res.status(200).json({ status: 'OK' });
});

app.listen(3000);

Usage with customized authorizer

This package provides BasicAuthorizer, it uses HTTP Basic Authentication as the authentication method. If you want to use another authentication method like OAuth, you needs to implement Authorizer as below:

import { Enforcer, newEnforcer } from 'casbin';
import { authz, Authorizer } from 'casbin-express-authz';
import * as express from 'express';

const app = express();

class MyAuthorizer implements Authorizer {
  private e: Enforcer;

  constructor(e: Enforcer) {
    this.e = e;
  }

  checkPermission(): Promise<boolean> {
    // do something
    return true;
  }
}
const e = await newEnforcer('examples/authz_model.conf', 'examples/authz_policy.csv');

app.use(
  authz({
    newEnforcer: e,
    authorizer: new MyAuthorizer(e),
  })
);

app.listen(3000);

Usage with customized authorizer class

When the authorizer needs the request and response object to check the permission, one can pass the constructor of the customized Authorizer class instead of an instance.

import { Enforcer, newEnforcer } from 'casbin';
import { authz, AuthorizerConstructor } from 'casbin-express-authz';
import { Request, Response } from 'express';

const app = express();

class MyAuthorizer implements Authorizer {
  private e: Enforcer;
  private req: Request;
  private res: Respons;

  constructor(req:Request, res:Respons, e: Enforcer) {
    this.e = e;
    this.req = req
    this.res = res
  }

  checkPermission(): Promise<boolean> {
    // do something
    return true;
  }
}
const e = await newEnforcer('examples/authz_model.conf', 'examples/authz_policy.csv');

app.use(
  authz({
    newEnforcer: e,
    authorizer: MyAuthorizer,
  })
);

app.listen(3000);

How to control the access

The authorization determines a request based on {subject, object, action}, which means what subject can perform what action on what object. In this plugin, the meanings are:

  1. subject: the logged-on user name
  2. object: the URL path for the web resource like "dataset1/item1"
  3. action: HTTP method like GET, POST, PUT, DELETE, or the high-level actions you defined like "read-file", "write-blog"

For how to write authorization policy and other details, please refer to the Casbin's documentation.

Getting Help

License

This project is licensed under the Apache 2.0 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].