Created
July 9, 2018 19:01
-
-
Save kesarawimal/ec9ce253d3b813bb8909ab6732e6c17a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User.findOne({ | |
name: req.body.name | |
}, function(err, user) { | |
if (err) throw err; | |
if (!user) { | |
res.json({ success: false, message: 'Authentication failed. User not found.' }); | |
} else if (user) { | |
// check if password matches | |
if (user.password != req.body.password) { | |
res.json({ success: false, message: 'Authentication failed. Wrong password.' }); | |
} else { | |
// if user is found and password is right | |
// create a token with only our given payload | |
// we don't want to pass in the entire user since that has the password | |
const payload = { | |
admin: user.admin | |
}; | |
var token = jwt.sign(payload, app.get('superSecret'), { | |
expiresInMinutes: 1440 // expires in 24 hours | |
}); | |
// return the information including token as JSON | |
res.json({ | |
success: true, | |
message: 'Enjoy your token!', | |
token: token | |
}); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment