如何将jwt身份验证与ACL

时间:2016-03-05 19:50:17

标签: javascript node.js express passport.js acl

我已经能够使用JWT策略实施护照,而且效果很好。我受jwt保护的路线看起来像这样......

app.get('/thingThatRequiresLogin/:id', passport.authenticate('jwt', { session: false }), thingThatRequiresLogin.findById);

现在我需要将某些内容的访问限制为仅属于某个角色的登录用户。我希望我能这样表达:

app.get('/thingThatRequiresLogin/:id', MAGIC, thingThatRequiresLogin.findById);

MAGIC = require logged-in users, but only those with role x or y

node_acl似乎是一个很好的解决方案,我对此有所了解,但后来我在文档中找到了这个......

  

我们可以保护这样的资源:

app.put('/blogs/:id', acl.middleware(), function(req, res, next){…}
  

中间件将保护req.url命名的资源,选择   来自req.session.userId的用户并检查req.method的权限,   所以上面的内容相当于:

如何将其与我的jwt策略混合使用?我唯一的想法是放弃node_acl middleware,而是将acl检查代码添加到我的jwt策略中。但那是我遇到麻烦的地方。我的jwt函数看起来像这样:

passport.use(new JwtStrategy(jwtOptions, function(jwt_payload, done) {
    User.findOne({id: jwt_payload.sub}, function(err, user) {
        if (err) {
            return done(err, false);
        }
        if (user) {
            done(null, user);
        } else {
            done(null, false);
            // or you could create a new account
        }
    });
}));

根据node_acl,我可以问这样的事情......

acl.isAllowed('jsmith', 'blogs', ['edit','view','delete'])

我可以(我应该吗?)改变我的JwtStrategy来说出类似......

的内容
    if (user && acl.isAllowed(user.username, 'blogs', ['edit','view','delete']) {
        // ...

如果是,该函数将如何知道资源名称'blogs'和权限['edit' etc]?这些在路由定义时已知,但我认为我需要在策略功能中使用它们。我错了吗?有人能告诉我正确的方法吗?

1 个答案:

答案 0 :(得分:6)

app.get('/thingThatRequiresLogin/:id', 
  [
     passport.authenticate('jwt', { session: false }), 
     acl.middleware( 1, getUserId )
  ], 
  thingThatRequiresLogin.findById);

从这个要点中找到线索:https://gist.github.com/danwit/e0a7c5ad57c9ce5659d2 以及npm上的node_acl doc:https://www.npmjs.com/package/acl#middleware acl.middleware有三个可选参数:acl.middleware(numPathComponents,userId,permissions)

numPathComponents:1 //选择thingThatRequiresLogin路径

userId:getUserId // getUserId是一个返回userId的函数

我希望这会有所帮助