]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/validators/pagination.ts
Implement signup approval in server
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / pagination.ts
index a5a542cdfe0f3fcf4ace19f879fbd6403750d406..79ddbbf184d42c0c36be7c538a36f7ae3dc7f44a 100644 (file)
@@ -1,22 +1,30 @@
-import { query } from 'express-validator/check'
-import * as express from 'express'
+import express from 'express'
+import { query } from 'express-validator'
+import { PAGINATION } from '@server/initializers/constants'
+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 }),
+    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) => {
+      if (areValidationErrors(req, res, { tags })) return
 
-    checkErrors(req, res, next)
-  }
-]
+      return next()
+    }
+  ]
+}
 
 // ---------------------------------------------------------------------------
 
 export {
-  paginationValidator
+  paginationValidator,
+  paginationValidatorBuilder
 }