| 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 | 1
1
1
1
1
1
403
403
403
403
403
403
403
403
403
1
1
1
16
1
23
23
23
4
23
23
23
23
4
1
3
3
2
1
23
23
23
23
21
21
3
18
18
18
20
5
15
20
4
16
20
4
16
2
2
2
2
14
14
14
14
20
20
4
16
16
16
16
20
2
2
2
18
18
18
18
18
18
1
6
1
10
10
10
10
10
10
10
10
2
2
2
2
8
8
8
8
8
8
1
6
1
15
15
15
15
2
13
13
13
13
15
13
2
15
15
1
3
3
3
7
2
2
3
1
4
4
4
4
12
3
2
1
4
1
1
1
1
1
1
274
251
1
1
1
1
| var _ = require('lodash');
var MongoDB = require('mongodb');
var Bluebird = require('bluebird');
var skmatc = require('skmatc');
var Instance = (function () {
/**
* Creates a new instance which represents the given document as a type of model
* @param {model.Model} model The model that the document represents
* @param {TSchema} document The document which should be wrapped by this instance
* @param {Boolean} isNew Whether the document is new (doesn't exist in the database) or not
* @param {Boolean} isPartial Whether the document has only a subset of its fields populated
* @description
* This class will be subclassed automatically by Iridium to create a model specific instance
* which takes advantage of some of v8's optimizations to boost performance significantly.
* The instance returned by the model, and all of this instance's methods, will be of type
* TInstance - which should represent the merger of TSchema and IInstance for best results.
*/
function Instance(model, document, isNew, isPartial) {
var _this = this;
if (isNew === void 0) { isNew = true; }
if (isPartial === void 0) { isPartial = false; }
this._model = model;
this._isNew = !!isNew;
this._isPartial = isPartial;
this._original = document;
this._modified = _.cloneDeep(document);
_.each(model.core.plugins, function (plugin) {
Eif (plugin.newInstance)
plugin.newInstance(_this, model);
});
}
Object.defineProperty(Instance.prototype, "document", {
/**
* Gets the underlying document representation of this instance
*/
get: function () {
return this._modified;
},
enumerable: true,
configurable: true
});
Instance.prototype.save = function () {
var _this = this;
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i - 0] = arguments[_i];
}
var callback = null;
var changes = null;
var conditions = {};
Array.prototype.slice.call(args, 0).reverse().forEach(function (arg) {
if (typeof arg == 'function')
callback = arg;
else Eif (typeof arg == 'object') {
if (!changes)
changes = arg;
else
conditions = arg;
}
});
return Bluebird.resolve().then(function () {
conditions = _.cloneDeep(conditions);
_.merge(conditions, { _id: _this._modified._id });
if (!changes) {
var validation = _this._model.helpers.validate(_this._modified);
if (validation.failed)
return Bluebird.reject(validation.error).bind(_this).nodeify(callback);
var original = _.cloneDeep(_this._original);
var modified = _.cloneDeep(_this._modified);
changes = _this._model.helpers.diff(original, modified);
}
if (!_.keys(changes).length)
return null;
return changes;
}).then(function (changes) {
if (!changes && !_this._isNew)
return changes;
return _this._model.handlers.savingDocument(_this, changes).then(function () { return changes; });
}).then(function (changes) {
if (!changes && !_this._isNew)
return false;
if (_this._isNew) {
return new Bluebird(function (resolve, reject) {
_this._model.collection.insertOne(_this._modified, { w: 'majority' }, function (err, doc) {
Iif (err)
return reject(err);
return resolve(!!doc);
});
});
}
else {
return new Bluebird(function (resolve, reject) {
_this._model.collection.updateOne(conditions, changes, { w: 'majority' }, function (err, changed) {
Iif (err)
return reject(err);
return resolve(changed);
});
});
}
}).then(function (changed) {
conditions = { _id: _this._modified._id };
if (!changed)
return _this._modified;
return new Bluebird(function (resolve, reject) {
_this._model.collection.findOne(conditions, function (err, latest) {
Iif (err)
return reject(err);
return resolve(latest);
});
});
}).then(function (latest) {
if (!latest) {
_this._isNew = true;
_this._original = _.cloneDeep(_this._modified);
return Bluebird.resolve(_this);
}
return _this._model.handlers.documentReceived(conditions, latest, function (value) {
_this._isPartial = false;
_this._isNew = false;
_this._modified = value;
_this._original = _.cloneDeep(value);
return _this;
});
}).nodeify(callback);
};
/**
* Updates this instance to match the latest document available in the backing collection
* @param {function(Error, IInstance)} callback A callback which is triggered when the update completes
* @returns {Promise<TInstance>}
*/
Instance.prototype.update = function (callback) {
return this.refresh(callback);
};
/**
* Updates this instance to match the latest document available in the backing collection
* @param {function(Error, IInstance)} callback A callback which is triggered when the update completes
* @returns {Promise<TInstance>}
*/
Instance.prototype.refresh = function (callback) {
var _this = this;
var conditions = { _id: this._original._id };
return Bluebird.resolve().then(function () {
return new Bluebird(function (resolve, reject) {
_this._model.collection.findOne(conditions, function (err, doc) {
Iif (err)
return reject(err);
return resolve(doc);
});
});
}).then(function (newDocument) {
if (!newDocument) {
_this._isPartial = true;
_this._isNew = true;
_this._original = _.cloneDeep(_this._modified);
return _this;
}
return _this._model.handlers.documentReceived(conditions, newDocument, function (doc) {
_this._isNew = false;
_this._isPartial = false;
_this._original = doc;
_this._modified = _.cloneDeep(doc);
return _this;
});
}).nodeify(callback);
};
/**
* Removes this instance's document from the backing collection
* @param {function(Error, IInstance)} callback A callback which is triggered when the operation completes
* @returns {Promise<TInstance>}
*/
Instance.prototype.delete = function (callback) {
return this.remove(callback);
};
/**
* Removes this instance's document from the backing collection
* @param {function(Error, IInstance)} callback A callback which is triggered when the operation completes
* @returns {Promise<TInstance>}
*/
Instance.prototype.remove = function (callback) {
var _this = this;
var conditions = { _id: this._original._id };
return Bluebird.resolve().then(function () {
if (_this._isNew)
return 0;
return new Bluebird(function (resolve, reject) {
_this._model.collection.remove(conditions, { w: 'majority' }, function (err, removed) {
Iif (err)
return reject(err);
return resolve(removed);
});
});
}).then(function (removed) {
if (removed)
return _this._model.cache.clear(conditions);
return false;
}).then(function () {
_this._isNew = true;
return _this;
}).nodeify(callback);
};
Instance.prototype.first = function (collection, predicate) {
var _this = this;
var result = null;
_.each(collection, function (value, key) {
if (predicate.call(_this, value, key)) {
result = value;
return false;
}
});
return result;
};
Instance.prototype.select = function (collection, predicate) {
var _this = this;
var isArray = Array.isArray(collection);
var results = isArray ? [] : {};
_.each(collection, function (value, key) {
if (predicate.call(_this, value, key)) {
if (isArray)
results.push(value);
else
results[key] = value;
}
});
return results;
};
/**
* Gets the JSON representation of this instance
* @returns {TDocument}
*/
Instance.prototype.toJSON = function () {
return this.document;
};
/**
* Gets a string representation of this instance
* @returns {String}
*/
Instance.prototype.toString = function () {
return JSON.stringify(this.document, null, 2);
};
Instance.schema = {
_id: false
};
Instance.validators = [
skmatc.create(function (schema) { return schema === MongoDB.ObjectID; }, function (schema, data) {
return this.assert(!data || data instanceof MongoDB.ObjectID || (data._bsontype === 'ObjectID' && data.id));
}, { name: 'ObjectID validation' })
];
Instance.transforms = {};
Instance.indexes = [];
return Instance;
})();
exports.default = Instance;
//# sourceMappingURL=../lib/Instance.js.map |