Here is my Middleware with Passport
passport.use('local-login', new LocalStrategy({
usernameField: 'email',
passwordField: 'password',
passReqToCallback: true
}, function (req, email, password, done) {
User.findOne({ email: email}, function (err, user) {
if (err) return done(err);
if(!user) {
return done(null, false, req.flash('loginMessage', 'No user found!'));
}
if (!user.comparePassword(password)) {
return done(null, false, req.flash('loginMessage', 'Oops! Wrong password.'));
}
return done(null, user);
});
}));
and this is my login POST method
router.post('/login', passport.authenticate('local-login', {
successRedirect: '/profile',
failureRedirect: '/login',
failureFlash: true
}));
After that, I'm trying to redirect to GET Profile page like that:
router.get('/profile', function (req, res, next) {
User.findOne({'user._id': req.user._id}, function (err, user) {
if (err) return next(err);
res.render('accounts/profile', { user : user});
});
});
Signup method woking correctly and send data to Database, but it's also has the error to redirecting to Profile page with the same TypeError !
Finally , here is dependencies in package.json
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.5",
"ejs-mate": "^2.3.0",
"express": "^4.14.0",
"express-flash": "0.0.2",
"express-session": "^1.14.2",
"mongoose": "^4.7.4",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
}
I hope someone helps me, I'm stuck here! I can't move on.
Finally I solved my error by just Downgrade some dependencies in my package.json file dependencies will be like so:
Then everything going correctly, at least in my case :) Thanks All.