add quarantine videos feature (#1637)
[oweals/peertube.git] / server / middlewares / async.ts
index 534891899cab0364af5a41a0a37bf82a5b1dcf9c..f770bc1209e27996e37f0c7fe51a6046df4f1fc1 100644 (file)
@@ -1,5 +1,6 @@
 import { eachSeries } from 'async'
 import { NextFunction, Request, RequestHandler, Response } from 'express'
+import { retryTransactionWrapper } from '../helpers/database-utils'
 
 // Syntactic sugar to avoid try/catch in express controllers
 // Thanks: https://medium.com/@Abazhenov/using-async-await-in-express-with-node-8-b8af872c0016
@@ -11,17 +12,26 @@ function asyncMiddleware (fun: RequestPromiseHandler | RequestPromiseHandler[])
     if (Array.isArray(fun) === true) {
       return eachSeries(fun as RequestHandler[], (f, cb) => {
         Promise.resolve(f(req, res, cb))
-          .catch(next)
+          .catch(err => next(err))
       }, next)
     }
 
     return Promise.resolve((fun as RequestHandler)(req, res, next))
-      .catch(next)
+      .catch(err => next(err))
+  }
+}
+
+function asyncRetryTransactionMiddleware (fun: RequestPromiseHandler) {
+  return (req: Request, res: Response, next: NextFunction) => {
+    return Promise.resolve(
+      retryTransactionWrapper(fun, req, res, next)
+    ).catch(err => next(err))
   }
 }
 
 // ---------------------------------------------------------------------------
 
 export {
-  asyncMiddleware
+  asyncMiddleware,
+  asyncRetryTransactionMiddleware
 }