使用MEAN.JS用户授权

时间:2015-08-03 15:58:02

标签: javascript node.js passport.js mean-stack meanjs

我已经开始使用MEAN.js完整堆栈解决方案来学习如何创建Web应用程序。

我已经使用发电机创建了几个CRUD模型,它已经生成了所有的快速路线......

它还创建了一个用户模型作为模板,其中包含一些角色以及一些经过身份验证和授权的中间件。

我想略微调整中间件,但我不知道最好的方法。

对于我的一个模型(称为主题公园),我想确保用户不仅已登录,而且还具有基于其角色的授权来执行后期操作。

以下代码是我目前从发电机获得的代码,您可以看到' / themeparks /:themeparkId' route有themeparks.hasAuthorization中间件函数调用。然而,这并不适用于' / themeparks'路由也不是users.hasAuthorization中间件功能。

所以我想知道将用户授权添加到' / themeparks'的post方法的最佳方法是什么?路线?也许一些资源有教程或覆盖MEAN.js堆栈中的用户模型?

//路线

'use strict';

module.exports = function(app) {
var users = require('../../app/controllers/users.server.controller');
var themeparks = require('../../app/controllers/themeparks.server.controller');

// Themeparks Routes
app.route('/themeparks')
    .get(themeparks.list)
    .post(users.requiresLogin, themeparks.create); //<----How do I add authorization based on a role here??

app.route('/themeparks/:themeparkId')
    .get(themeparks.read)
    .put(users.requiresLogin, themeparks.hasAuthorization, themeparks.update)
    .delete(users.requiresLogin, themeparks.hasAuthorization, themeparks.delete);

// Finish by binding the Themepark middleware
app.param('themeparkId', themeparks.themeparkByID);
};

//用户中间件

/**
 * Require login routing middleware
 */
exports.requiresLogin = function(req, res, next) {
    if (!req.isAuthenticated()) {
        return res.status(401).send({
            message: 'User is not logged in'
        });
    }

    next();
};

/**
 * User authorizations routing middleware
 */
exports.hasAuthorization = function(roles) {
    var _this = this;

    return function(req, res, next) {
        _this.requiresLogin(req, res, function() {
            if (_.intersection(req.user.roles, roles).length) {
                return next();
            } else {
                return res.status(403).send({
                    message: 'User is not authorized'
                });
            }
        });
    };
};

// Themeparks中间件

/**
 * Themepark middleware
 */
exports.themeparkByID = function(req, res, next, id) { //TODO: This is probably what is pulling the user in through the middleware.
    Themepark.findById(id).populate('user', 'displayName').exec(function(err, themepark) {
        if (err) return next(err);
        if (! themepark) return next(new Error('Failed to load Themepark ' + id));
        req.themepark = themepark ;
        next();
    });
};

/**
 * Themepark authorization middleware
 */
exports.hasAuthorization = function(req, res, next) {
    if (req.themepark.user.id !== req.user.id) {
        return res.status(403).send('User is not authorized');
    }
    next();
};

1 个答案:

答案 0 :(得分:1)

您以相同的方式添加中间件:

app.route('/themeparks')
.get(themeparks.list)
.post(users.requiresLogin, themeparks.userRoleHasAuthorization, themeparks.create);

在themeparks模块中,您可以添加此功能,就像hasAuthorization功能一样,还包括检查用户是否在角色中。您已从请求中获得用户标识。使用它来查询用户可以从数据库访问的角色。

(理想情况下,如果角色在数据库中,我会在检索用户对象本身时检索它,以便前端也可以在需要时使用角色信息,而您不必在授权模块。)

基于用户ID,角色信息确定用户是否处于允许更新此模块的角色。否则返回401 Not Authorized。下面是如何构建代码。 canUpdate函数需要根据您希望存储角色的方式以及有权访问角色的模块的信息来实现。

exports.userRoleHasAuthorization = function(req, res, next) {
if (req.themepark.user.id !== req.user.id || !canUpdate(req.user.id, 'themeparks') {
    return res.status(403).send('User is not authorized');
}
next();
};