node.js中的mongodb和身份验证以及护照

时间:2013-03-08 04:38:20

标签: node.js mongodb authentication passport.js

我在mongodb有一个这样的集合

{
   username:silver,
   Email:sil@gmail.com,
   password:silvester,
}

所以要进行身份验证我将从数据库中获取数据,然后我会检查给定的电子邮件是否存在if if statement

app.post("/login",function(req,res){

   var email=req.body['emailid'];

   collection.find({email:sil@gmail.com}).toArray(function(err,res)
   {
      if(res.length==0){
         console.log("name is not exist");
      }else{
         if(res.email==email){
            console.log("email is exist");
         }else{
            console.log("not exist");
         }
      }
   });
});

所以这里如何使用护照模块进行身份验证。我知道它带有配置的示例代码。 我正在使用express3.x框架。所以如何配置它。

1 个答案:

答案 0 :(得分:3)

Here您可以阅读有关本地策略的信息,以及有关配置的here

您当地的策略应如下所示:

passport.use(new LocalStrategy({
        emailField: 'email',
        passwordField: 'passw',
    },

    function (emailField, passwordField, done) {
        process.nextTick(function () {
            db.collection(dbCollection, function (error, collection) {
                if (!error) {
                    collection.findOne({
                        'email': sil@gmail.com
                        'password': silvester // use there some crypto function
                    }, function (err, user) {
                        if (err) {
                            return done(err);
                        }
                        if (!user) {
                            console.log('this email does not exist');
                            return done(null, false);
                        }
                        return done(null, user);
                    });
                } else {
                    console.log(5, 'DB error');
                }
            });
        });
    }));