Given the code below, i'm assuming i'm running into an async issue.
exports.existingCheck = function (req, res, next) {
var query = [],
message = [],
userObj = {},
i, body = req.body;
if(body.displayName){
var regex = new RegExp(["^", body.displayName, "$"].join(""), "i");
};
if(req.user){
var userObj = req.user;
}
if (body.displayName !== userObj.displayName) {
console.log('body n no match')
query.push({
displayName: regex
});
}
if (body.email !== userObj.email) {
console.log('body e no match')
query.push({
email: body.email
});
}
console.log('query pre ', query)
if (query.length) {
console.log('query init ', query)
//find a match for email or display name and send appropriate error message;
User.find({
$or: query
},
function (err, existing) {
if (err) {
console.log('register er ', err)
}
if (existing.length) {
for (i = 0; i < existing.length; i++) {
var conditional1 = false, conditional2 = false;
console.log('conditional1 init ', conditional1)
if(body.displayName && (userObj._id !== existing[i]._id)){
conditional1 = body.displayName.toLowerCase() === existing[i].displayName.toLowerCase();
};
console.log('conditional1 after ', conditional1)
if(body.email && (userObj._id !== existing[i]._id)){
conditional2 = body.email.toLowerCase() === existing[i].email.toLowerCase();
}
if (conditional2) {
message.push('Email is not unique.');
}
if (conditional1) {
message.push('Display name has already been taken.');
}
}
}
});
}
console.log('message check ', message)
if (message.length) {
return res.status(409).send({
'message': message
});
}
console.log('next')
next();
};
the code below results in the console.logS firing in this order:
body n no match
query pre [ { displayName: /^bobohead$/i } ]
query init [ { displayName: /^bobohead$/i } ]
message check []
next
conditional1 init false
conditional1 after true
With the problem being that the conditionals are not receiving their values until after the message check and next() are invoked.
I thought that the if statements were blocking code and that one would wait for the other to be fired.
I'm assuming i'll need to add an else statement to call a function that invokes the message check and next() & to invoke that same function at the end of the initial if statement.
do I also need to ensure i invoke next() within an else statement, to ensure that it is not called before the return in the message check has processed? :
console.log('message check ', message)
if (message.length) {
return res.status(409).send({
'message': message
});
}
else{
console.log('next')
next();
}
};
console.logalways logs{ displayName: /^bobohead$/i }?