1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | 2× 2× 2× 2× 2× 2× 2× 2× 1765× 1765× 233× 233× 1765× 40× 1765× 233× 1532× 26× 1506× 1506× 1506× 1506× 1506× 1500× 1× 1506× 12800× 3461× 3461× 2767× 694× 694× 1506× 1506× 1506× 1506× 1× 1506× 1506× 532× 25× 25× 25× 25× 25× 25× 25× 25× 25× 25× 25× 25× 8× 17× 25× 25× 25× 25× 25× 25× 25× 1× 1506× 1506× 1506× 1500× 1× 1500× 1500× 1500× 1500× 1500× 12758× 25× 25× 25× 1500× 1376× 1500× 1376× 1500× 1500× 1500× 1500× 11× 11× 1489× 1489× 1353× 522× 1353× 136× 136× 136× 136× 1× 1489× 1489× 1489× 1489× 1489× | /** * Module Dependencies */ var async = require('async'); var _ = require('lodash'); var utils = require('../../utils/helpers'); var Deferred = require('../deferred'); var callbacks = require('../../utils/callbacksRunner'); var nestedOperations = require('../../utils/nestedOperations'); var hop = utils.object.hasOwnProperty; /** * Create a new record * * @param {Object || Array} values for single model or array of multiple values * @param {Function} callback * @return Deferred object if no callback */ module.exports = function(values, cb, metaContainer) { var self = this; // Handle Deferred where it passes criteria first if(_.isPlainObject(arguments[0]) && (_.isPlainObject(arguments[1]) || _.isArray(arguments[1]))) { values = arguments[1]; cb = arguments[2]; } // Remove all undefined values if (_.isArray(values)) { values = _.filter(values, undefined); } // Return Deferred or pass to adapter if (typeof cb !== 'function') { return new Deferred(this, this.create, {}, values); } // Handle Array of values if (Array.isArray(values)) { return this.createEach(values, cb, metaContainer); } // Process Values var valuesObject = processValues.call(this, values); // Create any of the belongsTo associations and set the foreign key values createBelongsTo.call(this, valuesObject, function(err) { Iif (err) return cb(err); beforeCallbacks.call(self, valuesObject, function(err) { if (err) return cb(err); createValues.call(self, valuesObject, cb, metaContainer); }, metaContainer); }); }; /** * Process Values * * @param {Object} values * @return {Object} */ function processValues(values) { // Set Default Values if available for (var key in this.attributes) { if ((!hop(values, key) || values[key] === undefined) && hop(this.attributes[key], 'defaultsTo')) { var defaultsTo = this.attributes[key].defaultsTo; if (typeof defaultsTo === 'function') { values[key] = defaultsTo.call(values); } else { values[key] = _.cloneWith(defaultsTo, function dealWithBuffers(val, key) { Iif (val instanceof Buffer) { return val; } }); } } } // Pull out any associations in the values var associations = nestedOperations.valuesParser.call(this, this.identity, this.offshore.schema, values); // Replace associated models with their foreign key values if available. // Unless the association has a custom primary key (we want to create the object) values = nestedOperations.reduceAssociations.call(this, this.identity, this.offshore.schema, values, 'create'); // Cast values to proper types (handle numbers as strings) values = this._cast.run(values); return { values: values, associations: associations }; } /** * Create BelongsTo Records * */ function createBelongsTo(valuesObject, cb, metaContainer) { var self = this; async.each(_.keys(valuesObject.associations.models), function(item, next) { // Check if value is an object. If not don't try and create it. if (!_.isPlainObject(valuesObject.associations.models[item])) return next(); // Check for any transformations var attrName = hop(self._transformer._transformations, item) ? self._transformer._transformations[item] : item; var attribute = self._schema.schema[attrName]; var modelName; Iif (hop(attribute, 'collection')) modelName = attribute.collection; Eif (hop(attribute, 'model')) modelName = attribute.model; Iif (!modelName) return next(); var model = self.offshore.collections[modelName]._loadQuery(self._query); var pkValue = valuesObject.associations.models[item][model.primaryKey]; var criteria = {}; criteria[model.primaryKey] = pkValue; // If a pkValue if found, do a findOrCreate and look for a record matching the pk. var query; if (pkValue) { query = model.findOrCreate(criteria, valuesObject.associations.models[item]); } else { query = model.create(valuesObject.associations.models[item]); } Iif(metaContainer) { query.meta(metaContainer); } query.exec(function(err, val) { Iif (err) return next(err); // attach the new model's pk value to the original value's key var pk = val[model.primaryKey]; valuesObject.values[item][model.primaryKey] = pk; valuesObject.associations.models[item][model.primaryKey] = pk; next(); }); }, cb); } /** * Run Before* Lifecycle Callbacks * * @param {Object} valuesObject * @param {Function} cb */ function beforeCallbacks(valuesObject, cb) { var self = this; async.series([ // Run Validation with Validation LifeCycle Callbacks function(cb) { callbacks.validate(self, valuesObject.values, false, cb); }, // Before Create Lifecycle Callback function(cb) { callbacks.beforeCreate(self, valuesObject.values, cb); } ], cb); } /** * Create Parent Record and any associated values * * @param {Object} valuesObject * @param {Function} cb */ function createValues(valuesObject, cb, metaContainer) { var self = this; var date; var values = _.clone(valuesObject.values); var parentSchema = self.offshore.schema[self.identity]; _.forEach(parentSchema.attributes, function(attribute, attributeKey) { if(attribute.foreignKey && values[attributeKey] && _.isObject(values[attributeKey])) { var deepChildSchema = self.offshore.schema[attribute.references]; var deepChildPk = _.findKey(deepChildSchema.attributes, { primaryKey: true }); values[attributeKey] = values[attributeKey][deepChildPk]; } }); // Automatically add updatedAt and createdAt (if enabled) if (self.autoCreatedAt) { Iif (!values[self.autoCreatedAt]) { date = date || new Date(); values[self.autoCreatedAt] = date; } } if (self.autoUpdatedAt) { Iif (!values[self.autoUpdatedAt]) { date = date || new Date(); values[self.autoUpdatedAt] = date; } } // Transform Values values = self._transformer.serialize(values); // Clean attributes values = self._schema.cleanValues(values); // Pass to adapter here self.adapter._loadQuery(self._query).create(values, function(err, values) { if (err) { Eif (typeof err === 'object') { err.model = self._model.globalId; } return cb(err); } // Unserialize values values = self._transformer.unserialize(values); // If no associations were used, run after if (_.keys(valuesObject.associations.collections).length === 0) { // Replace child by foreign key _.forEach(valuesObject.associations.models, function(value, key) { values[key] = value; }); return after(values); } var parentModel = new self._model(values)._loadQuery(self._query); nestedOperations.create.call(self, parentModel, valuesObject.associations.collections, function(err, values) { Iif (err) { return cb(err); } after(values, {showJoins: true}); }); function after(values, mixins) { mixins = mixins || {}; // Run After Create Callbacks callbacks.afterCreate(self, values, function(err) { Iif (err) return cb(err); // Return an instance of Model var model = new self._model(values, mixins)._loadQuery(self._query); cb(null, model); }); } }, metaContainer); } |