PeerTube/server/middlewares/async.ts

28 lines
930 B
TypeScript
Raw Normal View History

import { eachSeries } from 'async'
2017-11-27 17:30:46 +01:00
import { NextFunction, Request, RequestHandler, Response } from 'express'
2017-10-25 11:55:06 +02:00
// Syntactic sugar to avoid try/catch in express controllers
// Thanks: https://medium.com/@Abazhenov/using-async-await-in-express-with-node-8-b8af872c0016
2017-11-27 17:30:46 +01:00
export type RequestPromiseHandler = (req: Request, res: Response, next: NextFunction) => Promise<any>
function asyncMiddleware (fun: RequestPromiseHandler | RequestPromiseHandler[]) {
2017-10-25 11:55:06 +02:00
return (req: Request, res: Response, next: NextFunction) => {
if (Array.isArray(fun) === true) {
return eachSeries(fun as RequestHandler[], (f, cb) => {
Promise.resolve(f(req, res, cb))
2018-02-14 15:33:49 +01:00
.catch(err => next(err))
}, next)
}
return Promise.resolve((fun as RequestHandler)(req, res, next))
2018-02-14 15:33:49 +01:00
.catch(err => next(err))
2017-10-25 11:55:06 +02:00
}
}
// ---------------------------------------------------------------------------
export {
asyncMiddleware
}