Created
May 27, 2014 13:35
-
-
Save mikehostetler/19cc578b2f4ba2b9efa4 to your computer and use it in GitHub Desktop.
Res.json example
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
callback: function (req, res) { | |
passport.callback(req, res, function (err, user) { | |
//sails.log.debug("API -> Controllers->AuthControllers->Callback: Found our user, now lets log them in",user); | |
req.login(user, function (err) { | |
// If an error was thrown, redirect the user to the login which should | |
// take care of rendering the error messages. | |
if (err) { | |
var redirect = req.param('action') === 'register' ? '/#user/register' : '/#user/login'; | |
if(req.wantsJSON === true) { | |
res.json(err.status_code || 403,{ | |
message: "Authentication Failed, Redirect to "+redirect, | |
redirect: redirect, | |
err: err | |
}); | |
} | |
else { | |
res.redirect(redirect); | |
} | |
} | |
// Upon successful login, send the user to the homepage were req.user | |
// will available. | |
else { | |
if(req.wantsJSON === true) { | |
res.json({ message: "Success!", user: req.user }); | |
} | |
else { | |
res.redirect('/'); | |
} | |
} | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment