@@ -810,19 +810,16 @@ Model.prototype.deleteOne = function deleteOne(options) {
810
810
}
811
811
}
812
812
813
- query . pre ( function queryPreDeleteOne ( cb ) {
814
- self . constructor . _middleware . execPre ( 'deleteOne' , self , [ self ] , cb ) ;
813
+ query . pre ( function queryPreDeleteOne ( ) {
814
+ return self . constructor . _middleware . execPre ( 'deleteOne' , self , [ self ] ) ;
815
815
} ) ;
816
- query . pre ( function callSubdocPreHooks ( cb ) {
817
- each ( self . $getAllSubdocs ( ) , ( subdoc , cb ) => {
818
- subdoc . constructor . _middleware . execPre ( 'deleteOne' , subdoc , [ subdoc ] , cb ) ;
819
- } , cb ) ;
816
+ query . pre ( function callSubdocPreHooks ( ) {
817
+ return Promise . all ( self . $getAllSubdocs ( ) . map ( subdoc => subdoc . constructor . _middleware . execPre ( 'deleteOne' , subdoc , [ subdoc ] ) ) ) ;
820
818
} ) ;
821
- query . pre ( function skipIfAlreadyDeleted ( cb ) {
819
+ query . pre ( function skipIfAlreadyDeleted ( ) {
822
820
if ( self . $__ . isDeleted ) {
823
- return cb ( Kareem . skipWrappedFunction ( ) ) ;
821
+ throw new Kareem . skipWrappedFunction ( ) ;
824
822
}
825
- return cb ( ) ;
826
823
} ) ;
827
824
query . post ( function callSubdocPostHooks ( cb ) {
828
825
each ( self . $getAllSubdocs ( ) , ( subdoc , cb ) => {
@@ -1185,16 +1182,11 @@ Model.createCollection = async function createCollection(options) {
1185
1182
throw new MongooseError ( 'Model.createCollection() no longer accepts a callback' ) ;
1186
1183
}
1187
1184
1188
- const shouldSkip = await new Promise ( ( resolve , reject ) => {
1189
- this . hooks . execPre ( 'createCollection' , this , [ options ] , ( err ) => {
1190
- if ( err != null ) {
1191
- if ( err instanceof Kareem . skipWrappedFunction ) {
1192
- return resolve ( true ) ;
1193
- }
1194
- return reject ( err ) ;
1195
- }
1196
- resolve ( ) ;
1197
- } ) ;
1185
+ const shouldSkip = await this . hooks . execPre ( 'createCollection' , this , [ options ] ) . catch ( err => {
1186
+ if ( err instanceof Kareem . skipWrappedFunction ) {
1187
+ return true ;
1188
+ }
1189
+ throw err ;
1198
1190
} ) ;
1199
1191
1200
1192
const collectionOptions = this &&
@@ -3380,17 +3372,13 @@ Model.bulkWrite = async function bulkWrite(ops, options) {
3380
3372
}
3381
3373
options = options || { } ;
3382
3374
3383
- const shouldSkip = await new Promise ( ( resolve , reject ) => {
3384
- this . hooks . execPre ( 'bulkWrite' , this , [ ops , options ] , ( err ) => {
3385
- if ( err != null ) {
3386
- if ( err instanceof Kareem . skipWrappedFunction ) {
3387
- return resolve ( err ) ;
3388
- }
3389
- return reject ( err ) ;
3390
- }
3391
- resolve ( ) ;
3392
- } ) ;
3393
- } ) ;
3375
+ const shouldSkip = await this . hooks . execPre ( 'bulkWrite' , this , [ ops , options ] ) . catch ( err => {
3376
+ if ( err instanceof Kareem . skipWrappedFunction ) {
3377
+ return err ;
3378
+ }
3379
+ throw err ;
3380
+ }
3381
+ ) ;
3394
3382
3395
3383
if ( shouldSkip ) {
3396
3384
return shouldSkip . args [ 0 ] ;
@@ -3621,16 +3609,8 @@ Model.bulkSave = async function bulkSave(documents, options) {
3621
3609
return bulkWriteResult ;
3622
3610
} ;
3623
3611
3624
- function buildPreSavePromise ( document , options ) {
3625
- return new Promise ( ( resolve , reject ) => {
3626
- document . schema . s . hooks . execPre ( 'save' , document , [ options ] , ( err ) => {
3627
- if ( err ) {
3628
- reject ( err ) ;
3629
- return ;
3630
- }
3631
- resolve ( ) ;
3632
- } ) ;
3633
- } ) ;
3612
+ async function buildPreSavePromise ( document , options ) {
3613
+ return document . schema . s . hooks . execPre ( 'save' , document , [ options ] ) ;
3634
3614
}
3635
3615
3636
3616
function handleSuccessfulWrite ( document ) {
0 commit comments