X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fpagination.ts;h=9812af9e48101b72b9a9c678c5237bb665da9d4e;hb=eb7b48ce84e5872d1333edd892f2e6104a18d7f1;hp=83304940f38af1bc386e045717375b1dab47af3d;hpb=74dc3bca2b14f5fd3fe80c394dfc34177a46db77;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/pagination.ts b/server/middlewares/pagination.ts index 83304940f..9812af9e4 100644 --- a/server/middlewares/pagination.ts +++ b/server/middlewares/pagination.ts @@ -1,17 +1,13 @@ -import 'express-validator' -import * as express from 'express' - +import express from 'express' 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.GLOBAL.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() }