aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/async.ts
blob: 9692f9be732d99e649c6cf96d75a9af931e47c3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Request, Response, NextFunction, RequestHandler } from 'express'
import { eachSeries } from 'async'

// Syntactic sugar to avoid try/catch in express controllers
// Thanks: https://medium.com/@Abazhenov/using-async-await-in-express-with-node-8-b8af872c0016
function asyncMiddleware (fun: RequestHandler | RequestHandler[]) {
  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))
          .catch(next)
      }, next)
    }

    return Promise.resolve((fun as RequestHandler)(req, res, next))
      .catch(next)
  }
}

// ---------------------------------------------------------------------------

export {
  asyncMiddleware
}