PeerTube/server/middlewares/validators/pagination.ts

24 lines
724 B
TypeScript
Raw Normal View History

2017-06-10 15:15:25 -05:00
import * as express from 'express'
2019-07-25 09:23:44 -05:00
import { query } from 'express-validator'
2017-12-28 04:16:08 -06:00
import { logger } from '../../helpers/logger'
2017-11-27 10:30:46 -06:00
import { areValidationErrors } from './utils'
2017-09-15 05:17:08 -05:00
const paginationValidator = [
2017-12-27 09:11:53 -06:00
query('start').optional().isInt({ min: 0 }).withMessage('Should have a number start'),
query('count').optional().isInt({ min: 0 }).withMessage('Should have a number count'),
2017-09-15 05:17:08 -05:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking pagination parameters', { parameters: req.query })
2017-11-27 10:30:46 -06:00
if (areValidationErrors(req, res)) return
return next()
2017-09-15 05:17:08 -05:00
}
]
// ---------------------------------------------------------------------------
2017-05-15 15:22:03 -05:00
export {
paginationValidator
}