You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constcasbin=require('casbin')constKoa=require('koa')constapp=newKoa()constauthz=require('koa-authz')// responseapp.use(async(ctx,next)=>{conststart=newDate()awaitnext()console.log(newDate()-start)})// use authz middlewareapp.use(authz({newEnforcer: async()=>{// load the casbin model and policy from files, database is also supported.constenforcer=awaitcasbin.newEnforcer('authz_model.conf','authz_policy.csv')returnenforcer}}))// reload routesconstrouter=require('koa-router')({prefix: '/user'})router.get('/',(ctx)=>{ctx.body={name: 'Chalin',age: 26}})router.put('/',(ctx)=>{ctx.body={status: 'success'}})app.use(router.routes(),router.allowedMethods())app.listen(3000)
Use a 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 extends BasicAuthorizer as below:
classMyAuthorizerextendsBasicAuthorizer{// override functiongetUserName(){const{ username }=this.ctx.state.userreturnusername}}app.use(authz({newEnforcer: async()=>{// load the casbin model and policy from files, database is also supported.constenforcer=awaitcasbin.newEnforcer('examples/authz_model.conf','examples/authz_policy.csv')returnenforcer},authorizer: (ctx,option)=>newMyAuthorizer(ctx,option)}))
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:
subject: the logged-on user name
object: the URL path for the web resource like "dataset1/item1"
action: HTTP method like GET, POST, PUT, DELETE, or the high-level actions you defined like "read-file", "write-blog"