X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fpagination.ts;h=043869303f72f0139de9dcbd377a83fbdc89e276;hb=ebe7f5872617311e33dbca1f7f0d2556932c01a0;hp=26a8cacf0bf532d34121760eb6092a3537e95670;hpb=69818c9394366b954b6ba3bd697bd9d2b09f2a16;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/pagination.ts b/server/middlewares/pagination.ts index 26a8cacf0..043869303 100644 --- a/server/middlewares/pagination.ts +++ b/server/middlewares/pagination.ts @@ -1,20 +1,20 @@ -import 'express-validator' import * as express from 'express' +import { PAGINATION } from '../initializers/constants' -import { PAGINATION_COUNT_DEFAULT } from '../initializers' - -function setPagination (req: express.Request, res: express.Response, next: express.NextFunction) { +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 }