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