deno.land / x / mongoose@6.7.5 / lib / connection.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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
'use strict';
/*! * Module dependencies. */
const ChangeStream = require('./cursor/ChangeStream');const EventEmitter = require('events').EventEmitter;const Schema = require('./schema');const STATES = require('./connectionstate');const MongooseError = require('./error/index');const DisconnectedError = require('./error/disconnected');const SyncIndexesError = require('./error/syncIndexes');const PromiseProvider = require('./promise_provider');const ServerSelectionError = require('./error/serverSelection');const applyPlugins = require('./helpers/schema/applyPlugins');const driver = require('./driver');const promiseOrCallback = require('./helpers/promiseOrCallback');const get = require('./helpers/get');const immediate = require('./helpers/immediate');const mongodb = require('mongodb');const pkg = require('../package.json');const utils = require('./utils');const processConnectionOptions = require('./helpers/processConnectionOptions');
const arrayAtomicsSymbol = require('./helpers/symbols').arrayAtomicsSymbol;const sessionNewDocuments = require('./helpers/symbols').sessionNewDocuments;
/** * A list of authentication mechanisms that don't require a password for authentication. * This is used by the authMechanismDoesNotRequirePassword method. * * @api private */const noPasswordAuthMechanisms = [ 'MONGODB-X509'];
/** * Connection constructor * * For practical reasons, a Connection equals a Db. * * @param {Mongoose} base a mongoose instance * @inherits NodeJS EventEmitter https://nodejs.org/api/events.html#class-eventemitter * @event `connecting`: Emitted when `connection.openUri()` is executed on this connection. * @event `connected`: Emitted when this connection successfully connects to the db. May be emitted _multiple_ times in `reconnected` scenarios. * @event `open`: Emitted after we `connected` and `onOpen` is executed on all of this connection's models. * @event `disconnecting`: Emitted when `connection.close()` was executed. * @event `disconnected`: Emitted after getting disconnected from the db. * @event `close`: Emitted after we `disconnected` and `onClose` executed on all of this connection's models. * @event `reconnected`: Emitted after we `connected` and subsequently `disconnected`, followed by successfully another successful connection. * @event `error`: Emitted when an error occurs on this connection. * @event `fullsetup`: Emitted after the driver has connected to primary and all secondaries if specified in the connection string. * @api public */
function Connection(base) { this.base = base; this.collections = {}; this.models = {}; this.config = {}; this.replica = false; this.options = null; this.otherDbs = []; // FIXME: To be replaced with relatedDbs this.relatedDbs = {}; // Hashmap of other dbs that share underlying connection this.states = STATES; this._readyState = STATES.disconnected; this._closeCalled = false; this._hasOpened = false; this.plugins = []; if (typeof base === 'undefined' || !base.connections.length) { this.id = 0; } else { this.id = base.connections.length; } this._queue = [];}
/*! * Inherit from EventEmitter */
Object.setPrototypeOf(Connection.prototype, EventEmitter.prototype);
/** * Connection ready state * * - 0 = disconnected * - 1 = connected * - 2 = connecting * - 3 = disconnecting * * Each state change emits its associated event name. * * #### Example: * * conn.on('connected', callback); * conn.on('disconnected', callback); * * @property readyState * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'readyState', { get: function() { return this._readyState; }, set: function(val) { if (!(val in STATES)) { throw new Error('Invalid connection state: ' + val); }
if (this._readyState !== val) { this._readyState = val; // [legacy] loop over the otherDbs on this connection and change their state for (const db of this.otherDbs) { db.readyState = val; }
if (STATES.connected === val) { this._hasOpened = true; }
this.emit(STATES[val]); } }});
/** * Gets the value of the option `key`. Equivalent to `conn.options[key]` * * #### Example: * * conn.get('test'); // returns the 'test' value * * @param {String} key * @method get * @api public */
Connection.prototype.get = function(key) { if (this.config.hasOwnProperty(key)) { return this.config[key]; }
return get(this.options, key);};
/** * Sets the value of the option `key`. Equivalent to `conn.options[key] = val` * * Supported options include: * * - `maxTimeMS`: Set [`maxTimeMS`](/docs/api.html#query_Query-maxTimeMS) for all queries on this connection. * * #### Example: * * conn.set('test', 'foo'); * conn.get('test'); // 'foo' * conn.options.test; // 'foo' * * @param {String} key * @param {Any} val * @method set * @api public */
Connection.prototype.set = function(key, val) { if (this.config.hasOwnProperty(key)) { this.config[key] = val; return val; }
this.options = this.options || {}; this.options[key] = val; return val;};
/** * A hash of the collections associated with this connection * * @property collections * @memberOf Connection * @instance * @api public */
Connection.prototype.collections;
/** * The name of the database this connection points to. * * #### Example: * * mongoose.createConnection('mongodb://localhost:27017/mydb').name; // "mydb" * * @property name * @memberOf Connection * @instance * @api public */
Connection.prototype.name;
/** * A [POJO](https://masteringjs.io/tutorials/fundamentals/pojo) containing * a map from model names to models. Contains all models that have been * added to this connection using [`Connection#model()`](/docs/api/connection.html#connection_Connection-model). * * #### Example: * * const conn = mongoose.createConnection(); * const Test = conn.model('Test', mongoose.Schema({ name: String })); * * Object.keys(conn.models).length; // 1 * conn.models.Test === Test; // true * * @property models * @memberOf Connection * @instance * @api public */
Connection.prototype.models;
/** * A number identifier for this connection. Used for debugging when * you have [multiple connections](/docs/connections.html#multiple_connections). * * #### Example: * * // The default connection has `id = 0` * mongoose.connection.id; // 0 * * // If you create a new connection, Mongoose increments id * const conn = mongoose.createConnection(); * conn.id; // 1 * * @property id * @memberOf Connection * @instance * @api public */
Connection.prototype.id;
/** * The plugins that will be applied to all models created on this connection. * * #### Example: * * const db = mongoose.createConnection('mongodb://localhost:27017/mydb'); * db.plugin(() => console.log('Applied')); * db.plugins.length; // 1 * * db.model('Test', new Schema({})); // Prints "Applied" * * @property plugins * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'plugins', { configurable: false, enumerable: true, writable: true});
/** * The host name portion of the URI. If multiple hosts, such as a replica set, * this will contain the first host name in the URI * * #### Example: * * mongoose.createConnection('mongodb://localhost:27017/mydb').host; // "localhost" * * @property host * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'host', { configurable: true, enumerable: true, writable: true});
/** * The port portion of the URI. If multiple hosts, such as a replica set, * this will contain the port from the first host name in the URI. * * #### Example: * * mongoose.createConnection('mongodb://localhost:27017/mydb').port; // 27017 * * @property port * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'port', { configurable: true, enumerable: true, writable: true});
/** * The username specified in the URI * * #### Example: * * mongoose.createConnection('mongodb://val:psw@localhost:27017/mydb').user; // "val" * * @property user * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'user', { configurable: true, enumerable: true, writable: true});
/** * The password specified in the URI * * #### Example: * * mongoose.createConnection('mongodb://val:psw@localhost:27017/mydb').pass; // "psw" * * @property pass * @memberOf Connection * @instance * @api public */
Object.defineProperty(Connection.prototype, 'pass', { configurable: true, enumerable: true, writable: true});
/** * The mongodb.Db instance, set when the connection is opened * * @property db * @memberOf Connection * @instance * @api public */
Connection.prototype.db;
/** * The MongoClient instance this connection uses to talk to MongoDB. Mongoose automatically sets this property * when the connection is opened. * * @property client * @memberOf Connection * @instance * @api public */
Connection.prototype.client;
/** * A hash of the global options that are associated with this connection * * @property config * @memberOf Connection * @instance * @api public */
Connection.prototype.config;
/** * Helper for `createCollection()`. Will explicitly create the given collection * with specified options. Used to create [capped collections](https://docs.mongodb.com/manual/core/capped-collections/) * and [views](https://docs.mongodb.com/manual/core/views/) from mongoose. * * Options are passed down without modification to the [MongoDB driver's `createCollection()` function](https://mongodb.github.io/node-mongodb-native/4.9/classes/Db.html#createCollection) * * @method createCollection * @param {string} collection The collection to create * @param {Object} [options] see [MongoDB driver docs](https://mongodb.github.io/node-mongodb-native/4.9/classes/Db.html#createCollection) * @param {Function} [callback] * @return {Promise} Returns a Promise if no `callback` is given. * @api public */
Connection.prototype.createCollection = _wrapConnHelper(function createCollection(collection, options, cb) { if (typeof options === 'function') { cb = options; options = {}; } this.db.createCollection(collection, options, cb);});
/** * _Requires MongoDB >= 3.6.0._ Starts a [MongoDB session](https://docs.mongodb.com/manual/release-notes/3.6/#client-sessions) * for benefits like causal consistency, [retryable writes](https://docs.mongodb.com/manual/core/retryable-writes/), * and [transactions](https://thecodebarbarian.com/a-node-js-perspective-on-mongodb-4-transactions.html). * * #### Example: * * const session = await conn.startSession(); * let doc = await Person.findOne({ name: 'Ned Stark' }, null, { session }); * await doc.remove(); * // `doc` will always be null, even if reading from a replica set * // secondary. Without causal consistency, it is possible to * // get a doc back from the below query if the query reads from a * // secondary that is experiencing replication lag. * doc = await Person.findOne({ name: 'Ned Stark' }, null, { session, readPreference: 'secondary' }); * * * @method startSession * @param {Object} [options] see the [mongodb driver options](https://mongodb.github.io/node-mongodb-native/4.9/classes/MongoClient.html#startSession) * @param {Boolean} [options.causalConsistency=true] set to false to disable causal consistency * @param {Function} [callback] * @return {Promise<ClientSession>} promise that resolves to a MongoDB driver `ClientSession` * @api public */
Connection.prototype.startSession = _wrapConnHelper(function startSession(options, cb) { if (typeof options === 'function') { cb = options; options = null; } const session = this.client.startSession(options); cb(null, session);});
/** * _Requires MongoDB >= 3.6.0._ Executes the wrapped async function * in a transaction. Mongoose will commit the transaction if the * async function executes successfully and attempt to retry if * there was a retriable error. * * Calls the MongoDB driver's [`session.withTransaction()`](https://mongodb.github.io/node-mongodb-native/4.9/classes/ClientSession.html#withTransaction), * but also handles resetting Mongoose document state as shown below. * * #### Example: * * const doc = new Person({ name: 'Will Riker' }); * await db.transaction(async function setRank(session) { * doc.rank = 'Captain'; * await doc.save({ session }); * doc.isNew; // false * * // Throw an error to abort the transaction * throw new Error('Oops!'); * },{ readPreference: 'primary' }).catch(() => {}); * * // true, `transaction()` reset the document's state because the * // transaction was aborted. * doc.isNew; * * @method transaction * @param {Function} fn Function to execute in a transaction * @param {mongodb.TransactionOptions} [options] Optional settings for the transaction * @return {Promise<Any>} promise that is fulfilled if Mongoose successfully committed the transaction, or rejects if the transaction was aborted or if Mongoose failed to commit the transaction. If fulfilled, the promise resolves to a MongoDB command result. * @api public */
Connection.prototype.transaction = function transaction(fn, options) { return this.startSession().then(session => { session[sessionNewDocuments] = new Map(); return session.withTransaction(() => fn(session), options). then(res => { delete session[sessionNewDocuments]; return res; }). catch(err => { // If transaction was aborted, we need to reset newly // inserted documents' `isNew`. for (const doc of session[sessionNewDocuments].keys()) { const state = session[sessionNewDocuments].get(doc); if (state.hasOwnProperty('isNew')) { doc.$isNew = state.$isNew; } if (state.hasOwnProperty('versionKey')) { doc.set(doc.schema.options.versionKey, state.versionKey); }
if (state.modifiedPaths.length > 0 && doc.$__.activePaths.states.modify == null) { doc.$__.activePaths.states.modify = {}; } for (const path of state.modifiedPaths) { doc.$__.activePaths.paths[path] = 'modify'; doc.$__.activePaths.states.modify[path] = true; }
for (const path of state.atomics.keys()) { const val = doc.$__getValue(path); if (val == null) { continue; } val[arrayAtomicsSymbol] = state.atomics.get(path); } } delete session[sessionNewDocuments]; throw err; }) .finally(() => { session.endSession() .catch(() => {}); }); });};
/** * Helper for `dropCollection()`. Will delete the given collection, including * all documents and indexes. * * @method dropCollection * @param {string} collection The collection to delete * @param {Function} [callback] * @return {Promise} Returns a Promise if no `callback` is given. * @api public */
Connection.prototype.dropCollection = _wrapConnHelper(function dropCollection(collection, cb) { this.db.dropCollection(collection, cb);});
/** * Helper for `dropDatabase()`. Deletes the given database, including all * collections, documents, and indexes. * * #### Example: * * const conn = mongoose.createConnection('mongodb://localhost:27017/mydb'); * // Deletes the entire 'mydb' database * await conn.dropDatabase(); * * @method dropDatabase * @param {Function} [callback] * @return {Promise} Returns a Promise if no `callback` is given. * @api public */
Connection.prototype.dropDatabase = _wrapConnHelper(function dropDatabase(cb) { // If `dropDatabase()` is called, this model's collection will not be // init-ed. It is sufficiently common to call `dropDatabase()` after // `mongoose.connect()` but before creating models that we want to // support this. See gh-6796 for (const model of Object.values(this.models)) { delete model.$init; } this.db.dropDatabase(cb);});
/*! * ignore */
function _wrapConnHelper(fn) { return function() { const cb = arguments.length > 0 ? arguments[arguments.length - 1] : null; const argsWithoutCb = typeof cb === 'function' ? Array.prototype.slice.call(arguments, 0, arguments.length - 1) : Array.prototype.slice.call(arguments); const disconnectedError = new DisconnectedError(this.id, fn.name);
return promiseOrCallback(cb, cb => { immediate(() => { if ((this.readyState === STATES.connecting || this.readyState === STATES.disconnected) && this._shouldBufferCommands()) { this._queue.push({ fn: fn, ctx: this, args: argsWithoutCb.concat([cb]) }); } else if (this.readyState === STATES.disconnected && this.db == null) { cb(disconnectedError); } else { try { fn.apply(this, argsWithoutCb.concat([cb])); } catch (err) { return cb(err); } } }); }); };}
/*! * ignore */
Connection.prototype._shouldBufferCommands = function _shouldBufferCommands() { if (this.config.bufferCommands != null) { return this.config.bufferCommands; } if (this.base.get('bufferCommands') != null) { return this.base.get('bufferCommands'); } return true;};
/** * error * * Graceful error handling, passes error to callback * if available, else emits error on the connection. * * @param {Error} err * @param {Function} callback optional * @emits "error" Emits the `error` event with the given `err`, unless a callback is specified * @returns {Promise|null} Returns a rejected Promise if no `callback` is given. * @api private */
Connection.prototype.error = function(err, callback) { if (callback) { callback(err); return null; } if (this.listeners('error').length > 0) { this.emit('error', err); } return Promise.reject(err);};
/** * Called when the connection is opened * * @api private */
Connection.prototype.onOpen = function() { this.readyState = STATES.connected;
for (const d of this._queue) { d.fn.apply(d.ctx, d.args); } this._queue = [];
// avoid having the collection subscribe to our event emitter // to prevent 0.3 warning for (const i in this.collections) { if (utils.object.hasOwnProperty(this.collections, i)) { this.collections[i].onOpen(); } }
this.emit('open');};
/** * Opens the connection with a URI using `MongoClient.connect()`. * * @param {String} uri The URI to connect with. * @param {Object} [options] Passed on to [`MongoClient.connect`](https://mongodb.github.io/node-mongodb-native/4.9/classes/MongoClient.html#connect-1) * @param {Boolean} [options.bufferCommands=true] Mongoose specific option. Set to false to [disable buffering](https://mongoosejs.com/docs/faq.html#callback_never_executes) on all models associated with this connection. * @param {Number} [options.bufferTimeoutMS=10000] Mongoose specific option. If `bufferCommands` is true, Mongoose will throw an error after `bufferTimeoutMS` if the operation is still buffered. * @param {String} [options.dbName] The name of the database we want to use. If not provided, use database name from connection string. * @param {String} [options.user] username for authentication, equivalent to `options.auth.user`. Maintained for backwards compatibility. * @param {String} [options.pass] password for authentication, equivalent to `options.auth.password`. Maintained for backwards compatibility. * @param {Number} [options.maxPoolSize=100] The maximum number of sockets the MongoDB driver will keep open for this connection. Keep in mind that MongoDB only allows one operation per socket at a time, so you may want to increase this if you find you have a few slow queries that are blocking faster queries from proceeding. See [Slow Trains in MongoDB and Node.js](https://thecodebarbarian.com/slow-trains-in-mongodb-and-nodejs). * @param {Number} [options.minPoolSize=0] The minimum number of sockets the MongoDB driver will keep open for this connection. Keep in mind that MongoDB only allows one operation per socket at a time, so you may want to increase this if you find you have a few slow queries that are blocking faster queries from proceeding. See [Slow Trains in MongoDB and Node.js](https://thecodebarbarian.com/slow-trains-in-mongodb-and-nodejs). * @param {Number} [options.serverSelectionTimeoutMS] If `useUnifiedTopology = true`, the MongoDB driver will try to find a server to send any given operation to, and keep retrying for `serverSelectionTimeoutMS` milliseconds before erroring out. If not set, the MongoDB driver defaults to using `30000` (30 seconds). * @param {Number} [options.heartbeatFrequencyMS] If `useUnifiedTopology = true`, the MongoDB driver sends a heartbeat every `heartbeatFrequencyMS` to check on the status of the connection. A heartbeat is subject to `serverSelectionTimeoutMS`, so the MongoDB driver will retry failed heartbeats for up to 30 seconds by default. Mongoose only emits a `'disconnected'` event after a heartbeat has failed, so you may want to decrease this setting to reduce the time between when your server goes down and when Mongoose emits `'disconnected'`. We recommend you do **not** set this setting below 1000, too many heartbeats can lead to performance degradation. * @param {Boolean} [options.autoIndex=true] Mongoose-specific option. Set to false to disable automatic index creation for all models associated with this connection. * @param {Class} [options.promiseLibrary] Sets the [underlying driver's promise library](https://mongodb.github.io/node-mongodb-native/4.9/interfaces/MongoClientOptions.html#promiseLibrary). * @param {Number} [options.connectTimeoutMS=30000] How long the MongoDB driver will wait before killing a socket due to inactivity _during initial connection_. Defaults to 30000. This option is passed transparently to [Node.js' `socket#setTimeout()` function](https://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback). * @param {Number} [options.socketTimeoutMS=30000] How long the MongoDB driver will wait before killing a socket due to inactivity _after initial connection_. A socket may be inactive because of either no activity or a long-running operation. This is set to `30000` by default, you should set this to 2-3x your longest running operation if you expect some of your database operations to run longer than 20 seconds. This option is passed to [Node.js `socket#setTimeout()` function](https://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback) after the MongoDB driver successfully completes. * @param {Number} [options.family=0] Passed transparently to [Node.js' `dns.lookup()`](https://nodejs.org/api/dns.html#dns_dns_lookup_hostname_options_callback) function. May be either `0, `4`, or `6`. `4` means use IPv4 only, `6` means use IPv6 only, `0` means try both. * @param {Boolean} [options.autoCreate=false] Set to `true` to make Mongoose automatically call `createCollection()` on every model created on this connection. * @param {Function} [callback] * @returns {Promise<Connection>} Returns a Promise if no `callback` is given. * @api public */
Connection.prototype.openUri = function(uri, options, callback) { if (typeof options === 'function') { callback = options; options = null; }
if (['string', 'number'].indexOf(typeof options) !== -1) { throw new MongooseError('Mongoose 5.x no longer supports ' + '`mongoose.connect(host, dbname, port)` or ' + '`mongoose.createConnection(host, dbname, port)`. See ' + 'https://mongoosejs.com/docs/connections.html for supported connection syntax'); }
if (typeof uri !== 'string') { throw new MongooseError('The `uri` parameter to `openUri()` must be a ' + `string, got "${typeof uri}". Make sure the first parameter to ` + '`mongoose.connect()` or `mongoose.createConnection()` is a string.'); }
if (callback != null && typeof callback !== 'function') { throw new MongooseError('3rd parameter to `mongoose.connect()` or ' + '`mongoose.createConnection()` must be a function, got "' + typeof callback + '"'); }
if (this._destroyCalled) { const error = 'Connection has been closed and destroyed, and cannot be used for re-opening the connection. ' + 'Please create a new connection with `mongoose.createConnection()` or `mongoose.connect()`.'; if (typeof callback === 'function') { callback(error); return; } else { throw new MongooseError(error); } }
if (this.readyState === STATES.connecting || this.readyState === STATES.connected) { if (this._connectionString !== uri) { throw new MongooseError('Can\'t call `openUri()` on an active connection with ' + 'different connection strings. Make sure you aren\'t calling `mongoose.connect()` ' + 'multiple times. See: https://mongoosejs.com/docs/connections.html#multiple_connections'); }
if (typeof callback === 'function') { this.$initialConnection = this.$initialConnection.then( () => callback(null, this), err => callback(err) ); } return this; }
this._connectionString = uri; this.readyState = STATES.connecting; this._closeCalled = false;
const Promise = PromiseProvider.get(); const _this = this;
options = processConnectionOptions(uri, options);
if (options) { options = utils.clone(options);
const autoIndex = options.config && options.config.autoIndex != null ? options.config.autoIndex : options.autoIndex; if (autoIndex != null) { this.config.autoIndex = autoIndex !== false; delete options.config; delete options.autoIndex; }
if ('autoCreate' in options) { this.config.autoCreate = !!options.autoCreate; delete options.autoCreate; }
if ('sanitizeFilter' in options) { this.config.sanitizeFilter = options.sanitizeFilter; delete options.sanitizeFilter; }
// Backwards compat if (options.user || options.pass) { options.auth = options.auth || {}; options.auth.username = options.user; options.auth.password = options.pass;
this.user = options.user; this.pass = options.pass; } delete options.user; delete options.pass;
if (options.bufferCommands != null) { this.config.bufferCommands = options.bufferCommands; delete options.bufferCommands; } } else { options = {}; }
this._connectionOptions = options; const dbName = options.dbName; if (dbName != null) { this.$dbName = dbName; } delete options.dbName;
if (!utils.hasUserDefinedProperty(options, 'driverInfo')) { options.driverInfo = { name: 'Mongoose', version: pkg.version }; }
const promise = new Promise((resolve, reject) => { let client; try { client = new mongodb.MongoClient(uri, options); } catch (error) { _this.readyState = STATES.disconnected; return reject(error); } _this.client = client;
client.setMaxListeners(0); client.connect((error) => { if (error) { return reject(error); }
_setClient(_this, client, options, dbName);
for (const db of this.otherDbs) { _setClient(db, client, {}, db.name); }
resolve(_this); }); });
const serverSelectionError = new ServerSelectionError(); this.$initialConnection = promise. then(() => this). catch(err => { this.readyState = STATES.disconnected; if (err != null && err.name === 'MongoServerSelectionError') { err = serverSelectionError.assimilateError(err); }
if (this.listeners('error').length > 0) { immediate(() => this.emit('error', err)); } throw err; });
if (callback != null) { this.$initialConnection = this.$initialConnection.then( () => { callback(null, this); return this; }, err => callback(err) ); }
for (const model of Object.values(this.models)) { // Errors handled internally, so safe to ignore error model.init(function $modelInitNoop() {}); }
return this.$initialConnection;};
/*! * ignore */
function _setClient(conn, client, options, dbName) { const db = dbName != null ? client.db(dbName) : client.db(); conn.db = db; conn.client = client; conn.host = client && client.s && client.s.options && client.s.options.hosts && client.s.options.hosts[0] && client.s.options.hosts[0].host || void 0; conn.port = client && client.s && client.s.options && client.s.options.hosts && client.s.options.hosts[0] && client.s.options.hosts[0].port || void 0; conn.name = dbName != null ? dbName : client && client.s && client.s.options && client.s.options.dbName || void 0; conn._closeCalled = client._closeCalled;
const _handleReconnect = () => { // If we aren't disconnected, we assume this reconnect is due to a // socket timeout. If there's no activity on a socket for // `socketTimeoutMS`, the driver will attempt to reconnect and emit // this event. if (conn.readyState !== STATES.connected) { conn.readyState = STATES.connected; conn.emit('reconnect'); conn.emit('reconnected'); conn.onOpen(); } };
const type = client && client.topology && client.topology.description && client.topology.description.type || '';
if (type === 'Single') { client.on('serverDescriptionChanged', ev => { const newDescription = ev.newDescription; if (newDescription.type === 'Unknown') { conn.readyState = STATES.disconnected; } else { _handleReconnect(); } }); } else if (type.startsWith('ReplicaSet')) { client.on('topologyDescriptionChanged', ev => { // Emit disconnected if we've lost connectivity to the primary const description = ev.newDescription; if (conn.readyState === STATES.connected && description.type !== 'ReplicaSetWithPrimary') { // Implicitly emits 'disconnected' conn.readyState = STATES.disconnected; } else if (conn.readyState === STATES.disconnected && description.type === 'ReplicaSetWithPrimary') { _handleReconnect(); } }); }
conn.onOpen();
for (const i in conn.collections) { if (utils.object.hasOwnProperty(conn.collections, i)) { conn.collections[i].onOpen(); } }}
/** * Destory the connection (not just a alias of [`.close`](#connection_Connection-close)) * * @param {Boolean} [force] * @param {Function} [callback] * @returns {Promise} Returns a Promise if no `callback` is given. */
Connection.prototype.destroy = function(force, callback) { if (typeof force === 'function') { callback = force; force = false; }
if (force != null && typeof force === 'object') { this.$wasForceClosed = !!force.force; } else { this.$wasForceClosed = !!force; }
return promiseOrCallback(callback, cb => { this._close(force, true, cb); });};
/** * Closes the connection * * @param {Boolean} [force] optional * @param {Function} [callback] optional * @return {Promise} Returns a Promise if no `callback` is given. * @api public */
Connection.prototype.close = function(force, callback) { if (typeof force === 'function') { callback = force; force = false; }
if (force != null && typeof force === 'object') { this.$wasForceClosed = !!force.force; } else { this.$wasForceClosed = !!force; }
for (const model of Object.values(this.models)) { // If manually disconnecting, make sure to clear each model's `$init` // promise, so Mongoose knows to re-run `init()` in case the // connection is re-opened. See gh-12047. delete model.$init; }
return promiseOrCallback(callback, cb => { this._close(force, false, cb); });};
/** * Handles closing the connection * * @param {Boolean} force * @param {Boolean} destroy * @param {Function} [callback] * @returns {Connection} this * @api private */Connection.prototype._close = function(force, destroy, callback) { const _this = this; const closeCalled = this._closeCalled; this._closeCalled = true; this._destroyCalled = destroy; if (this.client != null) { this.client._closeCalled = true; this.client._destroyCalled = destroy; }
const conn = this; switch (this.readyState) { case STATES.disconnected: if (destroy && this.base.connections.indexOf(conn) !== -1) { this.base.connections.splice(this.base.connections.indexOf(conn), 1); } if (closeCalled) { callback(); } else { this.doClose(force, function(err) { if (err) { return callback(err); } _this.onClose(force); callback(null); }); } break;
case STATES.connected: this.readyState = STATES.disconnecting; this.doClose(force, function(err) { if (err) { return callback(err); } if (destroy && _this.base.connections.indexOf(conn) !== -1) { _this.base.connections.splice(_this.base.connections.indexOf(conn), 1); } _this.onClose(force); callback(null); });
break; case STATES.connecting: this.once('open', function() { destroy ? _this.destroy(force, callback) : _this.close(force, callback); }); break;
case STATES.disconnecting: this.once('close', function() { if (destroy && _this.base.connections.indexOf(conn) !== -1) { _this.base.connections.splice(_this.base.connections.indexOf(conn), 1); } callback(); }); break; }
return this;};
/** * Called when the connection closes * * @api private */
Connection.prototype.onClose = function(force) { this.readyState = STATES.disconnected;
// avoid having the collection subscribe to our event emitter // to prevent 0.3 warning for (const i in this.collections) { if (utils.object.hasOwnProperty(this.collections, i)) { this.collections[i].onClose(force); } }
this.emit('close', force);
for (const db of this.otherDbs) { this._destroyCalled ? db.destroy({ force: force, skipCloseClient: true }) : db.close({ force: force, skipCloseClient: true }); }};
/** * Retrieves a collection, creating it if not cached. * * Not typically needed by applications. Just talk to your collection through your model. * * @param {String} name of the collection * @param {Object} [options] optional collection options * @return {Collection} collection instance * @api public */
Connection.prototype.collection = function(name, options) { const defaultOptions = { autoIndex: this.config.autoIndex != null ? this.config.autoIndex : this.base.options.autoIndex, autoCreate: this.config.autoCreate != null ? this.config.autoCreate : this.base.options.autoCreate }; options = Object.assign({}, defaultOptions, options ? utils.clone(options) : {}); options.$wasForceClosed = this.$wasForceClosed; const Collection = this.base && this.base.__driver && this.base.__driver.Collection || driver.get().Collection; if (!(name in this.collections)) { this.collections[name] = new Collection(name, this, options); } return this.collections[name];};
/** * Declares a plugin executed on all schemas you pass to `conn.model()` * * Equivalent to calling `.plugin(fn)` on each schema you create. * * #### Example: * * const db = mongoose.createConnection('mongodb://localhost:27017/mydb'); * db.plugin(() => console.log('Applied')); * db.plugins.length; // 1 * * db.model('Test', new Schema({})); // Prints "Applied" * * @param {Function} fn plugin callback * @param {Object} [opts] optional options * @return {Connection} this * @see plugins /docs/plugins * @api public */
Connection.prototype.plugin = function(fn, opts) { this.plugins.push([fn, opts]); return this;};
/** * Defines or retrieves a model. * * const mongoose = require('mongoose'); * const db = mongoose.createConnection(..); * db.model('Venue', new Schema(..)); * const Ticket = db.model('Ticket', new Schema(..)); * const Venue = db.model('Venue'); * * _When no `collection` argument is passed, Mongoose produces a collection name by passing the model `name` to the [utils.toCollectionName](#utils_exports-toCollectionName) method. This method pluralizes the name. If you don't like this behavior, either pass a collection name or set your schemas collection name option._ * * #### Example: * * const schema = new Schema({ name: String }, { collection: 'actor' }); * * // or * * schema.set('collection', 'actor'); * * // or * * const collectionName = 'actor' * const M = conn.model('Actor', schema, collectionName) * * @param {String|Function} name the model name or class extending Model * @param {Schema} [schema] a schema. necessary when defining a model * @param {String} [collection] name of mongodb collection (optional) if not given it will be induced from model name * @param {Object} [options] * @param {Boolean} [options.overwriteModels=false] If true, overwrite existing models with the same name to avoid `OverwriteModelError` * @see Mongoose#model #index_Mongoose-model * @return {Model} The compiled model * @api public */
Connection.prototype.model = function(name, schema, collection, options) { if (!(this instanceof Connection)) { throw new MongooseError('`connection.model()` should not be run with ' + '`new`. If you are doing `new db.model(foo)(bar)`, use ' + '`db.model(foo)(bar)` instead'); }
let fn; if (typeof name === 'function') { fn = name; name = fn.name; }
// collection name discovery if (typeof schema === 'string') { collection = schema; schema = false; }
if (utils.isObject(schema)) { if (!schema.instanceOfSchema) { schema = new Schema(schema); } else if (!(schema instanceof this.base.Schema)) { schema = schema._clone(this.base.Schema); } } if (schema && !schema.instanceOfSchema) { throw new Error('The 2nd parameter to `mongoose.model()` should be a ' + 'schema or a POJO'); }
const defaultOptions = { cache: false, overwriteModels: this.base.options.overwriteModels }; const opts = Object.assign(defaultOptions, options, { connection: this }); if (this.models[name] && !collection && opts.overwriteModels !== true) { // model exists but we are not subclassing with custom collection if (schema && schema.instanceOfSchema && schema !== this.models[name].schema) { throw new MongooseError.OverwriteModelError(name); } return this.models[name]; }
let model;
if (schema && schema.instanceOfSchema) { applyPlugins(schema, this.plugins, null, '$connectionPluginsApplied');
// compile a model model = this.base._model(fn || name, schema, collection, opts);
// only the first model with this name is cached to allow // for one-offs with custom collection names etc. if (!this.models[name]) { this.models[name] = model; }
// Errors handled internally, so safe to ignore error model.init(function $modelInitNoop() {});
return model; }
if (this.models[name] && collection) { // subclassing current model with alternate collection model = this.models[name]; schema = model.prototype.schema; const sub = model.__subclass(this, schema, collection); // do not cache the sub model return sub; }
if (arguments.length === 1) { model = this.models[name]; if (!model) { throw new MongooseError.MissingSchemaError(name); } return model; }
if (!model) { throw new MongooseError.MissingSchemaError(name); }
if (this === model.prototype.db && (!collection || collection === model.collection.name)) { // model already uses this connection.
// only the first model with this name is cached to allow // for one-offs with custom collection names etc. if (!this.models[name]) { this.models[name] = model; }
return model; } this.models[name] = model.__subclass(this, schema, collection); return this.models[name];};
/** * Removes the model named `name` from this connection, if it exists. You can * use this function to clean up any models you created in your tests to * prevent OverwriteModelErrors. * * #### Example: * * conn.model('User', new Schema({ name: String })); * console.log(conn.model('User')); // Model object * conn.deleteModel('User'); * console.log(conn.model('User')); // undefined * * // Usually useful in a Mocha `afterEach()` hook * afterEach(function() { * conn.deleteModel(/.+/); // Delete every model * }); * * @api public * @param {String|RegExp} name if string, the name of the model to remove. If regexp, removes all models whose name matches the regexp. * @return {Connection} this */
Connection.prototype.deleteModel = function(name) { if (typeof name === 'string') { const model = this.model(name); if (model == null) { return this; } const collectionName = model.collection.name; delete this.models[name]; delete this.collections[collectionName];
this.emit('deleteModel', model); } else if (name instanceof RegExp) { const pattern = name; const names = this.modelNames(); for (const name of names) { if (pattern.test(name)) { this.deleteModel(name); } } } else { throw new Error('First parameter to `deleteModel()` must be a string ' + 'or regexp, got "' + name + '"'); }
return this;};
/** * Watches the entire underlying database for changes. Similar to * [`Model.watch()`](/docs/api/model.html#model_Model-watch). * * This function does **not** trigger any middleware. In particular, it * does **not** trigger aggregate middleware. * * The ChangeStream object is an event emitter that emits the following events: * * - 'change': A change occurred, see below example * - 'error': An unrecoverable error occurred. In particular, change streams currently error out if they lose connection to the replica set primary. Follow [this GitHub issue](https://github.com/Automattic/mongoose/issues/6799) for updates. * - 'end': Emitted if the underlying stream is closed * - 'close': Emitted if the underlying stream is closed * * #### Example: * * const User = conn.model('User', new Schema({ name: String })); * * const changeStream = conn.watch().on('change', data => console.log(data)); * * // Triggers a 'change' event on the change stream. * await User.create({ name: 'test' }); * * @api public * @param {Array} [pipeline] * @param {Object} [options] passed without changes to [the MongoDB driver's `Db#watch()` function](https://mongodb.github.io/node-mongodb-native/4.9/classes/Db.html#watch) * @return {ChangeStream} mongoose-specific change stream wrapper, inherits from EventEmitter */
Connection.prototype.watch = function(pipeline, options) { const disconnectedError = new DisconnectedError(this.id, 'watch');
const changeStreamThunk = cb => { immediate(() => { if (this.readyState === STATES.connecting) { this.once('open', function() { const driverChangeStream = this.db.watch(pipeline, options); cb(null, driverChangeStream); }); } else if (this.readyState === STATES.disconnected && this.db == null) { cb(disconnectedError); } else { const driverChangeStream = this.db.watch(pipeline, options); cb(null, driverChangeStream); } }); };
const changeStream = new ChangeStream(changeStreamThunk, pipeline, options); return changeStream;};
/** * Returns a promise that resolves when this connection * successfully connects to MongoDB, or rejects if this connection failed * to connect. * * #### Example: * * const conn = await mongoose.createConnection('mongodb://localhost:27017/test'). * asPromise(); * conn.readyState; // 1, means Mongoose is connected * * @api public * @return {Promise} */
Connection.prototype.asPromise = function asPromise() { return this.$initialConnection;};
/** * Returns an array of model names created on this connection. * @api public * @return {String[]} */
Connection.prototype.modelNames = function() { return Object.keys(this.models);};
/** * Returns if the connection requires authentication after it is opened. Generally if a * username and password are both provided than authentication is needed, but in some cases a * password is not required. * * @api private * @return {Boolean} true if the connection should be authenticated after it is opened, otherwise false. */Connection.prototype.shouldAuthenticate = function() { return this.user != null && (this.pass != null || this.authMechanismDoesNotRequirePassword());};
/** * Returns a boolean value that specifies if the current authentication mechanism needs a * password to authenticate according to the auth objects passed into the openUri methods. * * @api private * @return {Boolean} true if the authentication mechanism specified in the options object requires * a password, otherwise false. */Connection.prototype.authMechanismDoesNotRequirePassword = function() { if (this.options && this.options.auth) { return noPasswordAuthMechanisms.indexOf(this.options.auth.authMechanism) >= 0; } return true;};
/** * Returns a boolean value that specifies if the provided objects object provides enough * data to authenticate with. Generally this is true if the username and password are both specified * but in some authentication methods, a password is not required for authentication so only a username * is required. * * @param {Object} [options] the options object passed into the openUri methods. * @api private * @return {Boolean} true if the provided options object provides enough data to authenticate with, * otherwise false. */Connection.prototype.optionsProvideAuthenticationData = function(options) { return (options) && (options.user) && ((options.pass) || this.authMechanismDoesNotRequirePassword());};
/** * Returns the [MongoDB driver `MongoClient`](https://mongodb.github.io/node-mongodb-native/4.9/classes/MongoClient.html) instance * that this connection uses to talk to MongoDB. * * #### Example: * * const conn = await mongoose.createConnection('mongodb://localhost:27017/test'). * asPromise(); * * conn.getClient(); // MongoClient { ... } * * @api public * @return {MongoClient} */
Connection.prototype.getClient = function getClient() { return this.client;};
/** * Set the [MongoDB driver `MongoClient`](https://mongodb.github.io/node-mongodb-native/4.9/classes/MongoClient.html) instance * that this connection uses to talk to MongoDB. This is useful if you already have a MongoClient instance, and want to * reuse it. * * #### Example: * * const client = await mongodb.MongoClient.connect('mongodb://localhost:27017/test'); * * const conn = mongoose.createConnection().setClient(client); * * conn.getClient(); // MongoClient { ... } * conn.readyState; // 1, means 'CONNECTED' * * @api public * @param {MongClient} client The Client to set to be used. * @return {Connection} this */
Connection.prototype.setClient = function setClient(client) { if (!(client instanceof mongodb.MongoClient)) { throw new MongooseError('Must call `setClient()` with an instance of MongoClient'); } if (this.readyState !== STATES.disconnected) { throw new MongooseError('Cannot call `setClient()` on a connection that is already connected.'); } if (client.topology == null) { throw new MongooseError('Cannot call `setClient()` with a MongoClient that you have not called `connect()` on yet.'); }
this._connectionString = client.s.url; _setClient(this, client, {}, client.s.options.dbName);
for (const model of Object.values(this.models)) { // Errors handled internally, so safe to ignore error model.init(function $modelInitNoop() {}); }
return this;};
/** * Syncs all the indexes for the models registered with this connection. * * @param {Object} [options] * @param {Boolean} [options.continueOnError] `false` by default. If set to `true`, mongoose will not throw an error if one model syncing failed, and will return an object where the keys are the names of the models, and the values are the results/errors for each model. * @return {Promise<Object>} Returns a Promise, when the Promise resolves the value is a list of the dropped indexes. */Connection.prototype.syncIndexes = async function syncIndexes(options = {}) { const result = {}; const errorsMap = { };
const { continueOnError } = options; delete options.continueOnError;
for (const model of Object.values(this.models)) { try { result[model.modelName] = await model.syncIndexes(options); } catch (err) { if (!continueOnError) { errorsMap[model.modelName] = err; break; } else { result[model.modelName] = err; } } }
if (!continueOnError && Object.keys(errorsMap).length) { const message = Object.entries(errorsMap).map(([modelName, err]) => `${modelName}: ${err.message}`).join(', '); const syncIndexesError = new SyncIndexesError(message, errorsMap); throw syncIndexesError; }
return result;};
/** * Switches to a different database using the same connection pool. * * Returns a new connection object, with the new db. * * #### Example: * * // Connect to `initialdb` first * const conn = await mongoose.createConnection('mongodb://localhost:27017/initialdb').asPromise(); * * // Creates an un-cached connection to `mydb` * const db = conn.useDb('mydb'); * // Creates a cached connection to `mydb2`. All calls to `conn.useDb('mydb2', { useCache: true })` will return the same * // connection instance as opposed to creating a new connection instance * const db2 = conn.useDb('mydb2', { useCache: true }); * * @method useDb * @memberOf Connection * @param {String} name The database name * @param {Object} [options] * @param {Boolean} [options.useCache=false] If true, cache results so calling `useDb()` multiple times with the same name only creates 1 connection object. * @param {Boolean} [options.noListener=false] If true, the connection object will not make the db listen to events on the original connection. See [issue #9961](https://github.com/Automattic/mongoose/issues/9961). * @return {Connection} New Connection Object * @api public */
/*! * Module exports. */
Connection.STATES = STATES;module.exports = Connection;
mongoose

Version Info

Tagged at
a year ago