sepia-search-motore-di-rice.../server/middlewares/async.ts

28 lines
919 B
TypeScript
Raw Normal View History

2020-02-13 11:49:03 +01:00
import { eachSeries } from 'async'
import { NextFunction, Request, RequestHandler, Response } from 'express'
import { ValidationChain } from 'express-validator'
2021-06-25 10:04:50 +02:00
export type ExpressPromiseHandler = (req: Request<any>, res: Response, next: NextFunction) => Promise<any>
2020-02-13 11:49:03 +01:00
2021-06-25 10:04:50 +02:00
export type RequestPromiseHandler = ValidationChain | ExpressPromiseHandler
2020-02-13 11:49:03 +01:00
function asyncMiddleware (fun: RequestPromiseHandler | RequestPromiseHandler[]) {
return (req: Request, res: Response, next: NextFunction) => {
if (Array.isArray(fun) === true) {
return eachSeries(fun as RequestHandler[], (f, cb) => {
2021-06-25 10:04:50 +02:00
Promise.resolve(f(req, res, err => cb(err)))
2020-02-13 11:49:03 +01:00
.catch(err => next(err))
}, next)
}
return Promise.resolve((fun as RequestHandler)(req, res, next))
.catch(err => next(err))
}
}
// ---------------------------------------------------------------------------
export {
asyncMiddleware
}