X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fpagination.ts;h=83304940f38af1bc386e045717375b1dab47af3d;hb=cce1b3dfd386c77a02f2b4f18f60bd916a60a2d3;hp=cadd769805ae7f393e14187a867db86c6d60f56d;hpb=e02643f32e4c97ca307f8fc5b69be79c40d70a3b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/pagination.ts b/server/middlewares/pagination.ts index cadd76980..83304940f 100644 --- a/server/middlewares/pagination.ts +++ b/server/middlewares/pagination.ts @@ -1,17 +1,22 @@ -import { PAGINATION_COUNT_DEFAULT } from '../initializers' +import 'express-validator' +import * as express from 'express' -function setPagination (req, res, next) { +import { PAGINATION } from '../initializers/constants' + +function setDefaultPagination (req: express.Request, res: express.Response, next: express.NextFunction) { if (!req.query.start) req.query.start = 0 else req.query.start = parseInt(req.query.start, 10) - if (!req.query.count) req.query.count = PAGINATION_COUNT_DEFAULT + if (!req.query.count) req.query.count = PAGINATION.COUNT.DEFAULT else req.query.count = parseInt(req.query.count, 10) + if (req.query.count > PAGINATION.COUNT.MAX) req.query.count = PAGINATION.COUNT.MAX + return next() } // --------------------------------------------------------------------------- export { - setPagination + setDefaultPagination }