X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Fpagination.ts;h=74eae251e04790dbbd53a60b02e7446106995f12;hb=10363c74c1d869f0e0c7bc4d0367b1f34d1bb6a4;hp=a5a542cdfe0f3fcf4ace19f879fbd6403750d406;hpb=b60e5f38daf77e720a27aa86d3b482c58906a03a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/pagination.ts b/server/middlewares/validators/pagination.ts index a5a542cdf..74eae251e 100644 --- a/server/middlewares/validators/pagination.ts +++ b/server/middlewares/validators/pagination.ts @@ -1,22 +1,33 @@ -import { query } from 'express-validator/check' import * as express from 'express' +import { query } from 'express-validator' +import { PAGINATION } from '@server/initializers/constants' +import { logger } from '../../helpers/logger' +import { areValidationErrors } from './shared' -import { checkErrors } from './utils' -import { logger } from '../../helpers' +const paginationValidator = paginationValidatorBuilder() -const paginationValidator = [ - query('start').optional().isInt().withMessage('Should have a number start'), - query('count').optional().isInt().withMessage('Should have a number count'), +function paginationValidatorBuilder (tags: string[] = []) { + return [ + query('start') + .optional() + .isInt({ min: 0 }).withMessage('Should have a number start'), + query('count') + .optional() + .isInt({ min: 0, max: PAGINATION.GLOBAL.COUNT.MAX }).withMessage(`Should have a number count (max: ${PAGINATION.GLOBAL.COUNT.MAX})`), - (req: express.Request, res: express.Response, next: express.NextFunction) => { - logger.debug('Checking pagination parameters', { parameters: req.query }) + (req: express.Request, res: express.Response, next: express.NextFunction) => { + logger.debug('Checking pagination parameters', { parameters: req.query, tags }) - checkErrors(req, res, next) - } -] + if (areValidationErrors(req, res)) return + + return next() + } + ] +} // --------------------------------------------------------------------------- export { - paginationValidator + paginationValidator, + paginationValidatorBuilder }