javascript - Sails.js + Passport.js : passport. 初始化()中间件未使用

标签 javascript node.js sails.js passport.js

我正在使用 Sails.js 并尝试将 Passport.js 与 REST API 结合使用。 但是当我尝试在 Controller 中调用登录函数时,我遇到以下错误:

    /Users/Michael/Development/DictationProject/sails/20151010/dictee/node_modules/passport/lib/http/request.js:44
    if (!this._passport) { throw new Error('passport.initialize() middleware not in use'); }
                           ^
Error: passport.initialize() middleware not in use
    at IncomingMessage.req.login.req.logIn (/Users/Michael/Development/DictationProject/sails/20151010/dictee/node_modules/passport/lib/http/request.js:44:34)
    at /Users/Michael/Development/DictationProject/sails/20151010/dictee/api/controllers/AuthController.js:20:17
    at Strategy.strategy.success (/Users/Michael/Development/DictationProject/sails/20151010/dictee/node_modules/passport/lib/middleware/authenticate.js:194:18)
    at verified (/Users/Michael/Development/DictationProject/sails/20151010/dictee/node_modules/passport-local/lib/strategy.js:83:10)
    at /Users/Michael/Development/DictationProject/sails/20151010/dictee/config/passport.js:53:18

我的config/http.js文件配置如下( session 在passportInit和passportSession之前加载):

passportInit    : require('passport').initialize(),
passportSession : require('passport').session(),
flash           : require('connect-flash'),


      order: [
        'startRequestTimer',
        'cookieParser',
        'session',
        'passportInit',     
        'passportSession', 
        'myRequestLogger',
        'bodyParser',
        'handleBodyParserError',
        'compress',
        'methodOverride',
        'poweredBy',
        '$custom',
        'flash',
        'router',
        'www',
        'favicon',
        '404',
        '500'
      ],

不明白哪里出了问题...

编辑:

它似乎来自config/passport.js中的passport.use():

passport.use('login', new LocalStrategy({
    passReqToCallback : true,
    usernameField: 'email',
    passwordField: 'password'
  },
  function(req, email, password, done) {
    console.log('In passport.use login');
    // check in mongo if a user with email exists or not
    User.findOne({ 'email' : email }, function (err, user) {
    // In case of any error, return using the done method
      if (err) { 
        console.log('Error passport.use login');
        return done(err);
      }
      // Username does not exist, log error & redirect back
      if (!user) {
        console.log('User Not Found with email '+email);
        return done(null, false, req.flash('message', 'User Not found.'));
      }

      console.log('One user matching this email address found');

      // User exists but wrong password, log the error 
      bcrypt.compare(password, user.password, function (err, res) {
          if (!res) {
            console.log('Invalid Password');
            return done(null, false, req.flash('message', 'Invalid Password'));
          }

        // User and password both match, return user from 
        // done method which will be treated like success
        console.log('One user matching this email address and password found');

          var returnUser = {
            name: user.name,
            email: user.email,
            createdAt: user.createdAt,
            id: user.id
          };

          console.log('Returning User: ' + returnUser);
          return done(null, returnUser,
            req.flash('message', 'Logged In Successfully')
          );
        });
    });
  }
));

最佳答案

遵循 Sails.js 创建者对 Passport 的建议:https://github.com/balderdashy/sails/pull/1224

通过将 Passport 中间件放入 config/policies.js 文件中可以解决问题:

var passport = require('passport');

module.exports.policies = {
    '*': [
        // Initialize Passport
        passport.initialize(),

        // Use Passport's built-in sessions
        passport.session()
    ]
}

关于javascript - Sails.js + Passport.js : passport. 初始化()中间件未使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33106986/

相关文章:

javascript - 在 Javascript 中,如何使用 '/' 和 '/g' 内的变量对字符串执行全局替换?

node.js - 托管在 AWS linux 上的 NodeJs 网站无法访问

javascript - 使用 yargs 和 gulp-if 分离/组合 gulp 任务源

mysql - Sails.js 无法从其他模型的生命周期在另一个模型中创建数据

mysql - 如何使用一个 REST URL 从两个表获取数据?

javascript - Alasql:数据大小有最大限制吗?

javascript - DefinitelyTyped for JQuery 插件

javascript - 根据类名,具有不同纬度的多个 map

javascript - 在不影响可读性的情况下同时从 'lodash' 、 'rxjs' 、 'ramda' 导入 { map }

mysql - 如何结束 mysql 连接而不让它卡在 NodeJS 中?