2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { PAGINATION } from '../initializers/constants'
|
2016-05-13 14:10:02 -04:00
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
function setDefaultPagination (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-05-13 12:10:46 -04:00
|
|
|
if (!req.query.start) req.query.start = 0
|
2016-05-19 14:27:36 -04:00
|
|
|
else req.query.start = parseInt(req.query.start, 10)
|
2017-05-15 16:22:03 -04:00
|
|
|
|
2020-01-09 03:36:31 -05:00
|
|
|
if (!req.query.count) req.query.count = PAGINATION.GLOBAL.COUNT.DEFAULT
|
2016-05-19 14:27:36 -04:00
|
|
|
else req.query.count = parseInt(req.query.count, 10)
|
2016-05-13 12:10:46 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2018-01-18 04:53:54 -05:00
|
|
|
setDefaultPagination
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|