From e0b56b7495e809581a1e6447794bf7573a78af56 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 9 Jan 2020 09:36:31 +0100 Subject: Return an error on invalid count pagination --- server/middlewares/validators/activitypub/pagination.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'server/middlewares/validators/activitypub') diff --git a/server/middlewares/validators/activitypub/pagination.ts b/server/middlewares/validators/activitypub/pagination.ts index 8b32d3415..fa21f063d 100644 --- a/server/middlewares/validators/activitypub/pagination.ts +++ b/server/middlewares/validators/activitypub/pagination.ts @@ -2,10 +2,15 @@ import * as express from 'express' import { query } from 'express-validator' import { logger } from '../../../helpers/logger' import { areValidationErrors } from '../utils' +import { PAGINATION } from '@server/initializers/constants' const apPaginationValidator = [ - query('page').optional().isInt({ min: 1 }).withMessage('Should have a valid page number'), - query('size').optional().isInt({ max: 50 }).withMessage('Should have a valid page size (max: 50)'), + query('page') + .optional() + .isInt({ min: 1 }).withMessage('Should have a valid page number'), + query('size') + .optional() + .isInt({ min: 0, max: PAGINATION.OUTBOX.COUNT.MAX }).withMessage(`Should have a valid page size (max: ${PAGINATION.OUTBOX.COUNT.MAX})`), (req: express.Request, res: express.Response, next: express.NextFunction) => { logger.debug('Checking pagination parameters', { parameters: req.query }) -- cgit v1.2.3