Skip to content

Instantly share code, notes, and snippets.

@kesarawimal
Created July 9, 2018 19:01
Show Gist options
  • Save kesarawimal/ec9ce253d3b813bb8909ab6732e6c17a to your computer and use it in GitHub Desktop.
Save kesarawimal/ec9ce253d3b813bb8909ab6732e6c17a to your computer and use it in GitHub Desktop.
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