2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { query } from 'express-validator'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2017-11-27 11:30:46 -05:00
|
|
|
import { areValidationErrors } from './utils'
|
2020-01-09 03:36:31 -05:00
|
|
|
import { PAGINATION } from '@server/initializers/constants'
|
2016-05-13 12:10:46 -04:00
|
|
|
|
2021-03-09 03:22:05 -05:00
|
|
|
const paginationValidator = paginationValidatorBuilder()
|
2016-05-13 12:10:46 -04:00
|
|
|
|
2021-03-09 03:22:05 -05:00
|
|
|
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})`),
|
2016-05-13 12:10:46 -04:00
|
|
|
|
2021-03-09 03:22:05 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking pagination parameters', { parameters: req.query, tags })
|
2017-11-27 11:30:46 -05:00
|
|
|
|
2021-03-09 03:22:05 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2016-05-13 12:10:46 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2021-03-09 03:22:05 -05:00
|
|
|
paginationValidator,
|
|
|
|
paginationValidatorBuilder
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|