Řešení, které mě napadá, je aktualizovat vnořený dokument jeden po druhém.
Předpokládejme, že máme zakázané fráze, což je pole řetězců:
var bannedPhrases = ["censorship", "evil"]; // and more ...
Poté provedeme dotaz, abychom našli všechny UserComments
který má comments
které obsahují kteroukoli z bannedPhrases
.
UserComments.find({"comments.comment": {$in: bannedPhrases }});
Pomocí příslibů můžeme provádět aktualizaci asynchronně společně:
UserComments.find({"comments.comment": {$in: bannedPhrases }}, {"comments.comment": 1})
.then(function(results){
return results.map(function(userComment){
userComment.comments.forEach(function(commentContainer){
// Check if this comment contains banned phrases
if(bannedPhrases.indexOf(commentContainer.comment) >= 0) {
commentContainer.isHidden = true;
}
});
return userComment.save();
});
}).then(function(promises){
// This step may vary depending on which promise library you are using
return Promise.all(promises);
});
Pokud používáte Bluebird JS je knihovna slibů Mongoose, kód by mohl být zjednodušen:
UserComments.find({"comments.comment": {$in: bannedPhrases}}, {"comments.comment": 1})
.exec()
.map(function (userComment) {
userComment.comments.forEach(function (commentContainer) {
// Check if this comment contains banned phrases
if (bannedPhrases.indexOf(commentContainer.comment) >= 0) {
commentContainer.isHidden = true;
}
});
return userComment.save();
}).then(function () {
// Done saving
});