Created
November 22, 2011 14:32
-
-
Save yuribossa/1385787 to your computer and use it in GitHub Desktop.
update() with validation of Mongoose
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
/** | |
* update.js | |
* New update() with validation of Mongoose | |
* | |
* written by yuribossa | |
* https://twitter.com/yuribossa | |
*/ | |
/** | |
* setNewUpdate | |
* @param {Connection} connection to use | |
* @param {Model} model object | |
* @api public | |
* | |
* example | |
* var update = require('update'); | |
* var con = mongoose.createConnection('mongodb:localhost/db'); | |
* var Account = con.Model('Account'); | |
* con = update.setNewUpdate(con, Account); | |
* Account.update({id: 1}, {name: 'momota'}, {}, function(err) {}); | |
*/ | |
module.exports = { | |
'setNewUpdate': function(con, model) { | |
con.base.Model.update = function(conditions, update, options, callback) { | |
model.findOne(conditions, function(err, doc) { | |
if (err) { | |
return callback(err); | |
} | |
if (!doc) { | |
return callback(new Error('Not exists.')); | |
} | |
for (var ope in update) { | |
switch (ope) { | |
case '$set': | |
for (var key in update['$set']) { | |
doc[key] = update['$set'][key]; | |
} | |
// in save() validation run | |
doc.save(function(err) { | |
callback(err); | |
}); | |
break; | |
case '$push': | |
for (var key in update['$push']) { | |
doc[key].push(update['$push'][key]); | |
} | |
// in save() validation run | |
doc.save(function(err) { | |
callback(err); | |
}); | |
break; | |
} | |
} | |
}); | |
}; | |
return con; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment