1
0
Fork 0
peertube/server/middlewares/pagination.ts

21 lines
585 B
TypeScript
Raw Normal View History

2017-06-10 16:15:25 -04:00
import 'express-validator'
import * as express from 'express'
2017-05-22 14:58:25 -04:00
import { PAGINATION_COUNT_DEFAULT } from '../initializers'
function setDefaultPagination (req: express.Request, res: express.Response, next: express.NextFunction) {
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
2017-05-22 14:58:25 -04:00
if (!req.query.count) req.query.count = PAGINATION_COUNT_DEFAULT
2016-05-19 14:27:36 -04:00
else req.query.count = parseInt(req.query.count, 10)
return next()
}
// ---------------------------------------------------------------------------
2017-05-15 16:22:03 -04:00
export {
setDefaultPagination
2017-05-15 16:22:03 -04:00
}