-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemaPlugin.js
451 lines (421 loc) · 16.1 KB
/
schemaPlugin.js
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
const ObjectID = require('bson').ObjectID;
const _ = require('lodash');
const traverse = require('traverse');
const {convertNameToTestFunction, clearUndefined} = require('./utils');
const {parseCondition, parseSchema, convertSchemaToPaths, checkEqual} = require('./schemaHandler')
module.exports = function (orm) {
const defaultSchema = convertSchemaToPaths({});
orm.schemas = orm.schemas || [];
orm.defaultSchema = defaultSchema;
orm.registerSchema = function (collectionName, dbName, schema, isSchemaConverted = false) {
if (orm.mode === 'single') {
isSchemaConverted = schema
schema = dbName;
dbName = null;
} else {
if (!schema && orm.dbName) {
schema = dbName;
dbName = orm.dbName;
}
}
if (!isSchemaConverted) {
schema = convertSchemaToPaths(schema, collectionName);
}
orm.schemas.push({
testCollection: convertNameToTestFunction(collectionName),
schema,
...(orm.mode !== 'single' && {
testDb: convertNameToTestFunction(dbName)
})
})
orm.emit('schemaRegistered', collectionName, dbName, schema)
return orm.getCollection(collectionName, dbName);
}
orm.getSchema = function (collectionName, dbName) {
let match = orm.schemas.find(match => {
if (orm.mode === 'single') {
if (match.testCollection(collectionName)) return true
} else {
if (!dbName && orm.dbName) {
dbName = orm.dbName;
}
if (match.testCollection(collectionName) && match.testDb(dbName)) return true;
}
});
if (match) return match.schema || defaultSchema;
}
//parse condition
orm.on('proxyQueryHandler', function ({target, key, proxy, defaultFn}) {
const schema = orm.getSchema(target.collectionName, target.dbName) || defaultSchema;
const returnResult = this;
if (returnResult.ok) return;
if (key === 'remove') key = 'deleteMany'
if (key.includes('One') || key === 'create' || key === 'findById' || key === 'count') target.returnSingleDocument = true;
if (key === 'insertMany') {
target.isInsertManyCmd = true;
//todo: parseSchema
}
if (key === 'updateOne') key = 'findOneAndUpdate';
if (key === 'countDocuments') key = 'count';
if (key === 'findOneAndUpdate') {
target.new = true;
}
if (key.includes('Update') || key.includes('Modify') || key.includes('create')
|| key.includes('update') || key.includes('insert') || key.includes('delete')
|| key.includes('remove') || key.includes('replace')) {
target.isMutateCmd = true;
}
if (key.includes('delete') || key === 'count') {
if (key.includes('delete')) {
target.isDeleteCmd = true;
}
if (key === 'count') {
target.returnSingleDocument = true;
}
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
const condition = args.shift();
const _parseCondition = parseCondition(schema, condition);
target.condition = _parseCondition;
args.unshift(_parseCondition);
target.cursor = target.cursor[key](...args);
return proxy;
}
} else if (key === 'findById') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
let objId = args.shift();
if (typeof objId === 'string') {
try {
objId = new ObjectID(objId)
} catch (e) {
console.error(`Invalid value for objectId ${objId}`, e.message, e.stack)
throw e
}
}
target.condition = {_id: objId};
target.cursor = target.cursor['findOne']({_id: objId});
return proxy;
}
} else if (key.includes('find') || key.includes('delete') || key === 'updateMany') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
const condition = args.shift();
const _parseCondition = parseCondition(schema, condition);
target.condition = _parseCondition;
if (key.includes('Update') || key.includes('Modify') || key === 'updateMany') {
let updateValue = args.shift();
let arrayFilters = [];
if (args.length > 0 && args[0].arrayFilters) {
arrayFilters = args[0].arrayFilters;
}
try {
updateValue = parseCondition(schema, updateValue, {arrayFilters});
} catch (e) {
console.warn(e);
}
if (updateValue._id) delete updateValue._id;
//updateValue = clearUndefined(updateValue);
args.unshift(updateValue);
}
args.unshift(_parseCondition);
try {
target.cursor = target.cursor[key](...args);
} catch (e) {
console.error(e);
}
return proxy;
}
} else if (key === 'create') {
target.isCreateCmd = true;
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
const obj = args.shift();
if (Array.isArray(obj)) {
target.returnSingleDocument = false;
let objs = obj;
objs = objs.map(obj => parseSchema(schema, obj)).map(clearUndefined);
if (objs.length !== 0) {
args.unshift(objs);
target.cursor = target.cursor['insertMany'](...args);
} else {
target.ignore = true;
target.returnValueWhenIgnore = [];
}
} else {
let _obj = parseSchema(schema, obj);
_obj = clearUndefined(_obj);
args.unshift(_obj);
target.cursor = target.cursor['insertOne'](...args);
}
return proxy;
}
} else if (key === 'insertOne') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
const obj = args.shift();
args.unshift(clearUndefined(parseSchema(schema, obj)));
return defaultFn(...args)
}
} else if (key === 'replaceOne') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
let condition = parseCondition(schema, args.shift());
let obj = clearUndefined(parseSchema(schema, args.shift()))
args.unshift(condition, obj);
return defaultFn(...args)
}
} else if (key === 'insertMany') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
let objs = args.shift();
objs = objs.map(obj => parseSchema(schema, obj)).map(clearUndefined);
if (objs.length !== 0) {
args.unshift(objs);
return defaultFn(...args)
} else {
target.ignore = true;
target.returnValueWhenIgnore = [];
return proxy;
}
}
} else if (key === 'bulkWrite') {
returnResult.ok = true;
//todo:
returnResult.value = function () {
const args = [...arguments];
let commands = args[0];
for (const command of commands) {
if (command.hasOwnProperty('insertOne')) {
const {document} = command['insertOne'];
command['insertOne'].document = parseSchema(schema, document);
//parse here
} else if (command.hasOwnProperty('updateOne')) {
const {filter, update, arrayFilters = []} = command['updateOne'];
command['updateOne'].filter = parseCondition(schema, filter);
command['updateOne'].update = parseCondition(schema, update, {arrayFilters});
} else if (command.hasOwnProperty('updateMany')) {
const {filter, update, arrayFilters = []} = command['updateMany'];
command['updateMany'].filter = parseCondition(schema, filter);
command['updateMany'].update = parseCondition(schema, update, {arrayFilters});
} else if (command.hasOwnProperty('deleteOne')) {
const {filter} = command['deleteOne'];
command['deleteOne'].filter = parseCondition(schema, filter);
} else if (command.hasOwnProperty('deleteMany')) {
const {filter} = command['deleteMany'];
command['deleteMany'].filter = parseCondition(schema, filter);
} else if (command.hasOwnProperty('replaceOne')) {
const {filter, replacement} = command['replaceOne'];
command['replaceOne'].filter = parseCondition(schema, filter);
command['replaceOne'].replacement = parseSchema(schema, replacement);
}
}
return defaultFn(...args);
}
} else if (key === 'aggregate') {
returnResult.ok = true;
returnResult.value = function () {
const args = [...arguments];
if (args.length && args[0].length && args[0][0].$match) {
const condition = args[0].shift();
const _parseCondition = parseCondition(schema, condition.$match);
target.condition = _parseCondition;
args[0].unshift({$match: _parseCondition});
}
try {
target.cursor = target.cursor[key](...args);
} catch (e) {
console.error(e);
}
return proxy;
}
}
})
function checkMainCmd(key) {
if (key.includes('find') || key.includes('create') || key.includes('update')
|| key.includes('insert') || key.includes('delete') || key.includes('remove')
|| key.includes('count') || key.includes('aggregate') || key.includes('replace')
|| key.includes('indexes') || key.includes('Index') || key.includes('bulk')) return true;
return false;
}
orm.on('proxyQueryHandler', function ({target, key, proxy, defaultFn}) {
if (checkMainCmd(key)) {
target.cmd = key;
}
})
//populate
orm.on('proxyQueryHandler', function ({target, key, proxy, defaultFn}, result) {
if (this.ok) return;
if (key === 'populate') {
this.ok = true;
this.value = function () {
target.populates = target.populates || [];
target.populates.push([...arguments]);
return proxy;
}
}
})
function isContiguousIntegers(a) {
for (const x of a) if (isNaN(x)) return false
a.sort((x, y) => (Number(x) - Number(y)))
for (let i = 0; i < a.length; i++) {
if (i !== Number(a[i])) return false
}
return true
}
//todo: optimize this function
function genPaths(_path, obj) {
_path = _path.split('.');
const paths = [];
traverse(obj).forEach(function (node) {
const {key, path, isRoot, parent, isLeaf} = this;
if (checkEqual(_path, path)) {
paths.push(path.join('.'));
}
if (_path.length > path.length) {
const __path = _.take(_path, path.length);
if (!checkEqual(__path, path)) {
return this.block();
}
}
if ((node instanceof ObjectID) || (node instanceof Buffer)) {
return this.block();
}
})
return paths;
}
//populate
async function doPopulate(target, result) {
if (target.populates && !target.query.noEffect) {
for (const populate of target.populates) {
const [arg1] = populate;
let path, select;
if (typeof arg1 === 'string') {
[path, select] = populate;
} else {
({path, select} = arg1);
}
const schema = orm.getSchema(target.collectionName, target.dbName) || defaultSchema;
const refCollectionName = schema[path].$options.ref;
const refCollection = orm.getCollection(refCollectionName, target.dbName);
const ids = []
const map = new Map()
for (const doc of result) {
const paths = genPaths(path, doc);
for (const _path of paths) {
if (ObjectID.isValid(_.get(doc, _path))) ids.push(_.get(doc, _path))
else {
//set null if not instance of ObjectID / can't populate
_.set(doc, _path, null)
}
}
}
const cursor = refCollection['find']({_id: {$in: ids}})
const docs = ids.length ? await cursor : []
for (const doc of docs) {
map.set(doc._id.toString(), doc)
}
for (const doc of result) {
const paths = genPaths(path, doc);
const pathsContainNullElementsInArray = new Set()
for (const _path of paths) {
if (ObjectID.isValid(_.get(doc, _path))) {
let populatedValue = map.get(_.get(doc, _path).toString()) || null
if (populatedValue && _.isString(select)) {
const selectList = select.split(' ').filter(s => !s.startsWith('-'))
const deselectList = select.split(' ').filter(s => s.startsWith('-')).map(s => s.slice(1))
if (selectList.length) populatedValue = _.pick(populatedValue, selectList)
if (deselectList.length) populatedValue = _.omit(populatedValue, deselectList)
}
_.set(doc, _path, populatedValue)
} else {
const subPath = _path.split('.').slice(0, -1)
if (_.isArray(_.get(doc, subPath.join('.')))) {
pathsContainNullElementsInArray.add(subPath.join('.'))
}
}
}
for (const _path of pathsContainNullElementsInArray) {
_.set(doc, _path, _.get(doc, _path).filter(a => a !== null))
}
}
}
}
return result
}
orm.on('proxyResultPostProcess', async function ({target, result}) {
const returnResult = this;
if (returnResult.ok) return;
if (target.returnSingleDocument) {
if (!result) return
if (result.ok && result.n) return
returnResult.ok = true
returnResult.value = (await doPopulate(target, [result]))[0]
} else {
if (result.length >= 1) {
const firstResult = result[0]
if (!firstResult) return
if (firstResult.ok) return
}
returnResult.ok = true
returnResult.value = await doPopulate(target, result)
}
})
orm.on('proxyResultPostProcess', async function ({target, result}) {
let cmd = target.cmd;
for (const _result of (target.returnSingleDocument ? [result] : result)) {
if (cmd.includes('update') || cmd.includes('Update') || cmd.includes('create') || cmd.includes('insert')) {
await orm.emit(`update:${target.collectionName}`, _result, target);
if (orm.mode === 'multi') await orm.emit(`update:${target.collectionName}@${target.dbName}`, _result, target);
const type = cmd.includes('insert') || cmd.includes('create') ? 'c' : 'u';
await orm.emit(`update:${target.collectionName}:${type}`, _result, target);
if (orm.mode === 'multi') await orm.emit(`update:${target.collectionName}@${target.dbName}:${type}`, _result, target);
} else if (cmd.includes('find')) {
await orm.emit(`find:${target.collectionName}`, _result, target);
if (orm.mode === 'multi') await orm.emit(`find:${target.collectionName}@${target.dbName}`, _result, target);
} else if (cmd.includes('delete')) {
await orm.emit(`delete:${target.collectionName}`, _result, target);
if (orm.mode === 'multi') await orm.emit(`delete:${target.collectionName}@${target.dbName}`, _result, target);
}
}
})
orm.on('proxyPostQueryHandler', function ({target, proxy}, result) {
const schema = orm.getSchema(target.collectionName, target.dbName);
if (schema) {
for (const path of Object.keys(schema)) {
const {$options, $type} = schema[path];
if ($options && $options.autopopulate) {
proxy.populate(path, $options.autopopulate);
}
}
}
})
//add new: true ??
orm.on('proxyPostQueryHandler', function ({target, proxy}) {
if (target.new) {
proxy.setOptions({new: true});
}
})
orm.on('construct', function ({target, args}) {
let [collectionName, dbName] = target.modelName.split('@');
const schema = orm.getSchema(collectionName, dbName);
this.value = parseSchema(schema, args[0]);
this.value._id = new ObjectID();
})
//handle noEffect
orm.noEffect = () => [];
orm.on('pre:execChain', -10, function (query) {
if (_.last(query.chain).fn === 'noEffect') {
query.noEffect = true;
query.chain.pop();
return;
}
})
}