I am trying to use Facebook to log a user in. My code works when I simply return true instead of a promise, but I want to use the promise in order to be able to blacklist certain users.
Without a findUserById configuration, I get this error: https://github.com/bnoguchi/everyauth/issues/344
When I add a findUserById configuration (following the example from here: https://github.com/bnoguchi/everyauth/issues/116#issuecomment-9840025), i get an infinite redirect loop and Firefox says that the redirects will never finish or something like that.
What's wrong with my setup, and how can I fix it? Thanks a bunch.
everyauth.everymodule
.findUserById( function (id, callback) {
console.log('foobar');
users.findOne(id,callback);
});
everyauth
.facebook
.appId('appid')
.appSecret('secret')
.findOrCreateUser( function (session, accessToken, accessTokenExtra, fbUserMetadata) {
var promise = this.Promise();
users.findOne({id:fbUserMetadata.id},function(err,user){
if (user == null) {
console.log('new user!');
users.insert(fbUserMetadata,function(err,ok){
if (err){
console.log(new Error(err.message));
}
});
promise.fulfill(user);
} else if (user) {
console.log('old user!');
if (user.blacklisted === true) return promise.fail('denied!');
promise.fulfill(user);
}
});
return promise;
})
.scope('publish_actions')
.sendResponse(function(res,data){
res.redirect('/play')
});